From 0f1c428a3a173b0d8a34dd09a437e9cead85995f Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sun, 20 Dec 2020 12:15:11 -0500 Subject: [PATCH 01/20] adding in a new 'live' endpoint on s3 with libraries around playbyplay data. This will allow resutls during a live game --- .vscode/settings.json | 3 + nba_api/live/endpoints/__init__.py | 5 ++ nba_api/live/endpoints/playbyplay.py | 44 ++++++++++++ nba_api/live/library/__init__.py | 0 nba_api/live/library/http.py | 103 +++++++++++++++++++++++++++ 5 files changed, 155 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 nba_api/live/endpoints/__init__.py create mode 100644 nba_api/live/endpoints/playbyplay.py create mode 100644 nba_api/live/library/__init__.py create mode 100644 nba_api/live/library/http.py diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..84a192ce --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.pythonPath": "venv\\Scripts\\python.exe" +} \ No newline at end of file diff --git a/nba_api/live/endpoints/__init__.py b/nba_api/live/endpoints/__init__.py new file mode 100644 index 00000000..df454b39 --- /dev/null +++ b/nba_api/live/endpoints/__init__.py @@ -0,0 +1,5 @@ +__all__ = [ + 'playbyplay' +] + +from .playbyplay import PlayByPlay diff --git a/nba_api/live/endpoints/playbyplay.py b/nba_api/live/endpoints/playbyplay.py new file mode 100644 index 00000000..b08b4385 --- /dev/null +++ b/nba_api/live/endpoints/playbyplay.py @@ -0,0 +1,44 @@ +from nba_api.stats.endpoints._base import Endpoint +from nba_api.live.library.http import NBAStatsHTTP +from nba_api.stats.library.parameters import EndPeriod, StartPeriod + + +class PlayByPlay(Endpoint): + endpoint_url = 'playbyplay_{game_id}.json' + expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} + + nba_response = None + data_sets = None + player_stats = None + team_stats = None + headers = None + + def __init__(self, + game_id, + proxy=None, + headers=None, + timeout=30, + get_request=True): + self.proxy = proxy + if headers is not None: + self.headers = headers + self.timeout = timeout + self.parameters = {'GameID': game_id} + if get_request: + self.get_request() + + def get_request(self): + self.nba_response = NBAStatsHTTP().send_api_request( + endpoint=self.endpoint_url.format(game_id=self.parameters.get("GameID")), + parameters=self.parameters, + proxy=self.proxy, + headers=self.headers, + timeout=self.timeout + ) + # self.load_response() + + def load_response(self): + data_sets = self.nba_response.get_data_sets() + self.data_sets = [Endpoint.DataSet(data=data_set) for data_set_name, data_set in data_sets.items()] + self.available_video = Endpoint.DataSet(data=data_sets['AvailableVideo']) + self.play_by_play = Endpoint.DataSet(data=data_sets['PlayByPlay']) diff --git a/nba_api/live/library/__init__.py b/nba_api/live/library/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/nba_api/live/library/http.py b/nba_api/live/library/http.py new file mode 100644 index 00000000..f456f96f --- /dev/null +++ b/nba_api/live/library/http.py @@ -0,0 +1,103 @@ +import json +from nba_api.library import http + + +try: + from nba_api.library.debug.debug import STATS_HEADERS +except ImportError: + STATS_HEADERS = { + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', + 'Accept-Encoding': 'gzip, deflate, br', + 'Accept-Language': 'en-US,en;q=0.9', + 'Cache-Control': 'max-age=0', + 'Connection': 'keep-alive', + 'Host': 'nba-dev-us-east-1-mediaops-stats.s3.amazonaws.com', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + } + + +class NBAStatsResponse(http.NBAResponse): + + def get_normalized_dict(self): + raw_data = self.get_dict() + + data = {} + + if 'resultSets' in raw_data: + results = raw_data['resultSets'] + if 'Meta' in results: + return results + else: + results = raw_data['resultSet'] + if isinstance(results, dict): + results = [results] + for result in results: + name = result['name'] + headers = result['headers'] + row_set = result['rowSet'] + + rows = [] + for raw_row in row_set: + row = {} + for i in range(len(headers)): + row[headers[i]] = raw_row[i] + rows.append(row) + data[name] = rows + + return data + + def get_normalized_json(self): + return json.dumps(self.get_normalized_dict()) + + def get_parameters(self): + if not self.valid_json() or 'parameters' not in self.get_dict(): + return None + + parameters = self.get_dict()['parameters'] + if isinstance(parameters, dict): + return parameters + + parameters = {} + for parameter in self.get_dict()['parameters']: + for key, value in parameter.items(): + parameters.update({key: value}) + return parameters + + def get_headers_from_data_sets(self): + raw_dict = self.get_dict() + if 'resultSets' in raw_dict: + results = raw_dict['resultSets'] + else: + results = raw_dict['resultSet'] + if isinstance(results, dict): + if 'name' not in results: + return {} + return {results['name']: results['headers']} + return {result_set['name']: result_set['headers'] for result_set in results} + + def get_data_sets(self): + raw_dict = self.get_dict() + if 'resultSets' in raw_dict: + results = raw_dict['resultSets'] + else: + results = raw_dict['resultSet'] + if isinstance(results, dict): + if 'name' not in results: + return {} + return {results['name']: {'headers': results['headers'], 'data': results['rowSet']}} + return {result_set['name']: {'headers': result_set['headers'], 'data': result_set['rowSet']} + for result_set in results} + + +class NBAStatsHTTP(http.NBAHTTP): + + nba_response = NBAStatsResponse + + base_url = 'https://nba-dev-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/playbyplay/{endpoint}' + + headers = STATS_HEADERS + + def clean_contents(self, contents): + if '{"Message":"An error has occurred."}' in contents: + return 'An error has occurred.' + return contents From e071cf7035da69179ce7553965692a822fa6b096 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sun, 20 Dec 2020 12:15:58 -0500 Subject: [PATCH 02/20] missed library for http.py --- nba_api/live/library/http.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/nba_api/live/library/http.py b/nba_api/live/library/http.py index f456f96f..b00c42f7 100644 --- a/nba_api/live/library/http.py +++ b/nba_api/live/library/http.py @@ -92,9 +92,7 @@ def get_data_sets(self): class NBAStatsHTTP(http.NBAHTTP): nba_response = NBAStatsResponse - base_url = 'https://nba-dev-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/playbyplay/{endpoint}' - headers = STATS_HEADERS def clean_contents(self, contents): From fb702e43a4448146c85e1d1a374c6a6c5018fef8 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Thu, 24 Dec 2020 07:54:56 -0500 Subject: [PATCH 03/20] Live Data --- .vscode/launch.json | 7 ++++ .vscode/settings.json | 8 +++- nba_api/live/endpoints/boxscore.py | 0 nba_api/live/endpoints/gameodds.py | 0 nba_api/live/endpoints/playbyplay.py | 5 +-- nba_api/live/library/actiontype.py | 55 ++++++++++++++++++++++++++++ nba_api/live/library/http.py | 4 +- nba_api/stats/library/http.py | 1 + 8 files changed, 74 insertions(+), 6 deletions(-) create mode 100644 nba_api/live/endpoints/boxscore.py create mode 100644 nba_api/live/endpoints/gameodds.py create mode 100644 nba_api/live/library/actiontype.py diff --git a/.vscode/launch.json b/.vscode/launch.json index 92a2fa2e..10a6b67f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,13 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Python: Testing", + "type": "python", + "request": "test", + "console": "integratedTerminal", + "redirectOutput": true, + }, { "name": "Python: Current File (Integrated Terminal)", "type": "python", diff --git a/.vscode/settings.json b/.vscode/settings.json index 84a192ce..cd5d5f7f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,9 @@ { - "python.pythonPath": "venv\\Scripts\\python.exe" + "python.pythonPath": "venv\\Scripts\\python.exe", + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.nosetestsEnabled": false, + "python.testing.pytestEnabled": true } \ No newline at end of file diff --git a/nba_api/live/endpoints/boxscore.py b/nba_api/live/endpoints/boxscore.py new file mode 100644 index 00000000..e69de29b diff --git a/nba_api/live/endpoints/gameodds.py b/nba_api/live/endpoints/gameodds.py new file mode 100644 index 00000000..e69de29b diff --git a/nba_api/live/endpoints/playbyplay.py b/nba_api/live/endpoints/playbyplay.py index b08b4385..64fcfd03 100644 --- a/nba_api/live/endpoints/playbyplay.py +++ b/nba_api/live/endpoints/playbyplay.py @@ -2,10 +2,9 @@ from nba_api.live.library.http import NBAStatsHTTP from nba_api.stats.library.parameters import EndPeriod, StartPeriod - class PlayByPlay(Endpoint): - endpoint_url = 'playbyplay_{game_id}.json' - expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} + endpoint_url = 'playbyplay/playbyplay_{game_id}.json' + #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} nba_response = None data_sets = None diff --git a/nba_api/live/library/actiontype.py b/nba_api/live/library/actiontype.py new file mode 100644 index 00000000..533f4460 --- /dev/null +++ b/nba_api/live/library/actiontype.py @@ -0,0 +1,55 @@ +from enum import Enum + +class EventMsgType(Enum): + FIELD_GOAL_MADE = 1 + FIELD_GOAL_MISSED = 2 + FREE_THROW = 3 + REBOUND = 4 + TURNOVER = 5 + FOUL = 6 + VIOLATION = 7 + SUBSTITUTION = 8 + TIMEOUT = 9 + JUMP_BALL = 10 + EJECTION = 11 + PERIOD_BEGIN = 12 + PERIOD_END = 13 + UNKNOWN = 18 + + +# period : start +# jumpball : recovered +# 3pt : Jump Shot +# 2pt : Hook +# rebound : defensive +# turnover : bad pass +# steal : None +# 2pt : Jump Shot +# 2pt : Layup +# rebound : offensive +# timeout : full +# substitution : out +# substitution : in +# turnover : out-of-bounds +# foul : personal +# freethrow : 1 of 1 +# 2pt : DUNK +# freethrow : 1 of 2 +# freethrow : 2 of 2 +# block : None +# stoppage : out-of-bounds +# foul : offensive +# turnover : offensive foul +# stoppage : blood rule +# stoppage : equipment issue +# freethrow : 1 of 3 +# freethrow : 2 of 3 +# freethrow : 3 of 3 +# period : end +# turnover : lost ball +# violation : kicked ball +# turnover : discontinued dribble +# turnover : traveling +# foul : technical +# instantreplay : request +# game : end \ No newline at end of file diff --git a/nba_api/live/library/http.py b/nba_api/live/library/http.py index b00c42f7..1bffeea1 100644 --- a/nba_api/live/library/http.py +++ b/nba_api/live/library/http.py @@ -11,7 +11,7 @@ 'Accept-Language': 'en-US,en;q=0.9', 'Cache-Control': 'max-age=0', 'Connection': 'keep-alive', - 'Host': 'nba-dev-us-east-1-mediaops-stats.s3.amazonaws.com', + 'Host': 'cdn.nba.com', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', } @@ -92,7 +92,7 @@ def get_data_sets(self): class NBAStatsHTTP(http.NBAHTTP): nba_response = NBAStatsResponse - base_url = 'https://nba-dev-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/playbyplay/{endpoint}' + base_url = 'https://cdn.nba.com/static/json/liveData/{endpoint}' headers = STATS_HEADERS def clean_contents(self, contents): diff --git a/nba_api/stats/library/http.py b/nba_api/stats/library/http.py index 6ff9ff97..7d7d5dc7 100644 --- a/nba_api/stats/library/http.py +++ b/nba_api/stats/library/http.py @@ -81,6 +81,7 @@ def get_headers_from_data_sets(self): def get_data_sets(self): raw_dict = self.get_dict() + print(raw_dict) if 'resultSets' in raw_dict: results = raw_dict['resultSets'] else: From 35b953f1ae1431e388b285594b5074bf4ac86b01 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sat, 26 Dec 2020 12:26:27 -0500 Subject: [PATCH 04/20] updating live files for further review --- .vscode/launch.json | 1 - docs/examples/PlayByPlay_Live.ipynb | 168 ++++++++++++++++++++++ docs/nba_api/live/endpoints/playbyplay.md | 66 +++++++++ nba_api/live/__init__.py | 1 + nba_api/live/endpoints/boxscore.py | 43 ++++++ nba_api/live/endpoints/gameodds.py | 43 ++++++ nba_api/live/endpoints/playbyplay.py | 12 +- nba_api/live/endpoints/scoreboard.py | 41 ++++++ nba_api/live/library/http.py | 5 +- 9 files changed, 369 insertions(+), 11 deletions(-) create mode 100644 docs/examples/PlayByPlay_Live.ipynb create mode 100644 docs/nba_api/live/endpoints/playbyplay.md create mode 100644 nba_api/live/__init__.py create mode 100644 nba_api/live/endpoints/scoreboard.py diff --git a/.vscode/launch.json b/.vscode/launch.json index 10a6b67f..599b5572 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,6 @@ "name": "Python: Testing", "type": "python", "request": "test", - "console": "integratedTerminal", "redirectOutput": true, }, { diff --git a/docs/examples/PlayByPlay_Live.ipynb b/docs/examples/PlayByPlay_Live.ipynb new file mode 100644 index 00000000..9b2f77d6 --- /dev/null +++ b/docs/examples/PlayByPlay_Live.ipynb @@ -0,0 +1,168 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Working with live PlayByPlay data...\n", + "\n", + "In order to work with live data, you'll need to use a combination of data from nba_api.live and nba_api.stats.\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "pacers_id: 1610612754\n" + ] + } + ], + "source": [ + "#First, let's get a team's numeric id. In this case, we'll get the Pacers\n", + "from nba_api.stats.static import teams\n", + "\n", + "nba_teams = teams.get_teams()\n", + "\n", + "# Select the dictionary for the Pacers, which contains their team ID\n", + "pacers = [team for team in nba_teams if team['abbreviation'] == 'IND'][0]\n", + "pacers_id = pacers['id']\n", + "print(f'pacers_id: {pacers_id}')" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'resource': 'leaguegamefinderparameters', 'parameters': {'PlayerOrTeam': 'T', 'LeagueID': None, 'Season': '2020-21', 'SeasonType': 'Regular Season', 'TeamID': '1610612754', 'VsTeamID': None, 'PlayerID': None, 'GameID': None, 'Outcome': None, 'Location': None, 'DateFrom': None, 'DateTo': None, 'VsConference': None, 'VsDivision': None, 'Conference': None, 'Division': None, 'DraftYear': None, 'DraftNumber': None, 'DraftRound': None, 'DraftTeamID': None, 'RookieYear': None, 'YearsExperience': None, 'SeasonSegment': None, 'PORound': None, 'StarterBench': None, 'GtPTS': None, 'GtREB': None, 'GtAST': None, 'GtSTL': None, 'GtBLK': None, 'GtOREB': None, 'GtDREB': None, 'GtDD': None, 'GtTD': None, 'GtMINUTES': None, 'GtTOV': None, 'GtPF': None, 'GtFGM': None, 'GtFGA': None, 'GtFG_PCT': None, 'GtFTM': None, 'GtFTA': None, 'GtFT_PCT': None, 'GtFG3M': None, 'GtFG3A': None, 'GtFG3_PCT': None, 'LtPTS': None, 'LtREB': None, 'LtAST': None, 'LtSTL': None, 'LtBLK': None, 'LtOREB': None, 'LtDREB': None, 'LtDD': None, 'LtTD': None, 'LtMINUTES': None, 'LtTOV': None, 'LtPF': None, 'LtFGM': None, 'LtFGA': None, 'LtFG_PCT': None, 'LtFTM': None, 'LtFTA': None, 'LtFT_PCT': None, 'LtFG3M': None, 'LtFG3A': None, 'LtFG3_PCT': None, 'EqPTS': None, 'EqREB': None, 'EqAST': None, 'EqSTL': None, 'EqBLK': None, 'EqOREB': None, 'EqDREB': None, 'EqDD': None, 'EqTD': None, 'EqMINUTES': None, 'EqTOV': None, 'EqPF': None, 'EqFGM': None, 'EqFGA': None, 'EqFG_PCT': None, 'EqFTM': None, 'EqFTA': None, 'EqFT_PCT': None, 'EqFG3M': None, 'EqFG3A': None, 'EqFG3_PCT': None}, 'resultSets': [{'name': 'LeagueGameFinderResults', 'headers': ['SEASON_ID', 'TEAM_ID', 'TEAM_ABBREVIATION', 'TEAM_NAME', 'GAME_ID', 'GAME_DATE', 'MATCHUP', 'WL', 'MIN', 'PTS', 'FGM', 'FGA', 'FG_PCT', 'FG3M', 'FG3A', 'FG3_PCT', 'FTM', 'FTA', 'FT_PCT', 'OREB', 'DREB', 'REB', 'AST', 'STL', 'BLK', 'TOV', 'PF', 'PLUS_MINUS'], 'rowSet': [['22020', 1610612754, 'IND', 'Indiana Pacers', '0022000011', '2020-12-23', 'IND vs. NYK', 'W', 239, 121, 46, 94, 0.489, 8, 34, 0.235, 21, 29, 0.724, 10, 40, 50, 28, 6, 9, 13, 24, 8.6]]}]}\n", + "Searching through 1 game(s) for the game_id of 0022000011 where IND vs. NYK\n" + ] + } + ], + "source": [ + "#Query for the last regular season game where the Pacers played\n", + "from nba_api.stats.endpoints import leaguegamefinder\n", + "from nba_api.stats.library.parameters import Season\n", + "from nba_api.stats.library.parameters import SeasonType\n", + "\n", + "gamefinder = leaguegamefinder.LeagueGameFinder(team_id_nullable=pacers_id,\n", + " season_nullable=Season.default,\n", + " season_type_nullable=SeasonType.regular) \n", + "\n", + "games_dict = gamefinder.get_normalized_dict()\n", + "games = games_dict['LeagueGameFinderResults']\n", + "game = games[0]\n", + "game_id = game['GAME_ID']\n", + "game_matchup = game['MATCHUP']\n", + "\n", + "print(f'Searching through {len(games)} game(s) for the game_id of {game_id} where {game_matchup}')" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['actionNumber', 'clock', 'timeActual', 'period', 'periodType', 'actionType', 'subType', 'qualifiers', 'personId', 'x', 'y', 'possession', 'scoreHome', 'scoreAway', 'edited', 'orderNumber', 'xLegacy', 'yLegacy', 'isFieldGoal', 'side', 'description', 'personIdsFilter', 'teamId', 'teamTricode', 'descriptor', 'jumpBallRecoveredName', 'jumpBallRecoverdPersonId', 'playerName', 'playerNameI', 'jumpBallWonPlayerName', 'jumpBallWonPersonId', 'jumpBallLostPlayerName', 'jumpBallLostPersonId', 'turnoverTotal', 'stealPlayerName', 'stealPersonId', 'shotDistance', 'shotResult', 'shotActionNumber', 'reboundTotal', 'reboundDefensiveTotal', 'reboundOffensiveTotal', 'officialId', 'foulPersonalTotal', 'foulTechnicalTotal', 'foulDrawnPlayerName', 'foulDrawnPersonId', 'pointsTotal', 'blockPlayerName', 'blockPersonId', 'assistPlayerNameInitial', 'assistPersonId', 'assistTotal']\n" + ] + } + ], + "source": [ + "# Query nba.live.endpoints for the play by play of that most recent regular season game\n", + "from nba_api.live.endpoints import playbyplay\n", + "actions = playbyplay.PlayByPlay(game_id).get_dict()['game']['actions']\n", + "action_keys = []\n", + "for actions in actions:\n", + " for key in actions.keys():\n", + " if key not in action_keys :\n", + " action_keys.append(key)\n", + "print(action_keys)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000011/playbyplay?Format=json', 'time': '2020-12-23 23:28:42.239540'}\n" + ] + } + ], + "source": [ + "#The first block of the retuned json is 'meta'\n", + "print(json['meta'])" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'gameId': '0022000011', 'actions': [{'actionNumber': 2, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:13:22.7Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'start', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 0, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:22Z', 'orderNumber': 20000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period Start', 'personIdsFilter': []}, {'actionNumber': 4, 'clock': 'PT11M58.00S', 'timeActual': '2020-12-24T00:13:24.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'jumpball', 'subType': 'recovered', 'descriptor': 'startperiod', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:24Z', 'orderNumber': 40000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'jumpBallRecoveredName': 'D. Sabonis', 'jumpBallRecoverdPersonId': 1627734, 'side': None, 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1626167, 1629011], 'jumpBallWonPlayerName': 'Turner', 'jumpBallWonPersonId': 1626167, 'description': 'Jump Ball M. Turner vs. M. Robinson: Tip to D. Sabonis', 'jumpBallLostPlayerName': 'Robinson', 'jumpBallLostPersonId': 1629011}, {'actionNumber': 7, 'clock': 'PT11M40.00S', 'timeActual': '2020-12-24T00:13:41.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:45Z', 'orderNumber': 70000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'D. Sabonis bad pass TURNOVER (1 TO)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203493], 'stealPlayerName': 'Bullock', 'stealPersonId': 203493}, {'actionNumber': 8, 'clock': 'PT11M40.00S', 'timeActual': '2020-12-24T00:13:41.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:43Z', 'orderNumber': 80000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'R. Bullock STEAL (1 STL)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 9, 'clock': 'PT11M29.00S', 'timeActual': '2020-12-24T00:13:55.0Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:55Z', 'orderNumber': 90000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 10, 'clock': 'PT11M19.00S', 'timeActual': '2020-12-24T00:14:16.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 203944, 'x': 4.28712220762155, 'y': 97.86305147058823, 'side': 'left', 'shotDistance': 23.96, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:20Z', 'orderNumber': 100000, 'xLegacy': -239, 'yLegacy': -12, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle 3PT', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 11, 'clock': 'PT11M16.00S', 'timeActual': '2020-12-24T00:14:19.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:20Z', 'orderNumber': 110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 10, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'M. Brogdon REBOUND (Off:0 Def:1)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 12, 'clock': 'PT11M05.00S', 'timeActual': '2020-12-24T00:14:31.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1626167, 'x': 93.51182654402102, 'y': 95.65716911764706, 'side': 'right', 'shotDistance': 22.85, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:34Z', 'orderNumber': 120000, 'xLegacy': 228, 'yLegacy': 8, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Turner 3PT', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 13, 'clock': 'PT11M01.00S', 'timeActual': '2020-12-24T00:14:35.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:34Z', 'orderNumber': 130000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 12, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'M. Robinson REBOUND (Off:0 Def:1)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 14, 'clock': 'PT10M58.00S', 'timeActual': '2020-12-24T00:14:37.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'descriptor': 'charge', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:47Z', 'officialId': 200832, 'orderNumber': 140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'R. Barrett charge offensive FOUL (1 PF)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203506], 'foulDrawnPlayerName': 'Oladipo', 'foulDrawnPersonId': 203506}, {'actionNumber': 16, 'clock': 'PT10M58.00S', 'timeActual': '2020-12-24T00:14:37.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:37Z', 'officialId': 200832, 'orderNumber': 160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'R. Barrett offensive foul TURNOVER (1 TO)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 17, 'clock': 'PT10M45.00S', 'timeActual': '2020-12-24T00:15:08.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 203933, 'x': 68.9388961892247, 'y': 15.265012254901961, 'side': 'right', 'shotDistance': 29.59, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:15:13Z', 'orderNumber': 170000, 'xLegacy': -174, 'yLegacy': 239, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS T. Warren 29' 3PT\", 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 18, 'clock': 'PT10M41.00S', 'timeActual': '2020-12-24T00:15:12.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:15:13Z', 'orderNumber': 180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 17, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'R. Bullock REBOUND (Off:0 Def:1)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 19, 'clock': 'PT10M36.00S', 'timeActual': '2020-12-24T00:15:18.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating bank', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203944, 'x': 7.440867279894875, 'y': 48.59834558823529, 'side': 'left', 'shotDistance': 1.88, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:15:22Z', 'orderNumber': 190000, 'xLegacy': 7, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle driving floating bank Shot', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 20, 'clock': 'PT10M32.00S', 'timeActual': '2020-12-24T00:15:22.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:15:22Z', 'orderNumber': 200000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 19, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'V. Oladipo REBOUND (Off:0 Def:1)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 21, 'clock': 'PT10M29.00S', 'timeActual': '2020-12-24T00:15:24.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['fastbreak', 'pointsinthepaint'], 'personId': 203506, 'x': 94.69448094612353, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 0.7, 'possession': 1610612754, 'scoreHome': '2', 'scoreAway': '0', 'edited': '2020-12-24T00:15:38Z', 'orderNumber': 210000, 'xLegacy': 6, 'yLegacy': -3, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'V. Oladipo running finger roll Layup (2 PTS)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 22, 'clock': 'PT10M06.00S', 'timeActual': '2020-12-24T00:15:47.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '2', 'scoreAway': '0', 'edited': '2020-12-24T00:15:51Z', 'orderNumber': 220000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'J. Randle bad pass TURNOVER (1 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1627763], 'stealPlayerName': 'Brogdon', 'stealPersonId': 1627763}, {'actionNumber': 23, 'clock': 'PT10M06.00S', 'timeActual': '2020-12-24T00:15:47.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '2', 'scoreAway': '0', 'edited': '2020-12-24T00:15:49Z', 'orderNumber': 230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Brogdon STEAL (1 STL)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 24, 'clock': 'PT10M02.00S', 'timeActual': '2020-12-24T00:15:50.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'running', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 1627763, 'x': 93.64323258869908, 'y': 51.049325980392155, 'side': 'right', 'shotDistance': 0.9, 'possession': 1610612754, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:15:56Z', 'orderNumber': 240000, 'xLegacy': 5, 'yLegacy': 7, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'M. Brogdon running DUNK (2 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 25, 'clock': 'PT09M51.00S', 'timeActual': '2020-12-24T00:16:01.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving reverse', 'qualifiers': ['pointsinthepaint'], 'personId': 203901, 'x': 6.652431011826544, 'y': 49.57873774509804, 'side': 'left', 'shotDistance': 1.02, 'possession': 1610612752, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:08Z', 'orderNumber': 250000, 'xLegacy': 2, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS E. Payton driving reverse Layup - blocked', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 26, 'clock': 'PT09M51.00S', 'timeActual': '2020-12-24T00:16:01.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:04Z', 'orderNumber': 260000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (1 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 27, 'clock': 'PT09M49.00S', 'timeActual': '2020-12-24T00:16:03.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:08Z', 'orderNumber': 270000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 25, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'M. Brogdon REBOUND (Off:0 Def:2)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 28, 'clock': 'PT09M38.00S', 'timeActual': '2020-12-24T00:16:15.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1626167, 'x': 94.43166885676742, 'y': 96.8826593137255, 'side': 'right', 'shotDistance': 23.44, 'possession': 1610612754, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:19Z', 'orderNumber': 280000, 'xLegacy': 234, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Turner 3PT', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 29, 'clock': 'PT09M35.00S', 'timeActual': '2020-12-24T00:16:18.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:19Z', 'orderNumber': 290000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 28, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'M. Robinson REBOUND (Off:0 Def:2)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 30, 'clock': 'PT09M22.00S', 'timeActual': '2020-12-24T00:16:31.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1629628, 'x': 26.10052562417871, 'y': 88.05912990196079, 'side': 'left', 'shotDistance': 27.09, 'possession': 1610612752, 'scoreHome': '4', 'scoreAway': '3', 'edited': '2020-12-24T00:16:35Z', 'orderNumber': 300000, 'xLegacy': -190, 'yLegacy': 193, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': \"R. Barrett 27' 3PT pullup (3 PTS) (J. Randle 1 AST)\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 1}, {'actionNumber': 32, 'clock': 'PT09M10.00S', 'timeActual': '2020-12-24T00:16:44.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1627734, 'x': 67.62483574244416, 'y': 28.500306372549016, 'side': 'right', 'shotDistance': 27.38, 'possession': 1610612754, 'scoreHome': '7', 'scoreAway': '3', 'edited': '2020-12-24T00:16:48Z', 'orderNumber': 320000, 'xLegacy': -107, 'yLegacy': 252, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': \"D. Sabonis 27' 3PT (3 PTS) (M. Brogdon 1 AST)\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 1}, {'actionNumber': 34, 'clock': 'PT08M53.00S', 'timeActual': '2020-12-24T00:17:00.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1629628, 'x': 26.888961892247043, 'y': 13.304227941176471, 'side': 'left', 'shotDistance': 27.16, 'possession': 1610612752, 'scoreHome': '7', 'scoreAway': '6', 'edited': '2020-12-24T00:17:04Z', 'orderNumber': 340000, 'xLegacy': 183, 'yLegacy': 200, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': \"R. Barrett 27' 3PT (6 PTS) (R. Bullock 1 AST)\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203493], 'assistPlayerNameInitial': 'R. Bullock', 'assistPersonId': 203493, 'assistTotal': 1}, {'actionNumber': 36, 'clock': 'PT08M41.00S', 'timeActual': '2020-12-24T00:17:16.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '7', 'scoreAway': '6', 'edited': '2020-12-24T00:17:21Z', 'officialId': 202053, 'orderNumber': 360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'E. Payton personal FOUL (1 PF)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 38, 'clock': 'PT08M30.00S', 'timeActual': '2020-12-24T00:17:41.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'step back', 'qualifiers': [], 'personId': 1627763, 'x': 80.50262812089356, 'y': 26.53952205882353, 'side': 'right', 'shotDistance': 17.57, 'possession': 1610612754, 'scoreHome': '9', 'scoreAway': '6', 'edited': '2020-12-24T00:17:44Z', 'orderNumber': 380000, 'xLegacy': -117, 'yLegacy': 131, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': \"M. Brogdon 17' step back Jump Shot (4 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 39, 'clock': 'PT08M15.00S', 'timeActual': '2020-12-24T00:17:55.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203493, 'x': 29.517082785808146, 'y': 49.333639705882355, 'side': 'left', 'shotDistance': 22.5, 'possession': 1610612752, 'scoreHome': '9', 'scoreAway': '6', 'edited': '2020-12-24T00:18:03Z', 'orderNumber': 390000, 'xLegacy': 3, 'yLegacy': 225, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS R. Bullock 22' pullup Shot\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 40, 'clock': 'PT08M13.00S', 'timeActual': '2020-12-24T00:17:57.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '9', 'scoreAway': '6', 'edited': '2020-12-24T00:18:03Z', 'orderNumber': 400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 39, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 41, 'clock': 'PT08M13.00S', 'timeActual': '2020-12-24T00:18:01.1Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '9', 'scoreAway': '6', 'edited': '2020-12-24T00:18:01Z', 'orderNumber': 410000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 42, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:18:27.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Hook', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 88.51839684625493, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 5.59, 'possession': 1610612754, 'scoreHome': '11', 'scoreAway': '6', 'edited': '2020-12-24T00:18:31Z', 'orderNumber': 420000, 'xLegacy': 8, 'yLegacy': 55, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'D. Sabonis Hook (5 PTS) (M. Brogdon 2 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 2}, {'actionNumber': 44, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:18:32.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '11', 'scoreAway': '6', 'edited': '2020-12-24T00:18:53Z', 'officialId': 200832, 'orderNumber': 440000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'M. Robinson shooting personal FOUL (1 PF) (Sabonis 1 FT)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 46, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:18:55.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '6', 'edited': '2020-12-24T00:18:55Z', 'orderNumber': 460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'D. Sabonis Free Throw 1 of 1 (6 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 47, 'clock': 'PT07M45.00S', 'timeActual': '2020-12-24T00:19:10.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 8.229303547963205, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 2.57, 'possession': 1610612752, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:14Z', 'orderNumber': 470000, 'xLegacy': -6, 'yLegacy': 25, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'J. Randle cutting finger roll Layup (2 PTS) (R. Barrett 1 AST)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 1}, {'actionNumber': 49, 'clock': 'PT07M42.00S', 'timeActual': '2020-12-24T00:19:15.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:32Z', 'orderNumber': 490000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'D. Sabonis bad pass TURNOVER (2 TO)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203901], 'stealPlayerName': 'Payton', 'stealPersonId': 203901}, {'actionNumber': 50, 'clock': 'PT07M42.00S', 'timeActual': '2020-12-24T00:19:15.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:17Z', 'orderNumber': 500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'E. Payton STEAL (1 STL)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 51, 'clock': 'PT07M38.00S', 'timeActual': '2020-12-24T00:19:18.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 203493, 'x': 32.013797634691194, 'y': 62.814031862745104, 'side': 'left', 'shotDistance': 25.65, 'possession': 1610612752, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:21Z', 'orderNumber': 510000, 'xLegacy': -64, 'yLegacy': 248, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS R. Bullock 25' 3PT\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 52, 'clock': 'PT07M35.00S', 'timeActual': '2020-12-24T00:19:21.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:43Z', 'orderNumber': 520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 51, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 53, 'clock': 'PT07M35.00S', 'timeActual': '2020-12-24T00:19:23.8Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:23Z', 'orderNumber': 530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 54, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:19:48.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:55Z', 'officialId': 202053, 'orderNumber': 540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'M. Robinson shooting personal FOUL (2 PF) (Sabonis 2 FT)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 56, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:20:11.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '13', 'scoreAway': '8', 'edited': '2020-12-24T00:20:11Z', 'orderNumber': 560000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 7, 'description': 'D. Sabonis Free Throw 1 of 2 (7 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 57, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:20:12.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '13', 'scoreAway': '8', 'edited': '2020-12-24T00:20:16Z', 'orderNumber': 570000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 58, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:20:12.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '13', 'scoreAway': '8', 'edited': '2020-12-24T00:20:16Z', 'orderNumber': 580000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: N. Noel', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 59, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:20:29.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '14', 'scoreAway': '8', 'edited': '2020-12-24T00:20:29Z', 'orderNumber': 590000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'D. Sabonis Free Throw 2 of 2 (8 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 60, 'clock': 'PT07M14.00S', 'timeActual': '2020-12-24T00:20:43.5Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '14', 'scoreAway': '8', 'edited': '2020-12-24T00:20:43Z', 'orderNumber': 600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 61, 'clock': 'PT07M08.00S', 'timeActual': '2020-12-24T00:21:01.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 17.95335085413929, 'y': 95.41207107843137, 'side': 'left', 'shotDistance': 25.51, 'possession': 1610612752, 'scoreHome': '14', 'scoreAway': '11', 'edited': '2020-12-24T00:21:05Z', 'orderNumber': 610000, 'xLegacy': -227, 'yLegacy': 116, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': \"R. Bullock 25' 3PT (3 PTS) (R. Barrett 2 AST)\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 2}, {'actionNumber': 63, 'clock': 'PT06M49.00S', 'timeActual': '2020-12-24T00:21:19.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1627734, 'x': 73.27529566360053, 'y': 88.79442401960785, 'side': 'right', 'shotDistance': 27.77, 'possession': 1610612754, 'scoreHome': '17', 'scoreAway': '11', 'edited': '2020-12-24T00:21:23Z', 'orderNumber': 630000, 'xLegacy': 194, 'yLegacy': 199, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 11, 'description': \"D. Sabonis 27' 3PT (11 PTS) (T. Warren 1 AST)\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203933], 'assistPlayerNameInitial': 'T. Warren', 'assistPersonId': 203933, 'assistTotal': 1}, {'actionNumber': 65, 'clock': 'PT06M38.00S', 'timeActual': '2020-12-24T00:21:31.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '17', 'scoreAway': '11', 'edited': '2020-12-24T00:21:34Z', 'orderNumber': 650000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'E. Payton lost ball TURNOVER (1 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1627763], 'stealPlayerName': 'Brogdon', 'stealPersonId': 1627763}, {'actionNumber': 66, 'clock': 'PT06M38.00S', 'timeActual': '2020-12-24T00:21:31.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '17', 'scoreAway': '11', 'edited': '2020-12-24T00:21:32Z', 'orderNumber': 660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Brogdon STEAL (2 STL)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 67, 'clock': 'PT06M35.00S', 'timeActual': '2020-12-24T00:21:34.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 1627763, 'x': 93.24901445466492, 'y': 52.029718137254896, 'side': 'right', 'shotDistance': 1.49, 'possession': 1610612754, 'scoreHome': '19', 'scoreAway': '11', 'edited': '2020-12-24T00:21:44Z', 'orderNumber': 670000, 'xLegacy': 10, 'yLegacy': 11, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'M. Brogdon running finger roll Layup (6 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 68, 'clock': 'PT06M29.00S', 'timeActual': '2020-12-24T00:21:42.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '19', 'scoreAway': '11', 'edited': '2020-12-24T00:21:42Z', 'orderNumber': 680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'NYK Timeout', 'personIdsFilter': []}, {'actionNumber': 69, 'clock': 'PT06M29.00S', 'timeActual': '2020-12-24T00:24:40.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '19', 'scoreAway': '11', 'edited': '2020-12-24T00:24:47Z', 'orderNumber': 690000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 70, 'clock': 'PT06M29.00S', 'timeActual': '2020-12-24T00:24:40.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '19', 'scoreAway': '11', 'edited': '2020-12-24T00:24:47Z', 'orderNumber': 700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 71, 'clock': 'PT06M16.00S', 'timeActual': '2020-12-24T00:25:13.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 7.440867279894875, 'y': 5.215992647058823, 'side': 'left', 'shotDistance': 22.46, 'possession': 1610612752, 'scoreHome': '19', 'scoreAway': '14', 'edited': '2020-12-24T00:25:16Z', 'orderNumber': 710000, 'xLegacy': 224, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'R. Bullock 3PT (6 PTS) (J. Randle 2 AST)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 2}, {'actionNumber': 73, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:25:30.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['3freethrow'], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '19', 'scoreAway': '14', 'edited': '2020-12-24T00:26:07Z', 'officialId': 200832, 'orderNumber': 730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'R. Bullock shooting personal FOUL (1 PF) (Oladipo 3 FT)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 203506], 'foulDrawnPlayerName': 'Oladipo', 'foulDrawnPersonId': 203506}, {'actionNumber': 75, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:26:20.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 3', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '19', 'scoreAway': '14', 'edited': '2020-12-24T00:26:20Z', 'orderNumber': 750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS V. Oladipo Free Throw 1 of 3', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 76, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:26:20.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '19', 'scoreAway': '14', 'edited': '2020-12-24T00:26:20Z', 'orderNumber': 760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 75, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 77, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:26:33.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 3', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '20', 'scoreAway': '14', 'edited': '2020-12-24T00:26:33Z', 'orderNumber': 770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'V. Oladipo Free Throw 2 of 3 (3 PTS)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 78, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:26:46.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '3 of 3', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:26:46Z', 'orderNumber': 780000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'V. Oladipo Free Throw 3 of 3 (4 PTS)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 79, 'clock': 'PT05M49.00S', 'timeActual': '2020-12-24T00:26:59.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 28.728646517739815, 'y': 18.45128676470588, 'side': 'left', 'shotDistance': 26.87, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:27:03Z', 'orderNumber': 790000, 'xLegacy': 158, 'yLegacy': 218, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS R. Bullock 26' 3PT\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 80, 'clock': 'PT05M46.00S', 'timeActual': '2020-12-24T00:27:02.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:27:03Z', 'orderNumber': 800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 79, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:1)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 81, 'clock': 'PT05M34.00S', 'timeActual': '2020-12-24T00:27:13.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'fadeaway', 'qualifiers': [], 'personId': 1627763, 'x': 95.87713534822602, 'y': 80.21599264705883, 'side': 'right', 'shotDistance': 15.17, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:27:22Z', 'orderNumber': 810000, 'xLegacy': 151, 'yLegacy': -14, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Brogdon 15' fadeaway Shot\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 82, 'clock': 'PT05M32.00S', 'timeActual': '2020-12-24T00:27:15.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:27:22Z', 'orderNumber': 820000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 81, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:1)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 83, 'clock': 'PT05M26.00S', 'timeActual': '2020-12-24T00:27:21.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203901, 'x': 6.783837056504599, 'y': 52.27481617647059, 'side': 'left', 'shotDistance': 1.61, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '16', 'edited': '2020-12-24T00:27:25Z', 'orderNumber': 830000, 'xLegacy': -11, 'yLegacy': 11, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'E. Payton driving finger roll Layup (2 PTS) (R. Barrett 3 AST)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 3}, {'actionNumber': 85, 'clock': 'PT05M14.00S', 'timeActual': '2020-12-24T00:27:33.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 203933, 'x': 88.78120893561103, 'y': 59.62775735294118, 'side': 'right', 'shotDistance': 7.16, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '16', 'edited': '2020-12-24T00:27:37Z', 'orderNumber': 850000, 'xLegacy': 48, 'yLegacy': 53, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS T. Warren 7' driving floating Shot\", 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 86, 'clock': 'PT05M12.00S', 'timeActual': '2020-12-24T00:27:35.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '16', 'edited': '2020-12-24T00:27:37Z', 'orderNumber': 860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 85, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:1)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 87, 'clock': 'PT05M05.00S', 'timeActual': '2020-12-24T00:27:42.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203493, 'x': 7.046649145860711, 'y': 49.333639705882355, 'side': 'left', 'shotDistance': 1.41, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:27:45Z', 'orderNumber': 870000, 'xLegacy': 3, 'yLegacy': 14, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'R. Bullock cutting finger roll Layup (8 PTS) (J. Randle 3 AST)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 3}, {'actionNumber': 89, 'clock': 'PT04M54.00S', 'timeActual': '2020-12-24T00:27:53.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint'], 'personId': 203506, 'x': 94.56307490144546, 'y': 50.55912990196079, 'side': 'right', 'shotDistance': 0.31, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:27:57Z', 'orderNumber': 890000, 'xLegacy': 3, 'yLegacy': -1, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS V. Oladipo cutting Layup - blocked', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 203457], 'blockPlayerName': 'Noel', 'blockPersonId': 203457}, {'actionNumber': 106, 'clock': 'PT04M54.00S', 'timeActual': '2020-12-24T00:27:53.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:29:46Z', 'orderNumber': 895000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'N. Noel BLOCK (1 BLK)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 90, 'clock': 'PT04M51.00S', 'timeActual': '2020-12-24T00:27:56.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:27:57Z', 'orderNumber': 900000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 89, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'N. Noel REBOUND (Off:0 Def:1)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 91, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:01.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:12Z', 'officialId': 200832, 'orderNumber': 910000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'M. Brogdon personal FOUL (1 PF)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 93, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:14Z', 'orderNumber': 930000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: T. Warren', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 94, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:14Z', 'orderNumber': 940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Bullock', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 95, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:14Z', 'orderNumber': 950000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. McDermott', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 96, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:14Z', 'orderNumber': 960000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 97, 'clock': 'PT04M42.00S', 'timeActual': '2020-12-24T00:28:35.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 6.915243101182654, 'y': 53.50030637254902, 'side': 'left', 'shotDistance': 2.15, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:28:38Z', 'orderNumber': 970000, 'xLegacy': -18, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'R. Barrett driving finger roll Layup (8 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 98, 'clock': 'PT04M29.00S', 'timeActual': '2020-12-24T00:28:47.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203200, 'x': 71.30420499342969, 'y': 17.47089460784314, 'side': 'right', 'shotDistance': 27.13, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:28:54Z', 'orderNumber': 980000, 'xLegacy': -163, 'yLegacy': 217, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS J. Holiday 27' 3PT\", 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 99, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:28:49.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:28:54Z', 'orderNumber': 990000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 98, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 100, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:28:52.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'loose ball', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:06Z', 'officialId': 200832, 'orderNumber': 1000000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'N. Noel loose ball personal FOUL (1 PF) (Sabonis 2 FT)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 102, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:29:21.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['2ndchance'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:21Z', 'orderNumber': 1020000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Free Throw 1 of 2', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 103, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:29:21.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:21Z', 'orderNumber': 1030000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 102, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 104, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:29:21.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['2ndchance'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:40Z', 'orderNumber': 1040000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Free Throw 2 of 2', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 105, 'clock': 'PT04M26.00S', 'timeActual': '2020-12-24T00:29:22.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:40Z', 'orderNumber': 1050000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 104, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:2)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 107, 'clock': 'PT04M18.00S', 'timeActual': '2020-12-24T00:29:47.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:50Z', 'orderNumber': 1060000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'E. Payton bad pass TURNOVER (2 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 203506], 'stealPlayerName': 'Oladipo', 'stealPersonId': 203506}, {'actionNumber': 108, 'clock': 'PT04M18.00S', 'timeActual': '2020-12-24T00:29:47.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:48Z', 'orderNumber': 1070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'V. Oladipo STEAL (1 STL)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 109, 'clock': 'PT04M13.00S', 'timeActual': '2020-12-24T00:29:51.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'running', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 1627734, 'x': 93.51182654402102, 'y': 52.76501225490197, 'side': 'right', 'shotDistance': 1.62, 'possession': 1610612754, 'scoreHome': '23', 'scoreAway': '20', 'edited': '2020-12-24T00:34:50Z', 'orderNumber': 1080000, 'xLegacy': 14, 'yLegacy': 8, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'D. Sabonis running DUNK (13 PTS) (M. Brogdon 3 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 3}, {'actionNumber': 111, 'clock': 'PT03M56.00S', 'timeActual': '2020-12-24T00:30:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 8.492115637319317, 'y': 50.314031862745104, 'side': 'left', 'shotDistance': 2.73, 'possession': 1610612752, 'scoreHome': '23', 'scoreAway': '22', 'edited': '2020-12-24T00:30:12Z', 'orderNumber': 1100000, 'xLegacy': -2, 'yLegacy': 27, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': 'R. Barrett driving finger roll Layup (10 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 112, 'clock': 'PT03M43.00S', 'timeActual': '2020-12-24T00:30:21.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203506, 'x': 70.90998685939553, 'y': 16.490502450980394, 'side': 'right', 'shotDistance': 27.72, 'possession': 1610612754, 'scoreHome': '23', 'scoreAway': '22', 'edited': '2020-12-24T00:30:26Z', 'orderNumber': 1110000, 'xLegacy': -168, 'yLegacy': 221, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS V. Oladipo 27' 3PT\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 113, 'clock': 'PT03M39.00S', 'timeActual': '2020-12-24T00:30:25.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '23', 'scoreAway': '22', 'edited': '2020-12-24T00:30:25Z', 'orderNumber': 1120000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 112, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'M. Brogdon REBOUND (Off:1 Def:2)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 114, 'clock': 'PT03M38.00S', 'timeActual': '2020-12-24T00:30:26.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1627763, 'x': 92.9862023653088, 'y': 49.82383578431372, 'side': 'right', 'shotDistance': 1.34, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:29Z', 'orderNumber': 1130000, 'xLegacy': -1, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'M. Brogdon driving finger roll Layup (8 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 115, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:41.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'descriptor': 'off-the-ball', 'qualifiers': ['inpenalty'], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:46Z', 'officialId': 202053, 'orderNumber': 1140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'N. Noel off-the-ball offensive FOUL (2 PF)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 117, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:41.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:41Z', 'officialId': 202053, 'orderNumber': 1160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'N. Noel offensive foul TURNOVER (1 TO)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 118, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:46.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:51Z', 'orderNumber': 1170000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 119, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:46.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:51Z', 'orderNumber': 1180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 120, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:46.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:51Z', 'orderNumber': 1190000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 121, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:46.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:51Z', 'orderNumber': 1200000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: I. Quickley', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 122, 'clock': 'PT03M15.00S', 'timeActual': '2020-12-24T00:31:12.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 1626167, 'x': 86.5473061760841, 'y': 59.872855392156865, 'side': 'right', 'shotDistance': 8.9, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '22', 'edited': '2020-12-24T00:31:17Z', 'orderNumber': 1210000, 'xLegacy': 49, 'yLegacy': 74, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': \"M. Turner 8' pullup Jump Shot (2 PTS) (M. Brogdon 4 AST)\", 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 4}, {'actionNumber': 124, 'clock': 'PT03M06.00S', 'timeActual': '2020-12-24T00:31:23.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating bank', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 6.389618922470433, 'y': 50.06893382352941, 'side': 'left', 'shotDistance': 0.76, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '24', 'edited': '2020-12-24T00:31:42Z', 'orderNumber': 1230000, 'xLegacy': 0, 'yLegacy': 8, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'J. Randle driving floating bank Jump Shot (4 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 125, 'clock': 'PT03M06.00S', 'timeActual': '2020-12-24T00:31:28.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '24', 'edited': '2020-12-24T00:31:39Z', 'officialId': 200832, 'orderNumber': 1240000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'J. Holiday shooting personal FOUL (1 PF) (Randle 1 FT)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 127, 'clock': 'PT03M06.00S', 'timeActual': '2020-12-24T00:31:50.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:31:50Z', 'orderNumber': 1260000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'J. Randle Free Throw 1 of 1 (5 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 128, 'clock': 'PT02M57.00S', 'timeActual': '2020-12-24T00:32:01.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:32:06Z', 'orderNumber': 1270000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'V. Oladipo lost ball TURNOVER (1 TO)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 202692], 'stealPlayerName': 'Burks', 'stealPersonId': 202692}, {'actionNumber': 129, 'clock': 'PT02M57.00S', 'timeActual': '2020-12-24T00:32:01.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:32:04Z', 'orderNumber': 1280000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'A. Burks STEAL (1 STL)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 130, 'clock': 'PT02M53.00S', 'timeActual': '2020-12-24T00:32:06.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 202692, 'x': 6.915243101182654, 'y': 50.06893382352941, 'side': 'left', 'shotDistance': 1.25, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:32:10Z', 'orderNumber': 1290000, 'xLegacy': 0, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Burks Layup', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 132, 'clock': 'PT02M50.00S', 'timeActual': '2020-12-24T00:32:09.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:32:10Z', 'orderNumber': 1310000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 130, 'reboundTotal': 2, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 1, 'description': 'N. Noel REBOUND (Off:1 Def:1)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 133, 'clock': 'PT02M50.00S', 'timeActual': '2020-12-24T00:32:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'tip', 'qualifiers': ['pointsinthepaint', 'fromturnover', '2ndchance'], 'personId': 203457, 'x': 5.590000152587891, 'y': 50.0, 'side': 'left', 'shotDistance': 0.0, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:32:09Z', 'orderNumber': 1320000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'N. Noel tip Layup (2 PTS)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 134, 'clock': 'PT02M44.00S', 'timeActual': '2020-12-24T00:32:16.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:32:16Z', 'orderNumber': 1330000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 136, 'clock': 'PT02M44.00S', 'timeActual': '2020-12-24T00:34:33.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:34:50Z', 'orderNumber': 1340000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 137, 'clock': 'PT02M44.00S', 'timeActual': '2020-12-24T00:34:33.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:34:50Z', 'orderNumber': 1350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 138, 'clock': 'PT02M34.00S', 'timeActual': '2020-12-24T00:35:23.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:26Z', 'orderNumber': 1360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'M. Turner bad pass TURNOVER (1 TO)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 203457], 'stealPlayerName': 'Noel', 'stealPersonId': 203457}, {'actionNumber': 139, 'clock': 'PT02M34.00S', 'timeActual': '2020-12-24T00:35:23.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:24Z', 'orderNumber': 1370000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'N. Noel STEAL (1 STL)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 140, 'clock': 'PT02M30.00S', 'timeActual': '2020-12-24T00:35:27.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 202692, 'x': 7.835085413929041, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 2.21, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:31Z', 'orderNumber': 1380000, 'xLegacy': -6, 'yLegacy': 21, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Burks running Layup - blocked', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 141, 'clock': 'PT02M30.00S', 'timeActual': '2020-12-24T00:35:27.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:29Z', 'orderNumber': 1390000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (2 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 142, 'clock': 'PT02M28.00S', 'timeActual': '2020-12-24T00:35:29.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:31Z', 'orderNumber': 1400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 140, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'J. Holiday REBOUND (Off:0 Def:1)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 143, 'clock': 'PT02M25.00S', 'timeActual': '2020-12-24T00:35:33.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'running', 'qualifiers': ['fastbreak'], 'personId': 203926, 'x': 78.13731931668858, 'y': 8.402267156862745, 'side': 'right', 'shotDistance': 25.82, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:46:21Z', 'orderNumber': 1410000, 'xLegacy': -208, 'yLegacy': 153, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 25' running 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 144, 'clock': 'PT02M20.00S', 'timeActual': '2020-12-24T00:35:38.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:38Z', 'orderNumber': 1420000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 143, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:2)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 145, 'clock': 'PT02M10.00S', 'timeActual': '2020-12-24T00:35:46.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 202692, 'x': 3.4986859395532193, 'y': 97.86305147058823, 'side': 'left', 'shotDistance': 24.01, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '30', 'edited': '2020-12-24T00:35:50Z', 'orderNumber': 1430000, 'xLegacy': -239, 'yLegacy': -20, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': \"A. Burks 24' 3PT (3 PTS) (J. Randle 4 AST)\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 4}, {'actionNumber': 147, 'clock': 'PT01M46.00S', 'timeActual': '2020-12-24T00:36:11.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1627763, 'x': 73.14388961892247, 'y': 51.78462009803921, 'side': 'right', 'shotDistance': 20.01, 'possession': 1610612754, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:36:16Z', 'orderNumber': 1450000, 'xLegacy': 9, 'yLegacy': 200, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': \"M. Brogdon 20' pullup Jump Shot (10 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 148, 'clock': 'PT01M27.00S', 'timeActual': '2020-12-24T00:36:32.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'traveling', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:36:38Z', 'officialId': 1627541, 'orderNumber': 1460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'J. Randle traveling TURNOVER (2 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 149, 'clock': 'PT01M27.00S', 'timeActual': '2020-12-24T00:36:36.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:36:40Z', 'orderNumber': 1470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Brogdon', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 150, 'clock': 'PT01M27.00S', 'timeActual': '2020-12-24T00:36:36.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:36:40Z', 'orderNumber': 1480000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 151, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:03.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:37:09Z', 'officialId': 1627541, 'orderNumber': 1490000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'N. Noel shooting personal FOUL (3 PF) (McDermott 2 FT)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457, 203926], 'foulDrawnPlayerName': 'McDermott', 'foulDrawnPersonId': 203926}, {'actionNumber': 153, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:34.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fromturnover'], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:34Z', 'orderNumber': 1510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 1, 'description': 'D. McDermott Free Throw 1 of 2 (1 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 154, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:35.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:44Z', 'orderNumber': 1520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: N. Noel', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 155, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:35.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:44Z', 'orderNumber': 1530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 156, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:35.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:44Z', 'orderNumber': 1540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 157, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:35.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:44Z', 'orderNumber': 1550000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 158, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:56.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fromturnover'], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:37:56Z', 'orderNumber': 1560000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'D. McDermott Free Throw 2 of 2 (2 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 159, 'clock': 'PT01M03.00S', 'timeActual': '2020-12-24T00:38:10.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'qualifiers': ['inpenalty'], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:27Z', 'officialId': 1627541, 'orderNumber': 1570000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'J. Randle offensive FOUL (1 PF)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1626167], 'foulDrawnPlayerName': 'Turner', 'foulDrawnPersonId': 1626167}, {'actionNumber': 161, 'clock': 'PT01M03.00S', 'timeActual': '2020-12-24T00:38:10.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:10Z', 'officialId': 1627541, 'orderNumber': 1590000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 3, 'description': 'J. Randle offensive foul TURNOVER (3 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 162, 'clock': 'PT00M54.20S', 'timeActual': '2020-12-24T00:38:37.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:41Z', 'orderNumber': 1600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'T. McConnell lost ball TURNOVER (1 TO)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 1630193], 'stealPlayerName': 'Quickley', 'stealPersonId': 1630193}, {'actionNumber': 163, 'clock': 'PT00M54.20S', 'timeActual': '2020-12-24T00:38:37.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:38Z', 'orderNumber': 1610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'I. Quickley STEAL (1 STL)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 164, 'clock': 'PT00M51.50S', 'timeActual': '2020-12-24T00:38:39.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 203944, 'x': 5.338370565045992, 'y': 52.27481617647059, 'side': 'left', 'shotDistance': 1.16, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:48Z', 'orderNumber': 1620000, 'xLegacy': -11, 'yLegacy': -2, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle driving Layup - blocked', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 165, 'clock': 'PT00M51.50S', 'timeActual': '2020-12-24T00:38:39.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:41Z', 'orderNumber': 1630000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (3 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 166, 'clock': 'PT00M48.90S', 'timeActual': '2020-12-24T00:38:42.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:48Z', 'orderNumber': 1640000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 164, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'T. McConnell REBOUND (Off:0 Def:1)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 167, 'clock': 'PT00M45.60S', 'timeActual': '2020-12-24T00:38:45.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1626167, 'x': 94.30026281208936, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 0.78, 'possession': 1610612754, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:38:51Z', 'orderNumber': 1650000, 'xLegacy': 8, 'yLegacy': 1, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'M. Turner cutting finger roll Layup (4 PTS) (T. McConnell 1 AST)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 1}, {'actionNumber': 169, 'clock': 'PT00M33.10S', 'timeActual': '2020-12-24T00:39:00.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1628995, 'x': 7.046649145860711, 'y': 49.82383578431372, 'side': 'left', 'shotDistance': 1.37, 'possession': 1610612752, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:39:05Z', 'orderNumber': 1670000, 'xLegacy': 1, 'yLegacy': 14, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS K. Knox II driving finger roll Layup', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 170, 'clock': 'PT00M30.80S', 'timeActual': '2020-12-24T00:39:02.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:39:05Z', 'orderNumber': 1680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 169, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'A. Holiday REBOUND (Off:0 Def:1)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 171, 'clock': 'PT00M26.30S', 'timeActual': '2020-12-24T00:39:07.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['fastbreak', 'pointsinthepaint'], 'personId': 1628988, 'x': 94.69448094612353, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 0.7, 'possession': 1610612754, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:39:15Z', 'orderNumber': 1690000, 'xLegacy': 6, 'yLegacy': -3, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Holiday driving finger roll Layup', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 172, 'clock': 'PT00M25.40S', 'timeActual': '2020-12-24T00:39:08.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:39:11Z', 'orderNumber': 1700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 171, 'reboundTotal': 1, 'reboundDefensiveTotal': 0, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:0)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 173, 'clock': 'PT00M25.40S', 'timeActual': '2020-12-24T00:39:10.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'tip', 'qualifiers': ['2ndchance', 'fastbreak', 'pointsinthepaint'], 'personId': 203926, 'x': 94.40999984741211, 'y': 50.0, 'side': 'right', 'shotDistance': 0.0, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '30', 'edited': '2020-12-24T00:39:21Z', 'orderNumber': 1710000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'D. McDermott tip DUNK (4 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 175, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:39:44.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['3freethrow'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '30', 'edited': '2020-12-24T00:42:31Z', 'officialId': 202053, 'orderNumber': 1730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'T. McConnell shooting personal FOUL (1 PF) (Quickley 3 FT)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 1630193], 'foulDrawnPlayerName': 'Quickley', 'foulDrawnPersonId': 1630193}, {'actionNumber': 177, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:40:01.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '30', 'edited': '2020-12-24T00:40:01Z', 'orderNumber': 1750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 178, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:41:23.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'instantreplay', 'subType': 'challenge', 'descriptor': 'support', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '30', 'edited': '2020-12-24T00:42:31Z', 'officialId': 200832, 'orderNumber': 1760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 179, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:42:41.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 3', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '31', 'edited': '2020-12-24T00:42:41Z', 'orderNumber': 1770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 1, 'description': 'I. Quickley Free Throw 1 of 3 (1 PTS)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 180, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:42:55.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 3', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '32', 'edited': '2020-12-24T00:42:55Z', 'orderNumber': 1780000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'I. Quickley Free Throw 2 of 3 (2 PTS)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 181, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:42:57.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '32', 'edited': '2020-12-24T00:43:02Z', 'orderNumber': 1790000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 182, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:42:57.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '32', 'edited': '2020-12-24T00:43:02Z', 'orderNumber': 1800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 183, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:43:21.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '3 of 3', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:43:21Z', 'orderNumber': 1810000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'I. Quickley Free Throw 3 of 3 (3 PTS)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 184, 'clock': 'PT00M00.40S', 'timeActual': '2020-12-24T00:43:30.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'running', 'qualifiers': [], 'personId': 1628988, 'x': 62.63140604467805, 'y': 79.97089460784314, 'side': 'right', 'shotDistance': 33.43, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:43:39Z', 'orderNumber': 1820000, 'xLegacy': 150, 'yLegacy': 299, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Holiday 33' running 3PT\", 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 185, 'clock': 'PT00M00.40S', 'timeActual': '2020-12-24T00:43:30.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:43:39Z', 'orderNumber': 1830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 184, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 186, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T00:43:33.9Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:43:33Z', 'orderNumber': 1840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period End', 'personIdsFilter': []}, {'actionNumber': 187, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:45:43.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:45:59Z', 'orderNumber': 1850000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 188, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:45:43.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:45:59Z', 'orderNumber': 1860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 189, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:45:43.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:45:59Z', 'orderNumber': 1870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 190, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:45:43.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:45:59Z', 'orderNumber': 1880000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 191, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:46:12.4Z', 'period': 2, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'start', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:46:12Z', 'orderNumber': 1890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period Start', 'personIdsFilter': []}, {'actionNumber': 192, 'clock': 'PT11M43.00S', 'timeActual': '2020-12-24T00:46:29.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating bank', 'qualifiers': [], 'personId': 1630193, 'x': 11.514454664914586, 'y': 27.27481617647059, 'side': 'left', 'shotDistance': 12.65, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:46:32Z', 'orderNumber': 1900000, 'xLegacy': 114, 'yLegacy': 56, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': \"I. Quickley 12' driving floating bank Jump Shot (5 PTS)\", 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 193, 'clock': 'PT11M26.00S', 'timeActual': '2020-12-24T00:46:45.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:46:48Z', 'orderNumber': 1910000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 3, 'description': 'D. Sabonis lost ball TURNOVER (3 TO)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1628995], 'stealPlayerName': 'Knox II', 'stealPersonId': 1628995}, {'actionNumber': 194, 'clock': 'PT11M26.00S', 'timeActual': '2020-12-24T00:46:45.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:51:03Z', 'orderNumber': 1920000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'K. Knox II STEAL (1 STL)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 195, 'clock': 'PT11M20.00S', 'timeActual': '2020-12-24T00:46:51.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround', 'qualifiers': ['fastbreak', 'pointsinthepaint', 'fromturnover'], 'personId': 1630167, 'x': 13.61695137976347, 'y': 52.51991421568627, 'side': 'left', 'shotDistance': 7.65, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:46:58Z', 'orderNumber': 1930000, 'xLegacy': -13, 'yLegacy': 75, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 7' turnaround Shot\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 196, 'clock': 'PT11M18.00S', 'timeActual': '2020-12-24T00:46:53.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:46:54Z', 'orderNumber': 1940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 195, 'reboundTotal': 2, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:1)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 197, 'clock': 'PT11M13.00S', 'timeActual': '2020-12-24T00:46:58.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1627734, 'x': 94.95729303547962, 'y': 50.55912990196079, 'side': 'right', 'shotDistance': 0.58, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:05Z', 'orderNumber': 1950000, 'xLegacy': 3, 'yLegacy': -5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': 'D. Sabonis cutting Layup (15 PTS) (T. McConnell 2 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 2}, {'actionNumber': 199, 'clock': 'PT10M59.00S', 'timeActual': '2020-12-24T00:47:21.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:37Z', 'officialId': 202053, 'orderNumber': 1970000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'J. Holiday personal FOUL (2 PF)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200, 1630167], 'foulDrawnPlayerName': 'Toppin', 'foulDrawnPersonId': 1630167}, {'actionNumber': 201, 'clock': 'PT10M56.00S', 'timeActual': '2020-12-24T00:47:36.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:39Z', 'orderNumber': 1990000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'K. Knox II bad pass TURNOVER (1 TO)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 203926], 'stealPlayerName': 'McDermott', 'stealPersonId': 203926}, {'actionNumber': 202, 'clock': 'PT10M56.00S', 'timeActual': '2020-12-24T00:47:36.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:38Z', 'orderNumber': 2000000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'D. McDermott STEAL (1 STL)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 203, 'clock': 'PT10M51.00S', 'timeActual': '2020-12-24T00:47:41.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover', 'fastbreak'], 'personId': 203200, 'x': 91.5407358738502, 'y': 4.725796568627451, 'side': 'right', 'shotDistance': 22.8, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:45Z', 'orderNumber': 2010000, 'xLegacy': -226, 'yLegacy': 27, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Holiday 3PT', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 204, 'clock': 'PT10M48.00S', 'timeActual': '2020-12-24T00:47:44.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:45Z', 'orderNumber': 2020000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 203, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'K. Knox II REBOUND (Off:0 Def:1)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 205, 'clock': 'PT10M41.00S', 'timeActual': '2020-12-24T00:47:50.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1628995, 'x': 32.013797634691194, 'y': 68.2061887254902, 'side': 'left', 'shotDistance': 26.45, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:58Z', 'orderNumber': 2030000, 'xLegacy': -91, 'yLegacy': 248, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS K. Knox II 26' 3PT\", 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 206, 'clock': 'PT10M39.00S', 'timeActual': '2020-12-24T00:47:52.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:58Z', 'orderNumber': 2040000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 205, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'J. Holiday REBOUND (Off:0 Def:2)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 207, 'clock': 'PT10M29.00S', 'timeActual': '2020-12-24T00:48:03.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1627734, 'x': 70.77858081471747, 'y': 79.23560049019608, 'side': 'right', 'shotDistance': 26.6, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:48:08Z', 'orderNumber': 2050000, 'xLegacy': 146, 'yLegacy': 222, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. Sabonis 26' 3PT\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 208, 'clock': 'PT10M24.00S', 'timeActual': '2020-12-24T00:48:08.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:48:08Z', 'orderNumber': 2060000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 207, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'K. Knox II REBOUND (Off:0 Def:2)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 209, 'clock': 'PT10M09.00S', 'timeActual': '2020-12-24T00:48:25.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:48:37Z', 'officialId': 200832, 'orderNumber': 2070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis shooting personal FOUL (1 PF) (Burks 2 FT)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 211, 'clock': 'PT10M09.00S', 'timeActual': '2020-12-24T00:48:57.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '36', 'edited': '2020-12-24T00:48:57Z', 'orderNumber': 2090000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'A. Burks Free Throw 1 of 2 (4 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 212, 'clock': 'PT10M09.00S', 'timeActual': '2020-12-24T00:49:18.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '37', 'edited': '2020-12-24T00:49:18Z', 'orderNumber': 2100000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'A. Burks Free Throw 2 of 2 (5 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 213, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:49:44.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '37', 'edited': '2020-12-24T00:49:52Z', 'officialId': 202053, 'orderNumber': 2110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'M. Robinson shooting personal FOUL (3 PF) (Sabonis 2 FT)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 215, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:50:11.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '37', 'edited': '2020-12-24T00:50:15Z', 'orderNumber': 2130000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 216, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:50:11.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '37', 'edited': '2020-12-24T00:50:15Z', 'orderNumber': 2140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 217, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:50:21.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '38', 'scoreAway': '37', 'edited': '2020-12-24T00:50:29Z', 'orderNumber': 2150000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 16, 'description': 'D. Sabonis Free Throw 1 of 2 (16 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 218, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:50:21.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '38', 'scoreAway': '37', 'edited': '2020-12-24T00:50:29Z', 'orderNumber': 2160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Free Throw 2 of 2', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 219, 'clock': 'PT09M45.00S', 'timeActual': '2020-12-24T00:50:22.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '37', 'edited': '2020-12-24T00:50:29Z', 'orderNumber': 2170000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 218, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:3)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 220, 'clock': 'PT09M34.00S', 'timeActual': '2020-12-24T00:50:42.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '37', 'edited': '2020-12-24T00:50:48Z', 'officialId': 200832, 'orderNumber': 2180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'A. Holiday personal FOUL (1 PF)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 222, 'clock': 'PT09M24.00S', 'timeActual': '2020-12-24T00:51:15.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 202692, 'x': 32.013797634691194, 'y': 68.45128676470588, 'side': 'left', 'shotDistance': 26.5, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:20Z', 'orderNumber': 2200000, 'xLegacy': -92, 'yLegacy': 248, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': \"A. Burks 26' 3PT pullup (8 PTS)\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 223, 'clock': 'PT09M09.00S', 'timeActual': '2020-12-24T00:51:28.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203926, 'x': 67.36202365308804, 'y': 48.84344362745098, 'side': 'right', 'shotDistance': 25.44, 'possession': 1610612754, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:33Z', 'orderNumber': 2210000, 'xLegacy': -6, 'yLegacy': 254, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 25' pullup 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 224, 'clock': 'PT09M06.00S', 'timeActual': '2020-12-24T00:51:31.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:33Z', 'orderNumber': 2220000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 223, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'A. Burks REBOUND (Off:0 Def:1)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 225, 'clock': 'PT09M04.00S', 'timeActual': '2020-12-24T00:51:34.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:38Z', 'orderNumber': 2230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'A. Burks bad pass TURNOVER (1 TO)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1627734], 'stealPlayerName': 'Sabonis', 'stealPersonId': 1627734}, {'actionNumber': 226, 'clock': 'PT09M04.00S', 'timeActual': '2020-12-24T00:51:34.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:35Z', 'orderNumber': 2240000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'D. Sabonis STEAL (1 STL)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 227, 'clock': 'PT09M02.00S', 'timeActual': '2020-12-24T00:51:36.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'finger roll', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 1628988, 'x': 93.38042049934296, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 1.17, 'possession': 1610612754, 'scoreHome': '40', 'scoreAway': '40', 'edited': '2020-12-24T00:51:42Z', 'orderNumber': 2250000, 'xLegacy': 6, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'A. Holiday finger roll Layup (2 PTS) (D. Sabonis 1 AST)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 1}, {'actionNumber': 229, 'clock': 'PT08M42.00S', 'timeActual': '2020-12-24T00:51:55.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'fadeaway', 'qualifiers': ['pointsinthepaint'], 'personId': 202692, 'x': 17.16491458607096, 'y': 54.23560049019608, 'side': 'left', 'shotDistance': 11.09, 'possession': 1610612752, 'scoreHome': '40', 'scoreAway': '42', 'edited': '2020-12-24T00:52:02Z', 'orderNumber': 2270000, 'xLegacy': -21, 'yLegacy': 109, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': \"A. Burks 11' fadeaway Jump Shot (10 PTS)\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 230, 'clock': 'PT08M30.00S', 'timeActual': '2020-12-24T00:52:08.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203926, 'x': 94.95729303547962, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 0.92, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:52:11Z', 'orderNumber': 2280000, 'xLegacy': 8, 'yLegacy': -5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'D. McDermott driving finger roll Layup (6 PTS) (D. Sabonis 2 AST)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 2}, {'actionNumber': 232, 'clock': 'PT08M09.00S', 'timeActual': '2020-12-24T00:52:29.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 31.35676741130092, 'y': 73.10814950980392, 'side': 'left', 'shotDistance': 26.84, 'possession': 1610612752, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:52:33Z', 'orderNumber': 2300000, 'xLegacy': -116, 'yLegacy': 242, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 26' 3PT\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 233, 'clock': 'PT08M06.00S', 'timeActual': '2020-12-24T00:52:32.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:52:33Z', 'orderNumber': 2310000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 232, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'T. McConnell REBOUND (Off:0 Def:2)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 234, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:52:40.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:52:51Z', 'officialId': 200832, 'orderNumber': 2320000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'J. Randle shooting personal FOUL (2 PF) (Sabonis 2 FT)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 236, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:13.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:53:13Z', 'orderNumber': 2340000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Free Throw 1 of 2', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 237, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:13.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:53:13Z', 'orderNumber': 2350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 236, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 238, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:13.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:53:17Z', 'orderNumber': 2360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 239, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:13.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:53:17Z', 'orderNumber': 2370000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. Warren', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 240, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:30.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '43', 'scoreAway': '42', 'edited': '2020-12-24T00:53:30Z', 'orderNumber': 2380000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 17, 'description': 'D. Sabonis Free Throw 2 of 2 (17 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 241, 'clock': 'PT07M46.00S', 'timeActual': '2020-12-24T00:53:43.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'step back', 'qualifiers': [], 'personId': 1630193, 'x': 24.26084099868594, 'y': 28.010110294117645, 'side': 'left', 'shotDistance': 20.72, 'possession': 1610612752, 'scoreHome': '43', 'scoreAway': '42', 'edited': '2020-12-24T00:53:46Z', 'orderNumber': 2390000, 'xLegacy': 110, 'yLegacy': 176, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS I. Quickley 20' step back Shot\", 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 242, 'clock': 'PT07M44.00S', 'timeActual': '2020-12-24T00:53:45.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '43', 'scoreAway': '42', 'edited': '2020-12-24T00:53:46Z', 'orderNumber': 2400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 241, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'A. Holiday REBOUND (Off:0 Def:2)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 243, 'clock': 'PT07M36.00S', 'timeActual': '2020-12-24T00:53:53.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203926, 'x': 95.0886990801577, 'y': 55.21599264705882, 'side': 'right', 'shotDistance': 2.68, 'possession': 1610612754, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:53:56Z', 'orderNumber': 2410000, 'xLegacy': 26, 'yLegacy': -6, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'D. McDermott cutting finger roll Layup (8 PTS) (D. Sabonis 3 AST)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 3}, {'actionNumber': 245, 'clock': 'PT07M30.00S', 'timeActual': '2020-12-24T00:54:02.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'out-of-bounds', 'descriptor': 'step', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:54:07Z', 'officialId': 1627541, 'orderNumber': 2430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'K. Knox II step out-of-bounds TURNOVER (2 TO)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 246, 'clock': 'PT07M15.00S', 'timeActual': '2020-12-24T00:54:27.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'out-of-bounds', 'descriptor': 'lost ball', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:54:32Z', 'officialId': 1627541, 'orderNumber': 2440000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'D. McDermott lost ball out-of-bounds TURNOVER (1 TO)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 247, 'clock': 'PT07M04.00S', 'timeActual': '2020-12-24T00:54:54.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 1630167, 'x': 5.469776609724048, 'y': 83.15716911764706, 'side': 'left', 'shotDistance': 16.58, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:54:58Z', 'orderNumber': 2450000, 'xLegacy': -166, 'yLegacy': -1, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 16' Jump Shot\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 248, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T00:54:56.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:54:58Z', 'orderNumber': 2460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 247, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:2)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 249, 'clock': 'PT06M47.00S', 'timeActual': '2020-12-24T00:55:11.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:55:15Z', 'orderNumber': 2470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'A. Holiday bad pass TURNOVER (1 TO)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1628995], 'stealPlayerName': 'Knox II', 'stealPersonId': 1628995}, {'actionNumber': 250, 'clock': 'PT06M47.00S', 'timeActual': '2020-12-24T00:55:11.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:55:13Z', 'orderNumber': 2480000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'K. Knox II STEAL (2 STL)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 251, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:55:18.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:55:29Z', 'officialId': 1627541, 'orderNumber': 2490000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'T. McConnell personal FOUL (2 PF)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 1628995], 'foulDrawnPlayerName': 'Knox II', 'foulDrawnPersonId': 1628995}, {'actionNumber': 253, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:55:31.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:55:31Z', 'orderNumber': 2510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 254, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:57:52.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:58:03Z', 'orderNumber': 2520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 255, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:57:52.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:58:03Z', 'orderNumber': 2530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 256, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:57:52.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:58:03Z', 'orderNumber': 2540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 257, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:57:52.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:58:03Z', 'orderNumber': 2550000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Brogdon', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 258, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T00:58:35.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 202692, 'x': 6.1268068331143235, 'y': 52.27481617647059, 'side': 'left', 'shotDistance': 1.25, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '44', 'edited': '2020-12-24T00:58:40Z', 'orderNumber': 2560000, 'xLegacy': -11, 'yLegacy': 5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 12, 'description': 'A. Burks Layup (12 PTS) (J. Randle 5 AST)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 5}, {'actionNumber': 260, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T00:58:37.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '1freethrow'], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '44', 'edited': '2020-12-24T00:58:43Z', 'officialId': 200832, 'orderNumber': 2580000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'V. Oladipo shooting personal FOUL (1 PF) (Burks 1 FT)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 262, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T00:59:01.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': ['fromturnover'], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '45', 'edited': '2020-12-24T00:59:01Z', 'orderNumber': 2600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'A. Burks Free Throw 1 of 1 (13 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 263, 'clock': 'PT06M09.00S', 'timeActual': '2020-12-24T00:59:21.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround fadeaway', 'qualifiers': [], 'personId': 203506, 'x': 93.38042049934296, 'y': 72.12775735294117, 'side': 'right', 'shotDistance': 11.1, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:25Z', 'orderNumber': 2610000, 'xLegacy': 111, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': \"V. Oladipo 11' turnaround fadeaway Jump Shot (6 PTS)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 264, 'clock': 'PT05M54.00S', 'timeActual': '2020-12-24T00:59:36.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'alley-oop', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 7.703679369250986, 'y': 52.029718137254896, 'side': 'left', 'shotDistance': 2.23, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:41Z', 'orderNumber': 2620000, 'xLegacy': -10, 'yLegacy': 20, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle alley-oop Layup', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 265, 'clock': 'PT05M52.00S', 'timeActual': '2020-12-24T00:59:38.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:41Z', 'orderNumber': 2630000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 264, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:2)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 266, 'clock': 'PT05M49.00S', 'timeActual': '2020-12-24T00:59:41.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fastbreak'], 'personId': 203926, 'x': 75.77201051248358, 'y': 11.098345588235293, 'side': 'right', 'shotDistance': 26.18, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:46Z', 'orderNumber': 2640000, 'xLegacy': -195, 'yLegacy': 175, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 26' 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 267, 'clock': 'PT05M45.00S', 'timeActual': '2020-12-24T00:59:45.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:46Z', 'orderNumber': 2650000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 266, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'I. Quickley REBOUND (Off:0 Def:1)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 268, 'clock': 'PT05M39.00S', 'timeActual': '2020-12-24T00:59:50.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fastbreak'], 'personId': 1630167, 'x': 3.4986859395532193, 'y': 97.61795343137256, 'side': 'left', 'shotDistance': 23.89, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T00:59:55Z', 'orderNumber': 2660000, 'xLegacy': -238, 'yLegacy': -20, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'O. Toppin 3PT (3 PTS) (I. Quickley 1 AST)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167, 1630193], 'assistPlayerNameInitial': 'I. Quickley', 'assistPersonId': 1630193, 'assistTotal': 1}, {'actionNumber': 270, 'clock': 'PT05M22.00S', 'timeActual': '2020-12-24T01:00:08.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203506, 'x': 74.98357424441524, 'y': 90.75520833333334, 'side': 'right', 'shotDistance': 27.37, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:14Z', 'orderNumber': 2680000, 'xLegacy': 204, 'yLegacy': 183, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS V. Oladipo 27' pullup 3PT\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 271, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:11.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:14Z', 'orderNumber': 2690000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 270, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 272, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:12.9Z', 'period': 2, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:12Z', 'orderNumber': 2700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 273, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2710000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 274, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2720000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: D. McDermott', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 275, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 276, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2740000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 277, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 278, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 279, 'clock': 'PT05M09.00S', 'timeActual': '2020-12-24T01:00:45.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:54Z', 'officialId': 200832, 'orderNumber': 2770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'V. Oladipo personal FOUL (2 PF) (Barrett 2 FT)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1629628], 'foulDrawnPlayerName': 'Barrett', 'foulDrawnPersonId': 1629628}, {'actionNumber': 281, 'clock': 'PT05M09.00S', 'timeActual': '2020-12-24T01:01:12.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:01:12Z', 'orderNumber': 2790000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS R. Barrett Free Throw 1 of 2', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 282, 'clock': 'PT05M09.00S', 'timeActual': '2020-12-24T01:01:12.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:01:12Z', 'orderNumber': 2800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 281, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 283, 'clock': 'PT05M09.00S', 'timeActual': '2020-12-24T01:01:25.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:01:25Z', 'orderNumber': 2810000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 11, 'description': 'R. Barrett Free Throw 2 of 2 (11 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 284, 'clock': 'PT04M56.00S', 'timeActual': '2020-12-24T01:01:47.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:01:55Z', 'officialId': 202053, 'orderNumber': 2820000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'R. Barrett personal FOUL (2 PF)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 1626167], 'foulDrawnPlayerName': 'Turner', 'foulDrawnPersonId': 1626167}, {'actionNumber': 286, 'clock': 'PT04M45.00S', 'timeActual': '2020-12-24T01:02:24.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1627763, 'x': 73.01248357424441, 'y': 85.11795343137256, 'side': 'right', 'shotDistance': 26.71, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:28Z', 'orderNumber': 2840000, 'xLegacy': 176, 'yLegacy': 201, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Brogdon 26' pullup 3PT\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 287, 'clock': 'PT04M41.00S', 'timeActual': '2020-12-24T01:02:28.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:28Z', 'orderNumber': 2850000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 286, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'A. Burks REBOUND (Off:0 Def:2)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 288, 'clock': 'PT04M26.00S', 'timeActual': '2020-12-24T01:02:42.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1630193, 'x': 18.347568988173457, 'y': 96.6375612745098, 'side': 'left', 'shotDistance': 26.23, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:47Z', 'orderNumber': 2860000, 'xLegacy': -233, 'yLegacy': 120, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS I. Quickley 26' pullup 3PT\", 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 289, 'clock': 'PT04M25.00S', 'timeActual': '2020-12-24T01:02:43.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:47Z', 'orderNumber': 2870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 288, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'M. Turner REBOUND (Off:0 Def:1)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 290, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T01:02:49.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 203933, 'x': 93.77463863337714, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 0.98, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:56Z', 'orderNumber': 2880000, 'xLegacy': 8, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS T. Warren driving floating Shot', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 291, 'clock': 'PT04M18.00S', 'timeActual': '2020-12-24T01:02:50.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:56Z', 'orderNumber': 2890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 290, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'O. Toppin REBOUND (Off:0 Def:1)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 292, 'clock': 'PT04M13.00S', 'timeActual': '2020-12-24T01:02:55.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1629628, 'x': 5.601182654402102, 'y': 50.55912990196079, 'side': 'left', 'shotDistance': 0.28, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '51', 'edited': '2020-12-24T01:03:03Z', 'orderNumber': 2900000, 'xLegacy': -3, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'R. Barrett cutting DUNK (13 PTS) (O. Toppin 1 AST)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 1630167], 'assistPlayerNameInitial': 'O. Toppin', 'assistPersonId': 1630167, 'assistTotal': 1}, {'actionNumber': 294, 'clock': 'PT04M00.00S', 'timeActual': '2020-12-24T01:03:08.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1627763, 'x': 66.17936925098554, 'y': 46.392463235294116, 'side': 'right', 'shotDistance': 26.6, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '51', 'edited': '2020-12-24T01:03:14Z', 'orderNumber': 2920000, 'xLegacy': -18, 'yLegacy': 265, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 13, 'description': \"M. Brogdon 26' 3PT pullup (13 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 295, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:03:22.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '51', 'edited': '2020-12-24T01:03:29Z', 'officialId': 1627541, 'orderNumber': 2930000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'V. Oladipo personal FOUL (3 PF) (Burks 2 FT)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 297, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:03:54.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '52', 'edited': '2020-12-24T01:03:54Z', 'orderNumber': 2950000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 14, 'description': 'A. Burks Free Throw 1 of 2 (14 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 298, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:03:55.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '52', 'edited': '2020-12-24T01:03:57Z', 'orderNumber': 2960000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 299, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:03:55.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '52', 'edited': '2020-12-24T01:03:57Z', 'orderNumber': 2970000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 300, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:04:17.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '53', 'edited': '2020-12-24T01:04:17Z', 'orderNumber': 2980000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 15, 'description': 'A. Burks Free Throw 2 of 2 (15 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 301, 'clock': 'PT03M41.00S', 'timeActual': '2020-12-24T01:04:29.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'offensive', 'descriptor': 'off-the-ball', 'qualifiers': ['inpenalty'], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '53', 'edited': '2020-12-24T01:04:43Z', 'officialId': 200832, 'orderNumber': 2990000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'M. Turner off-the-ball offensive FOUL (1 PF)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 1629628], 'foulDrawnPlayerName': 'Barrett', 'foulDrawnPersonId': 1629628}, {'actionNumber': 303, 'clock': 'PT03M41.00S', 'timeActual': '2020-12-24T01:04:29.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '53', 'edited': '2020-12-24T01:04:29Z', 'officialId': 200832, 'orderNumber': 3010000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'M. Turner offensive foul TURNOVER (2 TO)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 304, 'clock': 'PT03M32.00S', 'timeActual': '2020-12-24T01:04:52.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'floating', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 202692, 'x': 19.398817345597898, 'y': 49.08854166666667, 'side': 'left', 'shotDistance': 12.99, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:04:59Z', 'orderNumber': 3020000, 'xLegacy': 5, 'yLegacy': 130, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 17, 'description': \"A. Burks 12' floating Jump Shot (17 PTS) (J. Randle 6 AST)\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 6}, {'actionNumber': 305, 'clock': 'PT03M15.00S', 'timeActual': '2020-12-24T01:05:11.9Z', 'period': 2, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:11Z', 'orderNumber': 3030000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 307, 'clock': 'PT03M12.00S', 'timeActual': '2020-12-24T01:05:28.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint'], 'personId': 1628988, 'x': 93.77463863337714, 'y': 50.55912990196079, 'side': 'right', 'shotDistance': 0.66, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:32Z', 'orderNumber': 3040000, 'xLegacy': 3, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Holiday cutting Layup', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 308, 'clock': 'PT03M10.00S', 'timeActual': '2020-12-24T01:05:30.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:32Z', 'orderNumber': 3050000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 307, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'A. Holiday REBOUND (Off:1 Def:2)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 309, 'clock': 'PT03M09.00S', 'timeActual': '2020-12-24T01:05:32.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['2ndchance'], 'personId': 203200, 'x': 91.14651773981603, 'y': 96.14736519607843, 'side': 'right', 'shotDistance': 23.27, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:36Z', 'orderNumber': 3060000, 'xLegacy': 231, 'yLegacy': 31, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Holiday 3PT', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 310, 'clock': 'PT03M07.00S', 'timeActual': '2020-12-24T01:05:34.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:34Z', 'orderNumber': 3070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 309, 'reboundTotal': 4, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 2, 'description': 'M. Brogdon REBOUND (Off:2 Def:2)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 311, 'clock': 'PT03M05.00S', 'timeActual': '2020-12-24T01:05:36.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['2ndchance'], 'personId': 1628988, 'x': 67.62483574244416, 'y': 70.16697303921569, 'side': 'right', 'shotDistance': 27.12, 'possession': 1610612754, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:05:41Z', 'orderNumber': 3080000, 'xLegacy': 101, 'yLegacy': 252, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': \"A. Holiday 27' 3PT (5 PTS) (M. Brogdon 5 AST)\", 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 5}, {'actionNumber': 313, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:05:42.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:05:42Z', 'orderNumber': 3100000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'NYK Timeout', 'personIdsFilter': []}, {'actionNumber': 314, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:08:04.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:08:22Z', 'orderNumber': 3110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 315, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:08:04.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:08:22Z', 'orderNumber': 3120000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: I. Quickley', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 316, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:08:04.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:08:22Z', 'orderNumber': 3130000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 317, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:08:04.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:08:22Z', 'orderNumber': 3140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 318, 'clock': 'PT02M46.00S', 'timeActual': '2020-12-24T01:08:53.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 6.915243101182654, 'y': 50.55912990196079, 'side': 'left', 'shotDistance': 1.28, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '57', 'edited': '2020-12-24T01:08:56Z', 'orderNumber': 3150000, 'xLegacy': -3, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': 'R. Barrett Layup (15 PTS) (E. Payton 1 AST)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203901], 'assistPlayerNameInitial': 'E. Payton', 'assistPersonId': 203901, 'assistTotal': 1}, {'actionNumber': 320, 'clock': 'PT02M30.00S', 'timeActual': '2020-12-24T01:09:09.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': ['pointsinthepaint'], 'personId': 203933, 'x': 93.51182654402102, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 1.07, 'possession': 1610612754, 'scoreHome': '53', 'scoreAway': '57', 'edited': '2020-12-24T01:09:13Z', 'orderNumber': 3170000, 'xLegacy': 6, 'yLegacy': 8, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS T. Warren pullup Shot - blocked', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 1630167], 'blockPlayerName': 'Toppin', 'blockPersonId': 1630167}, {'actionNumber': 321, 'clock': 'PT02M30.00S', 'timeActual': '2020-12-24T01:09:09.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '53', 'scoreAway': '57', 'edited': '2020-12-24T01:09:11Z', 'orderNumber': 3180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'O. Toppin BLOCK (1 BLK)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 322, 'clock': 'PT02M28.00S', 'timeActual': '2020-12-24T01:09:11.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '57', 'edited': '2020-12-24T01:09:13Z', 'orderNumber': 3190000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 320, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:4)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 323, 'clock': 'PT02M22.00S', 'timeActual': '2020-12-24T01:09:17.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1629628, 'x': 5.338370565045992, 'y': 48.59834558823529, 'side': 'left', 'shotDistance': 0.74, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '59', 'edited': '2020-12-24T01:09:24Z', 'orderNumber': 3200000, 'xLegacy': 7, 'yLegacy': -2, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 17, 'description': 'R. Barrett running finger roll Layup (17 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 324, 'clock': 'PT02M06.00S', 'timeActual': '2020-12-24T01:09:35.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 93.77463863337714, 'y': 52.27481617647059, 'side': 'right', 'shotDistance': 1.29, 'possession': 1610612754, 'scoreHome': '55', 'scoreAway': '59', 'edited': '2020-12-24T01:09:45Z', 'orderNumber': 3210000, 'xLegacy': 11, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 19, 'description': 'D. Sabonis cutting Layup (19 PTS) (A. Holiday 1 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1628988], 'assistPlayerNameInitial': 'A. Holiday', 'assistPersonId': 1628988, 'assistTotal': 1}, {'actionNumber': 326, 'clock': 'PT02M06.00S', 'timeActual': '2020-12-24T01:09:38.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '55', 'scoreAway': '59', 'edited': '2020-12-24T01:09:51Z', 'officialId': 1627541, 'orderNumber': 3230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'A. Burks shooting personal FOUL (1 PF) (Sabonis 1 FT)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 328, 'clock': 'PT02M06.00S', 'timeActual': '2020-12-24T01:10:02.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '56', 'scoreAway': '59', 'edited': '2020-12-24T01:10:02Z', 'orderNumber': 3250000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 20, 'description': 'D. Sabonis Free Throw 1 of 1 (20 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 329, 'clock': 'PT01M52.00S', 'timeActual': '2020-12-24T01:10:17.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 6.915243101182654, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.53, 'possession': 1610612752, 'scoreHome': '56', 'scoreAway': '59', 'edited': '2020-12-24T01:10:20Z', 'orderNumber': 3260000, 'xLegacy': -9, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle driving Layup - blocked', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 330, 'clock': 'PT01M52.00S', 'timeActual': '2020-12-24T01:10:17.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '56', 'scoreAway': '59', 'edited': '2020-12-24T01:10:19Z', 'orderNumber': 3270000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (4 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 331, 'clock': 'PT01M50.00S', 'timeActual': '2020-12-24T01:10:19.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '56', 'scoreAway': '59', 'edited': '2020-12-24T01:10:20Z', 'orderNumber': 3280000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 329, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:3)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 332, 'clock': 'PT01M45.00S', 'timeActual': '2020-12-24T01:10:23.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1627734, 'x': 93.64323258869908, 'y': 51.78462009803921, 'side': 'right', 'shotDistance': 1.15, 'possession': 1610612754, 'scoreHome': '58', 'scoreAway': '59', 'edited': '2020-12-24T01:10:28Z', 'orderNumber': 3290000, 'xLegacy': 9, 'yLegacy': 7, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 22, 'description': 'D. Sabonis cutting DUNK (22 PTS) (A. Holiday 2 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1628988], 'assistPlayerNameInitial': 'A. Holiday', 'assistPersonId': 1628988, 'assistTotal': 2}, {'actionNumber': 334, 'clock': 'PT01M24.00S', 'timeActual': '2020-12-24T01:10:45.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 6.521024967148489, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.25, 'possession': 1610612752, 'scoreHome': '58', 'scoreAway': '61', 'edited': '2020-12-24T01:10:48Z', 'orderNumber': 3310000, 'xLegacy': -9, 'yLegacy': 9, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 7, 'description': 'J. Randle driving finger roll Layup (7 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 335, 'clock': 'PT01M16.00S', 'timeActual': '2020-12-24T01:10:55.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 88.25558475689881, 'y': 44.18658088235294, 'side': 'right', 'shotDistance': 6.48, 'possession': 1610612754, 'scoreHome': '60', 'scoreAway': '61', 'edited': '2020-12-24T01:10:59Z', 'orderNumber': 3320000, 'xLegacy': -29, 'yLegacy': 58, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': \"M. Brogdon 6' driving floating Jump Shot (15 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 336, 'clock': 'PT01M16.00S', 'timeActual': '2020-12-24T01:11:01.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '1freethrow'], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '60', 'scoreAway': '61', 'edited': '2020-12-24T01:11:10Z', 'officialId': 202053, 'orderNumber': 3330000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'E. Payton shooting personal FOUL (2 PF) (Brogdon 1 FT)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1627763], 'foulDrawnPlayerName': 'Brogdon', 'foulDrawnPersonId': 1627763}, {'actionNumber': 338, 'clock': 'PT01M16.00S', 'timeActual': '2020-12-24T01:11:18.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '61', 'edited': '2020-12-24T01:11:18Z', 'orderNumber': 3350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 16, 'description': 'M. Brogdon Free Throw 1 of 1 (16 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 339, 'clock': 'PT01M04.00S', 'timeActual': '2020-12-24T01:11:31.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1629628, 'x': 3.235873850197109, 'y': 99.08854166666666, 'side': 'left', 'shotDistance': 24.64, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '64', 'edited': '2020-12-24T01:11:35Z', 'orderNumber': 3360000, 'xLegacy': -245, 'yLegacy': -22, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 20, 'description': \"R. Barrett 24' 3PT (20 PTS) (J. Randle 7 AST)\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 7}, {'actionNumber': 341, 'clock': 'PT00M51.60S', 'timeActual': '2020-12-24T01:11:44.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 94.56307490144546, 'y': 51.78462009803921, 'side': 'right', 'shotDistance': 0.9, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '64', 'edited': '2020-12-24T01:11:47Z', 'orderNumber': 3380000, 'xLegacy': 9, 'yLegacy': -1, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving Layup', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 342, 'clock': 'PT00M49.80S', 'timeActual': '2020-12-24T01:11:46.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '64', 'edited': '2020-12-24T01:11:47Z', 'orderNumber': 3390000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 341, 'reboundTotal': 5, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:5)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 343, 'clock': 'PT00M46.70S', 'timeActual': '2020-12-24T01:11:49.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running reverse', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 202692, 'x': 6.652431011826544, 'y': 51.049325980392155, 'side': 'left', 'shotDistance': 1.13, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:00Z', 'orderNumber': 3400000, 'xLegacy': -5, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 19, 'description': 'A. Burks running reverse Layup (19 PTS) (J. Randle 8 AST)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 8}, {'actionNumber': 345, 'clock': 'PT00M35.50S', 'timeActual': '2020-12-24T01:12:02.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203933, 'x': 90.22667542706965, 'y': 3.990502450980392, 'side': 'right', 'shotDistance': 23.34, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:06Z', 'orderNumber': 3420000, 'xLegacy': -230, 'yLegacy': 39, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS T. Warren 3PT', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 346, 'clock': 'PT00M32.90S', 'timeActual': '2020-12-24T01:12:04.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:06Z', 'orderNumber': 3430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 345, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'O. Toppin REBOUND (Off:0 Def:2)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 347, 'clock': 'PT00M22.80S', 'timeActual': '2020-12-24T01:12:14.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203944, 'x': 32.40801576872536, 'y': 36.34344362745098, 'side': 'left', 'shotDistance': 26.12, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:19Z', 'orderNumber': 3440000, 'xLegacy': 68, 'yLegacy': 252, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS J. Randle 26' 3PT\", 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 348, 'clock': 'PT00M19.60S', 'timeActual': '2020-12-24T01:12:18.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:18Z', 'orderNumber': 3450000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 347, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:4)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 349, 'clock': 'PT00M00.10S', 'timeActual': '2020-12-24T01:12:37.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 93.38042049934296, 'y': 51.049325980392155, 'side': 'right', 'shotDistance': 1.1, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:45Z', 'orderNumber': 3460000, 'xLegacy': 5, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving floating Shot - blocked', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 1630167], 'blockPlayerName': 'Toppin', 'blockPersonId': 1630167}, {'actionNumber': 350, 'clock': 'PT00M00.10S', 'timeActual': '2020-12-24T01:12:37.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:41Z', 'orderNumber': 3470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'O. Toppin BLOCK (2 BLK)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 351, 'clock': 'PT00M00.10S', 'timeActual': '2020-12-24T01:12:37.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:45Z', 'orderNumber': 3480000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 349, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 352, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T01:12:44.4Z', 'period': 2, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:44Z', 'orderNumber': 3490000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period End', 'personIdsFilter': []}, {'actionNumber': 353, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 354, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 355, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 356, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 357, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 358, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 203493, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3550000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: R. Bullock', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 359, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:28:05.5Z', 'period': 3, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'start', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3560000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period Start', 'personIdsFilter': []}, {'actionNumber': 360, 'clock': 'PT11M46.00S', 'timeActual': '2020-12-24T01:28:18.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203944, 'x': 77.61169513797634, 'y': 45.41207107843137, 'side': 'right', 'shotDistance': 15.97, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:24Z', 'orderNumber': 3570000, 'xLegacy': -23, 'yLegacy': 158, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS J. Randle 15' pullup Shot\", 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 361, 'clock': 'PT11M41.00S', 'timeActual': '2020-12-24T01:28:23.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:24Z', 'orderNumber': 3580000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 360, 'reboundTotal': 5, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 2, 'description': 'M. Brogdon REBOUND (Off:2 Def:3)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 362, 'clock': 'PT11M28.00S', 'timeActual': '2020-12-24T01:28:35.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 6.652431011826544, 'y': 51.049325980392155, 'side': 'left', 'shotDistance': 1.13, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:40Z', 'orderNumber': 3590000, 'xLegacy': -5, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Layup', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 363, 'clock': 'PT11M26.00S', 'timeActual': '2020-12-24T01:28:37.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:40Z', 'orderNumber': 3600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 362, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'E. Payton REBOUND (Off:0 Def:1)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 364, 'clock': 'PT11M19.00S', 'timeActual': '2020-12-24T01:28:48.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'out-of-bounds', 'descriptor': 'bad pass', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:56Z', 'officialId': 1627541, 'orderNumber': 3610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 3, 'description': 'E. Payton bad pass out-of-bounds TURNOVER (3 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 365, 'clock': 'PT11M02.00S', 'timeActual': '2020-12-24T01:29:13.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 203506, 'x': 5.075558475689881, 'y': 49.82383578431372, 'side': 'left', 'shotDistance': 0.49, 'possession': 1610612754, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:29:16Z', 'orderNumber': 3620000, 'xLegacy': 1, 'yLegacy': -5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'V. Oladipo cutting Layup (8 PTS) (D. Sabonis 4 AST)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 4}, {'actionNumber': 367, 'clock': 'PT10M42.00S', 'timeActual': '2020-12-24T01:29:35.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:29:42Z', 'officialId': 200832, 'orderNumber': 3640000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'T. Warren personal FOUL (1 PF)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 1629628], 'foulDrawnPlayerName': 'Barrett', 'foulDrawnPersonId': 1629628}, {'actionNumber': 369, 'clock': 'PT10M32.00S', 'timeActual': '2020-12-24T01:30:06.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'out-of-bounds', 'descriptor': 'step', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:30:11Z', 'officialId': 200832, 'orderNumber': 3660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 4, 'description': 'E. Payton step out-of-bounds TURNOVER (4 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 370, 'clock': 'PT10M20.00S', 'timeActual': '2020-12-24T01:30:27.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': ['fromturnover'], 'personId': 1627763, 'x': 22.026938239159, 'y': 3.2552083333333335, 'side': 'left', 'shotDistance': 28.02, 'possession': 1610612754, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:30:32Z', 'orderNumber': 3670000, 'xLegacy': 234, 'yLegacy': 155, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Brogdon 28' pullup 3PT\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 371, 'clock': 'PT10M17.00S', 'timeActual': '2020-12-24T01:30:30.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:30:32Z', 'orderNumber': 3680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 370, 'reboundTotal': 6, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:6)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 372, 'clock': 'PT10M00.00S', 'timeActual': '2020-12-24T01:30:47.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 93.38042049934296, 'y': 51.78462009803921, 'side': 'right', 'shotDistance': 1.32, 'possession': 1610612752, 'scoreHome': '63', 'scoreAway': '68', 'edited': '2020-12-24T01:30:51Z', 'orderNumber': 3690000, 'xLegacy': 9, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 9, 'description': 'J. Randle driving finger roll Layup (9 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 373, 'clock': 'PT09M44.00S', 'timeActual': '2020-12-24T01:31:02.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup bank', 'qualifiers': [], 'personId': 203506, 'x': 12.434296977660972, 'y': 33.64736519607843, 'side': 'left', 'shotDistance': 10.41, 'possession': 1610612754, 'scoreHome': '65', 'scoreAway': '68', 'edited': '2020-12-24T01:31:05Z', 'orderNumber': 3700000, 'xLegacy': 82, 'yLegacy': 64, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': \"V. Oladipo 10' pullup bank Jump Shot (10 PTS)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 374, 'clock': 'PT09M34.00S', 'timeActual': '2020-12-24T01:31:13.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203901, 'x': 84.31340341655716, 'y': 96.39246323529412, 'side': 'right', 'shotDistance': 25.07, 'possession': 1610612752, 'scoreHome': '65', 'scoreAway': '71', 'edited': '2020-12-24T01:31:19Z', 'orderNumber': 3710000, 'xLegacy': 232, 'yLegacy': 95, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': \"E. Payton 25' 3PT (5 PTS) (J. Randle 9 AST)\", 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 9}, {'actionNumber': 376, 'clock': 'PT09M15.00S', 'timeActual': '2020-12-24T01:31:31.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203506, 'x': 32.670827858081466, 'y': 66.49050245098039, 'side': 'left', 'shotDistance': 26.76, 'possession': 1610612754, 'scoreHome': '68', 'scoreAway': '71', 'edited': '2020-12-24T01:31:36Z', 'orderNumber': 3730000, 'xLegacy': -82, 'yLegacy': 255, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 13, 'description': \"V. Oladipo 26' 3PT pullup (13 PTS)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 377, 'clock': 'PT09M01.00S', 'timeActual': '2020-12-24T01:31:45.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 203901, 'x': 84.31340341655716, 'y': 54.72579656862745, 'side': 'right', 'shotDistance': 9.79, 'possession': 1610612752, 'scoreHome': '68', 'scoreAway': '71', 'edited': '2020-12-24T01:31:49Z', 'orderNumber': 3740000, 'xLegacy': 24, 'yLegacy': 95, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS E. Payton 9' driving floating Shot\", 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 378, 'clock': 'PT09M00.00S', 'timeActual': '2020-12-24T01:31:46.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '68', 'scoreAway': '71', 'edited': '2020-12-24T01:31:49Z', 'orderNumber': 3750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 377, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'T. Warren REBOUND (Off:0 Def:1)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 379, 'clock': 'PT08M46.00S', 'timeActual': '2020-12-24T01:32:03.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '68', 'scoreAway': '71', 'edited': '2020-12-24T01:32:09Z', 'officialId': 200832, 'orderNumber': 3760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'J. Randle personal FOUL (3 PF)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 381, 'clock': 'PT08M44.00S', 'timeActual': '2020-12-24T01:32:23.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'reverse', 'qualifiers': ['pointsinthepaint'], 'personId': 203506, 'x': 5.995400788436268, 'y': 49.82383578431372, 'side': 'left', 'shotDistance': 0.4, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '71', 'edited': '2020-12-24T01:32:27Z', 'orderNumber': 3780000, 'xLegacy': 1, 'yLegacy': 4, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': 'V. Oladipo reverse Layup (15 PTS) (M. Brogdon 6 AST)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 6}, {'actionNumber': 383, 'clock': 'PT08M26.00S', 'timeActual': '2020-12-24T01:32:41.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 87.72996057818659, 'y': 54.48069852941176, 'side': 'right', 'shotDistance': 6.67, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '73', 'edited': '2020-12-24T01:32:45Z', 'orderNumber': 3800000, 'xLegacy': 22, 'yLegacy': 63, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 22, 'description': \"R. Barrett 6' driving floating Jump Shot (22 PTS) (E. Payton 2 AST)\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203901], 'assistPlayerNameInitial': 'E. Payton', 'assistPersonId': 203901, 'assistTotal': 2}, {'actionNumber': 385, 'clock': 'PT08M12.00S', 'timeActual': '2020-12-24T01:32:54.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203933, 'x': 22.946780551905388, 'y': 34.38265931372549, 'side': 'left', 'shotDistance': 18.09, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '73', 'edited': '2020-12-24T01:32:58Z', 'orderNumber': 3820000, 'xLegacy': 78, 'yLegacy': 163, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS T. Warren 18' pullup Shot\", 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 386, 'clock': 'PT08M11.00S', 'timeActual': '2020-12-24T01:32:55.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '73', 'edited': '2020-12-24T01:32:58Z', 'orderNumber': 3830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 385, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:3)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 387, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T01:33:05.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 203933, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '73', 'edited': '2020-12-24T01:33:13Z', 'officialId': 200832, 'orderNumber': 3840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'T. Warren shooting personal FOUL (2 PF) (Robinson 2 FT)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 1629011], 'foulDrawnPlayerName': 'Robinson', 'foulDrawnPersonId': 1629011}, {'actionNumber': 389, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T01:33:33.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:33:53Z', 'orderNumber': 3860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 1, 'description': 'M. Robinson Free Throw 1 of 2 (1 PTS)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 390, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T01:33:33.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:33:53Z', 'orderNumber': 3870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS M. Robinson Free Throw 2 of 2', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 391, 'clock': 'PT08M00.00S', 'timeActual': '2020-12-24T01:33:35.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:33:53Z', 'orderNumber': 3880000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 390, 'reboundTotal': 5, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:5)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 392, 'clock': 'PT07M48.00S', 'timeActual': '2020-12-24T01:34:10.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'loose ball', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:18Z', 'officialId': 202053, 'orderNumber': 3890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'R. Bullock loose ball personal FOUL (2 PF)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 203506], 'foulDrawnPlayerName': 'Oladipo', 'foulDrawnPersonId': 203506}, {'actionNumber': 394, 'clock': 'PT07M41.00S', 'timeActual': '2020-12-24T01:34:38.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 5.995400788436268, 'y': 49.57873774509804, 'side': 'left', 'shotDistance': 0.44, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:42Z', 'orderNumber': 3910000, 'xLegacy': 2, 'yLegacy': 4, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving finger roll Layup - blocked', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 1629011], 'blockPlayerName': 'Robinson', 'blockPersonId': 1629011}, {'actionNumber': 395, 'clock': 'PT07M41.00S', 'timeActual': '2020-12-24T01:34:38.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:40Z', 'orderNumber': 3920000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Robinson BLOCK (1 BLK)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 396, 'clock': 'PT07M41.00S', 'timeActual': '2020-12-24T01:34:38.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:42Z', 'orderNumber': 3930000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 394, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 397, 'clock': 'PT07M41.00S', 'timeActual': '2020-12-24T01:34:42.7Z', 'period': 3, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:42Z', 'orderNumber': 3940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 398, 'clock': 'PT07M40.00S', 'timeActual': '2020-12-24T01:34:50.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 203506, 'x': 12.697109067017081, 'y': 35.60814950980392, 'side': 'left', 'shotDistance': 9.83, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:34:55Z', 'orderNumber': 3950000, 'xLegacy': 72, 'yLegacy': 67, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 17, 'description': \"V. Oladipo 9' Jump Shot (17 PTS) (M. Brogdon 7 AST)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 7}, {'actionNumber': 400, 'clock': 'PT07M22.00S', 'timeActual': '2020-12-24T01:35:07.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203901, 'x': 84.83902759526939, 'y': 76.04932598039215, 'side': 'right', 'shotDistance': 15.83, 'possession': 1610612752, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:12Z', 'orderNumber': 3970000, 'xLegacy': 130, 'yLegacy': 90, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS E. Payton 15' pullup Shot\", 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 401, 'clock': 'PT07M20.00S', 'timeActual': '2020-12-24T01:35:09.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:12Z', 'orderNumber': 3980000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 400, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'V. Oladipo REBOUND (Off:0 Def:2)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 402, 'clock': 'PT07M16.00S', 'timeActual': '2020-12-24T01:35:14.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203506, 'x': 7.30946123521682, 'y': 48.10814950980392, 'side': 'left', 'shotDistance': 1.88, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:25Z', 'orderNumber': 3990000, 'xLegacy': 9, 'yLegacy': 16, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS V. Oladipo driving finger roll Layup', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 403, 'clock': 'PT07M12.00S', 'timeActual': '2020-12-24T01:35:18.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:18Z', 'orderNumber': 4000000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 402, 'reboundTotal': 6, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 1, 'description': 'D. Sabonis REBOUND (Off:1 Def:5)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 404, 'clock': 'PT07M12.00S', 'timeActual': '2020-12-24T01:35:18.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'putback', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1627734, 'x': 5.590000152587891, 'y': 50.0, 'side': 'left', 'shotDistance': 0.0, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:18Z', 'orderNumber': 4010000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis putback Layup', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 405, 'clock': 'PT07M11.00S', 'timeActual': '2020-12-24T01:35:19.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:19Z', 'orderNumber': 4020000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 404, 'reboundTotal': 7, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:5)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 406, 'clock': 'PT07M09.00S', 'timeActual': '2020-12-24T01:35:21.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Hook', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1627734, 'x': 8.229303547963205, 'y': 48.84344362745098, 'side': 'left', 'shotDistance': 2.56, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:28Z', 'orderNumber': 4030000, 'xLegacy': 6, 'yLegacy': 25, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Hook', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 407, 'clock': 'PT07M07.00S', 'timeActual': '2020-12-24T01:35:23.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:28Z', 'orderNumber': 4040000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 406, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'M. Robinson REBOUND (Off:0 Def:3)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 408, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T01:35:30.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:42Z', 'officialId': 1627541, 'orderNumber': 4050000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 4, 'foulTechnicalTotal': 0, 'description': 'J. Randle offensive FOUL (4 PF)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1627763], 'foulDrawnPlayerName': 'Brogdon', 'foulDrawnPersonId': 1627763}, {'actionNumber': 410, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T01:35:30.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:30Z', 'officialId': 1627541, 'orderNumber': 4070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 4, 'description': 'J. Randle offensive foul TURNOVER (4 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 411, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T01:35:41.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:45Z', 'orderNumber': 4080000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 412, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T01:35:41.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:45Z', 'orderNumber': 4090000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 413, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T01:36:08.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 1627734, 'x': 5.732588699080158, 'y': 50.314031862745104, 'side': 'left', 'shotDistance': 0.21, 'possession': 1610612754, 'scoreHome': '74', 'scoreAway': '74', 'edited': '2020-12-24T01:36:13Z', 'orderNumber': 4100000, 'xLegacy': -2, 'yLegacy': 1, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 24, 'description': 'D. Sabonis cutting Layup (24 PTS) (V. Oladipo 1 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203506], 'assistPlayerNameInitial': 'V. Oladipo', 'assistPersonId': 203506, 'assistTotal': 1}, {'actionNumber': 415, 'clock': 'PT06M29.00S', 'timeActual': '2020-12-24T01:36:21.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 69.07030223390277, 'y': 17.47089460784314, 'side': 'right', 'shotDistance': 28.84, 'possession': 1610612752, 'scoreHome': '74', 'scoreAway': '77', 'edited': '2020-12-24T01:36:25Z', 'orderNumber': 4120000, 'xLegacy': -163, 'yLegacy': 238, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': \"O. Toppin 28' 3PT (6 PTS) (E. Payton 3 AST)\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167, 203901], 'assistPlayerNameInitial': 'E. Payton', 'assistPersonId': 203901, 'assistTotal': 3}, {'actionNumber': 417, 'clock': 'PT06M13.00S', 'timeActual': '2020-12-24T01:36:37.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 7.440867279894875, 'y': 52.76501225490197, 'side': 'left', 'shotDistance': 2.22, 'possession': 1610612754, 'scoreHome': '74', 'scoreAway': '77', 'edited': '2020-12-24T01:36:41Z', 'orderNumber': 4140000, 'xLegacy': -14, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving finger roll Layup - blocked', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 1629011], 'blockPlayerName': 'Robinson', 'blockPersonId': 1629011}, {'actionNumber': 418, 'clock': 'PT06M13.00S', 'timeActual': '2020-12-24T01:36:37.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '74', 'scoreAway': '77', 'edited': '2020-12-24T01:36:39Z', 'orderNumber': 4150000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Robinson BLOCK (2 BLK)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 419, 'clock': 'PT06M11.00S', 'timeActual': '2020-12-24T01:36:39.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '74', 'scoreAway': '77', 'edited': '2020-12-24T01:36:41Z', 'orderNumber': 4160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 417, 'reboundTotal': 2, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:1)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 420, 'clock': 'PT06M11.00S', 'timeActual': '2020-12-24T01:36:40.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'putback', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1626167, 'x': 5.590000152587891, 'y': 50.0, 'side': 'left', 'shotDistance': 0.0, 'possession': 1610612754, 'scoreHome': '76', 'scoreAway': '77', 'edited': '2020-12-24T01:36:40Z', 'orderNumber': 4170000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'M. Turner putback Layup (6 PTS)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 421, 'clock': 'PT05M56.00S', 'timeActual': '2020-12-24T01:36:55.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': [], 'personId': 1630167, 'x': 93.77463863337714, 'y': 68.45128676470588, 'side': 'right', 'shotDistance': 9.25, 'possession': 1610612752, 'scoreHome': '76', 'scoreAway': '77', 'edited': '2020-12-24T01:37:00Z', 'orderNumber': 4180000, 'xLegacy': 92, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 9' driving floating Shot\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 422, 'clock': 'PT05M53.00S', 'timeActual': '2020-12-24T01:36:58.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '76', 'scoreAway': '77', 'edited': '2020-12-24T01:37:00Z', 'orderNumber': 4190000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 421, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'V. Oladipo REBOUND (Off:0 Def:3)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 423, 'clock': 'PT05M49.00S', 'timeActual': '2020-12-24T01:37:02.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203933, 'x': 6.258212877792378, 'y': 52.029718137254896, 'side': 'left', 'shotDistance': 1.19, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:07Z', 'orderNumber': 4200000, 'xLegacy': -10, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'T. Warren cutting Layup (2 PTS) (V. Oladipo 2 AST)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 203506], 'assistPlayerNameInitial': 'V. Oladipo', 'assistPersonId': 203506, 'assistTotal': 2}, {'actionNumber': 425, 'clock': 'PT05M32.00S', 'timeActual': '2020-12-24T01:37:18.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 90.22667542706965, 'y': 3.990502450980392, 'side': 'right', 'shotDistance': 23.34, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:22Z', 'orderNumber': 4220000, 'xLegacy': -230, 'yLegacy': 39, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS O. Toppin 3PT', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 426, 'clock': 'PT05M28.00S', 'timeActual': '2020-12-24T01:37:22.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:22Z', 'orderNumber': 4230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 425, 'reboundTotal': 4, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 1, 'description': 'M. Robinson REBOUND (Off:1 Def:3)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 427, 'clock': 'PT05M24.00S', 'timeActual': '2020-12-24T01:37:26.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'step back', 'qualifiers': ['2ndchance'], 'personId': 203901, 'x': 88.78120893561103, 'y': 70.90226715686273, 'side': 'right', 'shotDistance': 11.72, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:30Z', 'orderNumber': 4240000, 'xLegacy': 105, 'yLegacy': 53, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS E. Payton 11' step back Shot\", 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 428, 'clock': 'PT05M21.00S', 'timeActual': '2020-12-24T01:37:29.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:30Z', 'orderNumber': 4250000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 427, 'reboundTotal': 6, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 2, 'description': 'M. Brogdon REBOUND (Off:2 Def:4)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 429, 'clock': 'PT05M21.00S', 'timeActual': '2020-12-24T01:37:32.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'take', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:39Z', 'officialId': 202053, 'orderNumber': 4260000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'E. Payton take personal FOUL (3 PF)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1627763], 'foulDrawnPlayerName': 'Brogdon', 'foulDrawnPersonId': 1627763}, {'actionNumber': 431, 'clock': 'PT05M21.00S', 'timeActual': '2020-12-24T01:37:40.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:40Z', 'orderNumber': 4280000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 432, 'clock': 'PT05M15.00S', 'timeActual': '2020-12-24T01:40:38.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203506, 'x': 33.459264126149804, 'y': 33.64736519607843, 'side': 'left', 'shotDistance': 27.45, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:40:43Z', 'orderNumber': 4290000, 'xLegacy': 82, 'yLegacy': 262, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS V. Oladipo 27' 3PT\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 433, 'clock': 'PT05M11.00S', 'timeActual': '2020-12-24T01:40:42.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:40:43Z', 'orderNumber': 4300000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 432, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:4)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 434, 'clock': 'PT04M54.00S', 'timeActual': '2020-12-24T01:40:58.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 92.46057818659659, 'y': 96.6375612745098, 'side': 'right', 'shotDistance': 23.39, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:41:01Z', 'orderNumber': 4310000, 'xLegacy': 233, 'yLegacy': 18, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS O. Toppin 3PT', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 435, 'clock': 'PT04M53.00S', 'timeActual': '2020-12-24T01:40:59.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:41:01Z', 'orderNumber': 4320000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 434, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:2)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 436, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:08.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': ['fastbreak', 'pointsinthepaint'], 'personId': 203933, 'x': 7.440867279894875, 'y': 34.13756127450981, 'side': 'left', 'shotDistance': 8.12, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:19Z', 'orderNumber': 4330000, 'xLegacy': 79, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': \"T. Warren 8' pullup Jump Shot (4 PTS) (V. Oladipo 3 AST)\", 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 203506], 'assistPlayerNameInitial': 'V. Oladipo', 'assistPersonId': 203506, 'assistTotal': 3}, {'actionNumber': 438, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:10.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'officialId': 1627541, 'orderNumber': 4350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'R. Barrett shooting personal FOUL (3 PF) (Warren 1 FT)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203933], 'foulDrawnPlayerName': 'Warren', 'foulDrawnPersonId': 203933}, {'actionNumber': 440, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:19.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'orderNumber': 4370000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 441, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:19.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'orderNumber': 4380000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 442, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:19.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'orderNumber': 4390000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 443, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:19.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'orderNumber': 4400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. McDermott', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 444, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:34.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:38Z', 'orderNumber': 4410000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 445, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:34.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:38Z', 'orderNumber': 4420000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 446, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:49.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': ['fastbreak'], 'personId': 203933, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:41:49Z', 'orderNumber': 4430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'T. Warren Free Throw 1 of 1 (5 PTS)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 447, 'clock': 'PT04M29.00S', 'timeActual': '2020-12-24T01:42:12.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'bank', 'qualifiers': ['pointsinthepaint'], 'personId': 1630167, 'x': 93.77463863337714, 'y': 52.27481617647059, 'side': 'right', 'shotDistance': 1.29, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:21Z', 'orderNumber': 4440000, 'xLegacy': 11, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS O. Toppin bank Shot', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 448, 'clock': 'PT04M26.00S', 'timeActual': '2020-12-24T01:42:15.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:21Z', 'orderNumber': 4450000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 447, 'reboundTotal': 8, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:6)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 449, 'clock': 'PT04M21.00S', 'timeActual': '2020-12-24T01:42:20.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fastbreak'], 'personId': 203200, 'x': 30.305519053876477, 'y': 71.39246323529412, 'side': 'left', 'shotDistance': 25.58, 'possession': 1610612754, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:25Z', 'orderNumber': 4460000, 'xLegacy': -107, 'yLegacy': 232, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS J. Holiday 25' 3PT\", 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 450, 'clock': 'PT04M17.00S', 'timeActual': '2020-12-24T01:42:24.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:25Z', 'orderNumber': 4470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 449, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'A. Burks REBOUND (Off:0 Def:3)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 451, 'clock': 'PT04M11.00S', 'timeActual': '2020-12-24T01:42:31.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:37Z', 'officialId': 1627541, 'orderNumber': 4480000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'D. McDermott personal FOUL (1 PF)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1629011], 'foulDrawnPlayerName': 'Robinson', 'foulDrawnPersonId': 1629011}, {'actionNumber': 453, 'clock': 'PT04M11.00S', 'timeActual': '2020-12-24T01:42:36.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:40Z', 'orderNumber': 4500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: T. Warren', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 454, 'clock': 'PT04M11.00S', 'timeActual': '2020-12-24T01:42:36.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:40Z', 'orderNumber': 4510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 455, 'clock': 'PT03M55.00S', 'timeActual': '2020-12-24T01:43:06.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'floating', 'qualifiers': [], 'personId': 1629628, 'x': 70.64717477003943, 'y': 49.333639705882355, 'side': 'right', 'shotDistance': 22.34, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:43:49Z', 'orderNumber': 4520000, 'xLegacy': -3, 'yLegacy': 223, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS R. Barrett 22' floating Shot\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 456, 'clock': 'PT03M52.00S', 'timeActual': '2020-12-24T01:43:09.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:43:11Z', 'orderNumber': 4530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 455, 'reboundTotal': 9, 'reboundDefensiveTotal': 7, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:7)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 457, 'clock': 'PT03M50.00S', 'timeActual': '2020-12-24T01:43:11.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['fastbreak', 'pointsinthepaint'], 'personId': 203200, 'x': 5.601182654402102, 'y': 51.049325980392155, 'side': 'left', 'shotDistance': 0.52, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '77', 'edited': '2020-12-24T01:45:11Z', 'orderNumber': 4540000, 'xLegacy': -5, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'J. Holiday running finger roll Layup (2 PTS) (V. Oladipo 4 AST)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200, 203506], 'assistPlayerNameInitial': 'V. Oladipo', 'assistPersonId': 203506, 'assistTotal': 4}, {'actionNumber': 459, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:43:15.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '77', 'edited': '2020-12-24T01:43:15Z', 'orderNumber': 4560000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'NYK Timeout', 'personIdsFilter': []}, {'actionNumber': 460, 'clock': 'PT03M34.00S', 'timeActual': '2020-12-24T01:46:22.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 72.22404730617609, 'y': 10.853247549019608, 'side': 'right', 'shotDistance': 28.6, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:46:30Z', 'orderNumber': 4570000, 'xLegacy': -196, 'yLegacy': 209, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 11, 'description': \"R. Bullock 28' 3PT (11 PTS) (R. Barrett 4 AST)\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 4}, {'actionNumber': 462, 'clock': 'PT03M17.00S', 'timeActual': '2020-12-24T01:46:49.9Z', 'period': 3, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:46:49Z', 'orderNumber': 4590000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 463, 'clock': 'PT03M06.00S', 'timeActual': '2020-12-24T01:47:11.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203926, 'x': 35.43035479632063, 'y': 19.921875, 'side': 'left', 'shotDistance': 31.83, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:17Z', 'orderNumber': 4600000, 'xLegacy': 150, 'yLegacy': 281, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 31' 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 464, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:47:15.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:15Z', 'orderNumber': 4610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 463, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'O. Toppin REBOUND (Off:0 Def:3)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 465, 'clock': 'PT02M51.00S', 'timeActual': '2020-12-24T01:47:25.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 202692, 'x': 65.25952693823915, 'y': 49.333639705882355, 'side': 'right', 'shotDistance': 27.41, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:29Z', 'orderNumber': 4620000, 'xLegacy': -3, 'yLegacy': 274, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Burks 27' pullup 3PT\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 466, 'clock': 'PT02M49.00S', 'timeActual': '2020-12-24T01:47:27.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:29Z', 'orderNumber': 4630000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 465, 'reboundTotal': 4, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:3)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 467, 'clock': 'PT02M39.00S', 'timeActual': '2020-12-24T01:47:38.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 6.1268068331143235, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.03, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:42Z', 'orderNumber': 4640000, 'xLegacy': -9, 'yLegacy': 5, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving finger roll Layup - blocked', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 202692], 'blockPlayerName': 'Burks', 'blockPersonId': 202692}, {'actionNumber': 468, 'clock': 'PT02M39.00S', 'timeActual': '2020-12-24T01:47:38.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:41Z', 'orderNumber': 4650000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'A. Burks BLOCK (1 BLK)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 469, 'clock': 'PT02M35.00S', 'timeActual': '2020-12-24T01:47:42.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:42Z', 'orderNumber': 4660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 467, 'reboundTotal': 5, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:5)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 470, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:47:45.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1629628, 'x': 94.1688567674113, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 0.69, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:48:26Z', 'orderNumber': 4670000, 'xLegacy': 6, 'yLegacy': 2, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Barrett driving Layup - blocked', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203200], 'blockPlayerName': 'Holiday', 'blockPersonId': 203200}, {'actionNumber': 471, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:47:45.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:49Z', 'orderNumber': 4680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'J. Holiday BLOCK (1 BLK)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 479, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:47:45.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:53:56Z', 'orderNumber': 4685000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 470, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 472, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:05.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:50:39Z', 'orderNumber': 4707500, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 473, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:05.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:50:39Z', 'orderNumber': 4718750, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 474, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:05.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:50:39Z', 'orderNumber': 4724375, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 475, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:05.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:50:39Z', 'orderNumber': 4727187, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 476, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:23.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'jumpball', 'subType': 'recovered', 'descriptor': 'heldball', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:52:49Z', 'orderNumber': 4730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'jumpBallRecoveredName': 'A. Holiday', 'jumpBallRecoverdPersonId': 1628988, 'side': None, 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 203200, 1629628], 'jumpBallWonPlayerName': 'Holiday', 'jumpBallWonPersonId': 203200, 'description': 'Jump Ball J. Holiday vs. R. Barrett: Tip to A. Holiday', 'jumpBallLostPlayerName': 'Barrett', 'jumpBallLostPersonId': 1629628}, {'actionNumber': 480, 'clock': 'PT02M08.00S', 'timeActual': '2020-12-24T01:48:43.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround', 'qualifiers': ['pointsinthepaint'], 'personId': 1626167, 'x': 7.440867279894875, 'y': 50.80422794117647, 'side': 'left', 'shotDistance': 1.79, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:48:47Z', 'orderNumber': 4760000, 'xLegacy': -4, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Turner turnaround Shot - blocked', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 1629011], 'blockPlayerName': 'Robinson', 'blockPersonId': 1629011}, {'actionNumber': 481, 'clock': 'PT02M08.00S', 'timeActual': '2020-12-24T01:48:43.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:48:45Z', 'orderNumber': 4770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Robinson BLOCK (3 BLK)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 482, 'clock': 'PT02M06.00S', 'timeActual': '2020-12-24T01:48:45.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:48:47Z', 'orderNumber': 4780000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 480, 'reboundTotal': 6, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:6)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 483, 'clock': 'PT01M56.00S', 'timeActual': '2020-12-24T01:48:56.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint'], 'personId': 1629011, 'x': 96.40275952693824, 'y': 53.255208333333336, 'side': 'right', 'shotDistance': 2.48, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:49:06Z', 'orderNumber': 4790000, 'xLegacy': 16, 'yLegacy': -19, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Robinson cutting Layup - blocked', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 530, 'clock': 'PT01M56.00S', 'timeActual': '2020-12-24T01:48:56.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:57:18Z', 'orderNumber': 4795000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (5 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 484, 'clock': 'PT01M54.00S', 'timeActual': '2020-12-24T01:48:58.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:57:18Z', 'orderNumber': 4800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 483, 'reboundTotal': 5, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 2, 'description': 'M. Robinson REBOUND (Off:2 Def:3)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 485, 'clock': 'PT01M54.00S', 'timeActual': '2020-12-24T01:48:59.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'tip', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1629011, 'x': 94.40999984741211, 'y': 50.0, 'side': 'right', 'shotDistance': 0.0, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:48:59Z', 'orderNumber': 4810000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'M. Robinson tip Layup (3 PTS)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 486, 'clock': 'PT01M43.00S', 'timeActual': '2020-12-24T01:49:09.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1628988, 'x': 36.61300919842313, 'y': 39.5297181372549, 'side': 'left', 'shotDistance': 29.64, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:14Z', 'orderNumber': 4820000, 'xLegacy': 52, 'yLegacy': 292, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Holiday 29' 3PT\", 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 487, 'clock': 'PT01M41.00S', 'timeActual': '2020-12-24T01:49:11.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:14Z', 'orderNumber': 4830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 486, 'reboundTotal': 6, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 2, 'description': 'M. Robinson REBOUND (Off:2 Def:4)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 488, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T01:49:22.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:28Z', 'officialId': 200832, 'orderNumber': 4840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'A. Holiday personal FOUL (2 PF)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1629628], 'foulDrawnPlayerName': 'Barrett', 'foulDrawnPersonId': 1629628}, {'actionNumber': 490, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T01:49:27.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:31Z', 'orderNumber': 4860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Brogdon', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 491, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T01:49:27.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:31Z', 'orderNumber': 4870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 492, 'clock': 'PT01M31.00S', 'timeActual': '2020-12-24T01:49:53.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1630167, 'x': 96.5341655716163, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 2.13, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:59Z', 'orderNumber': 4880000, 'xLegacy': 8, 'yLegacy': -20, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS O. Toppin driving finger roll Layup - blocked', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 493, 'clock': 'PT01M31.00S', 'timeActual': '2020-12-24T01:49:53.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:54Z', 'orderNumber': 4890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (6 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 494, 'clock': 'PT01M28.00S', 'timeActual': '2020-12-24T01:49:56.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:59Z', 'orderNumber': 4900000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 492, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'J. Holiday REBOUND (Off:0 Def:3)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 495, 'clock': 'PT01M25.00S', 'timeActual': '2020-12-24T01:50:00.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:50:33Z', 'officialId': 200832, 'orderNumber': 4910000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'A. Burks shooting personal FOUL (2 PF) (Holiday 2 FT)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203200], 'foulDrawnPlayerName': 'Holiday', 'foulDrawnPersonId': 203200}, {'actionNumber': 497, 'clock': 'PT01M25.00S', 'timeActual': '2020-12-24T01:50:34.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:50:34Z', 'orderNumber': 4930000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS J. Holiday Free Throw 1 of 2', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 498, 'clock': 'PT01M25.00S', 'timeActual': '2020-12-24T01:50:34.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:50:34Z', 'orderNumber': 4940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 497, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 499, 'clock': 'PT01M25.00S', 'timeActual': '2020-12-24T01:50:41.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '84', 'scoreAway': '82', 'edited': '2020-12-24T01:50:41Z', 'orderNumber': 4950000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'J. Holiday Free Throw 2 of 2 (3 PTS)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 500, 'clock': 'PT01M11.00S', 'timeActual': '2020-12-24T01:50:58.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 202692, 'x': 93.64323258869908, 'y': 49.08854166666667, 'side': 'right', 'shotDistance': 0.86, 'possession': 1610612752, 'scoreHome': '84', 'scoreAway': '82', 'edited': '2020-12-24T01:51:02Z', 'orderNumber': 4960000, 'xLegacy': -5, 'yLegacy': 7, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Burks driving Layup - blocked', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 501, 'clock': 'PT01M11.00S', 'timeActual': '2020-12-24T01:50:58.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '84', 'scoreAway': '82', 'edited': '2020-12-24T01:51:00Z', 'orderNumber': 4970000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (7 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 502, 'clock': 'PT01M08.00S', 'timeActual': '2020-12-24T01:51:01.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '84', 'scoreAway': '82', 'edited': '2020-12-24T01:51:02Z', 'orderNumber': 4980000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 500, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'J. Holiday REBOUND (Off:0 Def:4)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 503, 'clock': 'PT01M05.00S', 'timeActual': '2020-12-24T01:51:05.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203926, 'x': 4.681340341655716, 'y': 50.314031862745104, 'side': 'left', 'shotDistance': 0.86, 'possession': 1610612754, 'scoreHome': '86', 'scoreAway': '82', 'edited': '2020-12-24T01:51:10Z', 'orderNumber': 4990000, 'xLegacy': -2, 'yLegacy': -8, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': 'D. McDermott cutting DUNK (10 PTS) (T. McConnell 3 AST)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 3}, {'actionNumber': 506, 'clock': 'PT00M49.10S', 'timeActual': '2020-12-24T01:51:23.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 91.27792378449409, 'y': 52.76501225490197, 'side': 'right', 'shotDistance': 3.26, 'possession': 1610612752, 'scoreHome': '86', 'scoreAway': '82', 'edited': '2020-12-24T01:51:42Z', 'orderNumber': 5020000, 'xLegacy': 14, 'yLegacy': 29, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Barrett turnaround Shot', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 507, 'clock': 'PT00M48.00S', 'timeActual': '2020-12-24T01:51:24.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '86', 'scoreAway': '82', 'edited': '2020-12-24T01:52:02Z', 'orderNumber': 5030000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 506, 'reboundTotal': 5, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:4)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 508, 'clock': 'PT00M44.00S', 'timeActual': '2020-12-24T01:51:26.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1628988, 'x': 6.521024967148489, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.25, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:51:31Z', 'orderNumber': 5040000, 'xLegacy': -9, 'yLegacy': 9, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 7, 'description': 'A. Holiday running finger roll Layup (7 PTS)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 509, 'clock': 'PT00M21.50S', 'timeActual': '2020-12-24T01:51:51.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 90.75229960578186, 'y': 4.4806985294117645, 'side': 'right', 'shotDistance': 23.02, 'possession': 1610612752, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:51:55Z', 'orderNumber': 5050000, 'xLegacy': -228, 'yLegacy': 34, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Bullock 3PT', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 510, 'clock': 'PT00M18.90S', 'timeActual': '2020-12-24T01:51:54.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:51:55Z', 'orderNumber': 5060000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 509, 'reboundTotal': 4, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:3)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 511, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T01:52:13.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 204456, 'x': 8.623521681997373, 'y': 47.86305147058824, 'side': 'left', 'shotDistance': 3.05, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:52:17Z', 'orderNumber': 5070000, 'xLegacy': 11, 'yLegacy': 29, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS T. McConnell driving Layup', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 512, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T01:52:15.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:52:15Z', 'orderNumber': 5080000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 511, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 513, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T01:52:15.9Z', 'period': 3, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:52:15Z', 'orderNumber': 5090000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period End', 'personIdsFilter': []}, {'actionNumber': 514, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:23.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:41Z', 'orderNumber': 5100000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 515, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:23.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 203493, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:41Z', 'orderNumber': 5110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Bullock', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 516, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:23.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:41Z', 'orderNumber': 5120000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 517, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:23.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 1628373, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:41Z', 'orderNumber': 5130000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: F. Ntilikina', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 518, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:54.3Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'start', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:54Z', 'orderNumber': 5140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period Start', 'personIdsFilter': []}, {'actionNumber': 519, 'clock': 'PT11M40.00S', 'timeActual': '2020-12-24T01:55:13.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', 'defensivegoaltending'], 'personId': 203926, 'x': 8.360709592641262, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 2.69, 'possession': 1610612754, 'scoreHome': '90', 'scoreAway': '82', 'edited': '2020-12-24T01:55:27Z', 'orderNumber': 5150000, 'xLegacy': -6, 'yLegacy': 26, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 12, 'description': 'D. McDermott driving finger roll Layup (12 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 521, 'clock': 'PT11M40.00S', 'timeActual': '2020-12-24T01:55:17.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'violation', 'subType': 'defensive goaltending', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '90', 'scoreAway': '82', 'edited': '2020-12-24T01:55:27Z', 'officialId': 1627541, 'orderNumber': 5170000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'M. Robinson defensive goaltending VIOLATION', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 522, 'clock': 'PT11M35.00S', 'timeActual': '2020-12-24T01:55:33.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '90', 'scoreAway': '82', 'edited': '2020-12-24T01:55:39Z', 'officialId': 200832, 'orderNumber': 5180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'D. McDermott personal FOUL (2 PF)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1630167], 'foulDrawnPlayerName': 'Toppin', 'foulDrawnPersonId': 1630167}, {'actionNumber': 524, 'clock': 'PT11M22.00S', 'timeActual': '2020-12-24T01:56:07.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '90', 'scoreAway': '82', 'edited': '2020-12-24T01:56:19Z', 'officialId': 1627541, 'orderNumber': 5200000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'A. Holiday shooting personal FOUL (3 PF) (Burks 2 FT)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 526, 'clock': 'PT11M22.00S', 'timeActual': '2020-12-24T01:56:32.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '90', 'scoreAway': '83', 'edited': '2020-12-24T01:56:32Z', 'orderNumber': 5220000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 20, 'description': 'A. Burks Free Throw 1 of 2 (20 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 527, 'clock': 'PT11M22.00S', 'timeActual': '2020-12-24T01:56:49.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '90', 'scoreAway': '84', 'edited': '2020-12-24T01:56:49Z', 'orderNumber': 5230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 21, 'description': 'A. Burks Free Throw 2 of 2 (21 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 528, 'clock': 'PT11M07.00S', 'timeActual': '2020-12-24T01:57:04.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'qualifiers': ['pointsinthepaint'], 'personId': 1626167, 'x': 6.258212877792378, 'y': 52.029718137254896, 'side': 'left', 'shotDistance': 1.19, 'possession': 1610612754, 'scoreHome': '92', 'scoreAway': '84', 'edited': '2020-12-24T01:57:07Z', 'orderNumber': 5240000, 'xLegacy': -10, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'M. Turner DUNK (8 PTS) (T. McConnell 4 AST)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 4}, {'actionNumber': 531, 'clock': 'PT10M48.00S', 'timeActual': '2020-12-24T01:57:23.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'bank', 'qualifiers': [], 'personId': 1630167, 'x': 67.09921156373193, 'y': 22.863051470588236, 'side': 'right', 'shotDistance': 29.04, 'possession': 1610612752, 'scoreHome': '92', 'scoreAway': '87', 'edited': '2020-12-24T01:57:29Z', 'orderNumber': 5260000, 'xLegacy': -136, 'yLegacy': 257, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 9, 'description': \"O. Toppin 29' 3PT bank (9 PTS) (A. Burks 1 AST)\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167, 202692], 'assistPlayerNameInitial': 'A. Burks', 'assistPersonId': 202692, 'assistTotal': 1}, {'actionNumber': 533, 'clock': 'PT10M30.00S', 'timeActual': '2020-12-24T01:57:47.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'step back', 'qualifiers': [], 'personId': 203200, 'x': 33.590670170827856, 'y': 43.20618872549019, 'side': 'left', 'shotDistance': 26.55, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:57:53Z', 'orderNumber': 5280000, 'xLegacy': 34, 'yLegacy': 263, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': \"J. Holiday 26' 3PT step back (6 PTS) (M. Turner 1 AST)\", 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200, 1626167], 'assistPlayerNameInitial': 'M. Turner', 'assistPersonId': 1626167, 'assistTotal': 1}, {'actionNumber': 535, 'clock': 'PT10M14.00S', 'timeActual': '2020-12-24T01:58:02.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 73.53810775295663, 'y': 11.098345588235293, 'side': 'right', 'shotDistance': 27.63, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:07Z', 'orderNumber': 5300000, 'xLegacy': -195, 'yLegacy': 196, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 27' 3PT\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 536, 'clock': 'PT10M12.00S', 'timeActual': '2020-12-24T01:58:04.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:07Z', 'orderNumber': 5310000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 535, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'T. McConnell REBOUND (Off:0 Def:3)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 537, 'clock': 'PT10M05.00S', 'timeActual': '2020-12-24T01:58:12.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1626167, 'x': 31.61957950065703, 'y': 69.921875, 'side': 'left', 'shotDistance': 26.42, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:17Z', 'orderNumber': 5320000, 'xLegacy': -100, 'yLegacy': 245, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Turner 26' 3PT\", 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 538, 'clock': 'PT10M02.00S', 'timeActual': '2020-12-24T01:58:15.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:17Z', 'orderNumber': 5330000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 537, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'A. Burks REBOUND (Off:0 Def:4)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 539, 'clock': 'PT09M55.00S', 'timeActual': '2020-12-24T01:58:22.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1628373, 'x': 88.64980289093299, 'y': 78.99050245098039, 'side': 'right', 'shotDistance': 15.48, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:26Z', 'orderNumber': 5340000, 'xLegacy': 145, 'yLegacy': 54, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS F. Ntilikina 15' pullup Shot\", 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 540, 'clock': 'PT09M52.00S', 'timeActual': '2020-12-24T01:58:25.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:26Z', 'orderNumber': 5350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 539, 'reboundTotal': 5, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:4)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 541, 'clock': 'PT09M48.00S', 'timeActual': '2020-12-24T01:58:29.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:32Z', 'orderNumber': 5360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'A. Holiday bad pass TURNOVER (2 TO)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1628373], 'stealPlayerName': 'Ntilikina', 'stealPersonId': 1628373}, {'actionNumber': 542, 'clock': 'PT09M48.00S', 'timeActual': '2020-12-24T01:58:29.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 1628373, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:31Z', 'orderNumber': 5370000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'F. Ntilikina STEAL (1 STL)', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 543, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:58:38.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:49Z', 'officialId': 1627541, 'orderNumber': 5380000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'T. McConnell shooting personal FOUL (3 PF) (Ntilikina 2 FT)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 1628373], 'foulDrawnPlayerName': 'Ntilikina', 'foulDrawnPersonId': 1628373}, {'actionNumber': 545, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:09.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fromturnover'], 'personId': 1628373, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:33Z', 'orderNumber': 5400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 1, 'description': 'F. Ntilikina Free Throw 1 of 2 (1 PTS)', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 546, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:16Z', 'orderNumber': 5410000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 547, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:16Z', 'orderNumber': 5420000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 548, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:16Z', 'orderNumber': 5430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: N. Noel', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 549, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:16Z', 'orderNumber': 5440000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 550, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:09.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fromturnover'], 'personId': 1628373, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:33Z', 'orderNumber': 5450000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS F. Ntilikina Free Throw 2 of 2', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 551, 'clock': 'PT09M38.00S', 'timeActual': '2020-12-24T01:59:10.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:33Z', 'orderNumber': 5460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 550, 'reboundTotal': 6, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:5)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 552, 'clock': 'PT09M31.00S', 'timeActual': '2020-12-24T01:59:42.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:48Z', 'officialId': 200832, 'orderNumber': 5470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'A. Burks personal FOUL (3 PF)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203200], 'foulDrawnPlayerName': 'Holiday', 'foulDrawnPersonId': 203200}, {'actionNumber': 554, 'clock': 'PT09M25.00S', 'timeActual': '2020-12-24T02:00:05.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1628988, 'x': 25.443495400788436, 'y': 8.892463235294118, 'side': 'left', 'shotDistance': 27.76, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:10Z', 'orderNumber': 5490000, 'xLegacy': 206, 'yLegacy': 187, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Holiday 27' 3PT\", 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 555, 'clock': 'PT09M20.00S', 'timeActual': '2020-12-24T02:00:10.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:10Z', 'orderNumber': 5500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 554, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'K. Knox II REBOUND (Off:0 Def:3)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 556, 'clock': 'PT09M02.00S', 'timeActual': '2020-12-24T02:00:30.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'traveling', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:35Z', 'officialId': 202053, 'orderNumber': 5510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'N. Noel traveling TURNOVER (2 TO)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 557, 'clock': 'PT09M02.00S', 'timeActual': '2020-12-24T02:00:32.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:39Z', 'orderNumber': 5520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 558, 'clock': 'PT09M02.00S', 'timeActual': '2020-12-24T02:00:32.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:39Z', 'orderNumber': 5530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 559, 'clock': 'PT08M50.00S', 'timeActual': '2020-12-24T02:01:00.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'reverse', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 204456, 'x': 6.783837056504599, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.44, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '88', 'edited': '2020-12-24T02:01:04Z', 'orderNumber': 5540000, 'xLegacy': -9, 'yLegacy': 11, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'T. McConnell reverse Layup (2 PTS) (D. McDermott 1 AST)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 203926], 'assistPlayerNameInitial': 'D. McDermott', 'assistPersonId': 203926, 'assistTotal': 1}, {'actionNumber': 561, 'clock': 'PT08M41.00S', 'timeActual': '2020-12-24T02:01:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1628995, 'x': 95.22010512483574, 'y': 54.72579656862745, 'side': 'right', 'shotDistance': 2.48, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:13Z', 'orderNumber': 5560000, 'xLegacy': 24, 'yLegacy': -8, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'K. Knox II driving finger roll Layup (2 PTS) (N. Noel 1 AST)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 203457], 'assistPlayerNameInitial': 'N. Noel', 'assistPersonId': 203457, 'assistTotal': 1}, {'actionNumber': 563, 'clock': 'PT08M41.00S', 'timeActual': '2020-12-24T02:01:12.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:21Z', 'officialId': 200832, 'orderNumber': 5580000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis shooting personal FOUL (2 PF) (Knox II 1 FT)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1628995], 'foulDrawnPlayerName': 'Knox II', 'foulDrawnPersonId': 1628995}, {'actionNumber': 565, 'clock': 'PT08M41.00S', 'timeActual': '2020-12-24T02:01:34.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:34Z', 'orderNumber': 5600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS K. Knox II Free Throw 1 of 1', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 566, 'clock': 'PT08M40.00S', 'timeActual': '2020-12-24T02:01:35.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:35Z', 'orderNumber': 5610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 565, 'reboundTotal': 10, 'reboundDefensiveTotal': 8, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:8)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 567, 'clock': 'PT08M35.00S', 'timeActual': '2020-12-24T02:01:43.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'traveling', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:48Z', 'officialId': 202053, 'orderNumber': 5620000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'J. Holiday traveling TURNOVER (1 TO)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 568, 'clock': 'PT08M18.00S', 'timeActual': '2020-12-24T02:02:11.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 202692, 'x': 70.64717477003943, 'y': 12.323835784313726, 'side': 'right', 'shotDistance': 29.22, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:15Z', 'orderNumber': 5630000, 'xLegacy': -188, 'yLegacy': 223, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Burks 29' 3PT\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 569, 'clock': 'PT08M13.00S', 'timeActual': '2020-12-24T02:02:16.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:15Z', 'orderNumber': 5640000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 568, 'reboundTotal': 7, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 1, 'description': 'J. Randle REBOUND (Off:1 Def:6)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 570, 'clock': 'PT08M08.00S', 'timeActual': '2020-12-24T02:02:20.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint', 'fromturnover', '2ndchance'], 'personId': 202692, 'x': 96.00854139290408, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 1.69, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:23Z', 'orderNumber': 5650000, 'xLegacy': 8, 'yLegacy': -15, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Burks Layup - blocked', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 571, 'clock': 'PT08M08.00S', 'timeActual': '2020-12-24T02:02:20.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:21Z', 'orderNumber': 5660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (8 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 572, 'clock': 'PT08M06.00S', 'timeActual': '2020-12-24T02:02:22.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:06:16Z', 'orderNumber': 5670000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 570, 'reboundTotal': 7, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:6)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 573, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T02:02:30.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1628373, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:42Z', 'officialId': 1627541, 'orderNumber': 5680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'F. Ntilikina shooting personal FOUL (1 PF) (Turner 2 FT)', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373, 1626167], 'foulDrawnPlayerName': 'Turner', 'foulDrawnPersonId': 1626167}, {'actionNumber': 575, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T02:03:06.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fastbreak'], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '98', 'scoreAway': '90', 'edited': '2020-12-24T02:03:06Z', 'orderNumber': 5700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 9, 'description': 'M. Turner Free Throw 1 of 2 (9 PTS)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 576, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T02:03:17.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fastbreak'], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:17Z', 'orderNumber': 5710000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 10, 'description': 'M. Turner Free Throw 2 of 2 (10 PTS)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 577, 'clock': 'PT07M50.00S', 'timeActual': '2020-12-24T02:03:31.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'qualifiers': ['pointsinthepaint'], 'personId': 203457, 'x': 93.24901445466492, 'y': 50.06893382352941, 'side': 'right', 'shotDistance': 1.1, 'possession': 1610612752, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:35Z', 'orderNumber': 5720000, 'xLegacy': 0, 'yLegacy': 11, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS N. Noel Jump Shot', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 578, 'clock': 'PT07M48.00S', 'timeActual': '2020-12-24T02:03:33.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:35Z', 'orderNumber': 5730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 577, 'reboundTotal': 8, 'reboundDefensiveTotal': 7, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:7)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 579, 'clock': 'PT07M42.00S', 'timeActual': '2020-12-24T02:03:38.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1626167, 'x': 31.882391590013142, 'y': 32.176776960784316, 'side': 'left', 'shotDistance': 26.28, 'possession': 1610612754, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:43Z', 'orderNumber': 5740000, 'xLegacy': 89, 'yLegacy': 247, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Turner 26' 3PT\", 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 580, 'clock': 'PT07M39.00S', 'timeActual': '2020-12-24T02:03:41.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:43Z', 'orderNumber': 5750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 579, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'N. Noel REBOUND (Off:1 Def:2)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 581, 'clock': 'PT07M32.00S', 'timeActual': '2020-12-24T02:03:49.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1628373, 'x': 64.33968462549278, 'y': 42.22579656862745, 'side': 'right', 'shotDistance': 28.54, 'possession': 1610612752, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:55Z', 'orderNumber': 5760000, 'xLegacy': -39, 'yLegacy': 283, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS F. Ntilikina 28' pullup 3PT\", 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 582, 'clock': 'PT07M28.00S', 'timeActual': '2020-12-24T02:03:53.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:55Z', 'orderNumber': 5770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 581, 'reboundTotal': 11, 'reboundDefensiveTotal': 9, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:9)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 583, 'clock': 'PT07M18.00S', 'timeActual': '2020-12-24T02:04:02.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 5.075558475689881, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 0.81, 'possession': 1610612754, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:04:05Z', 'orderNumber': 5780000, 'xLegacy': -6, 'yLegacy': -5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 26, 'description': 'D. Sabonis cutting finger roll Layup (26 PTS) (D. McDermott 2 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203926], 'assistPlayerNameInitial': 'D. McDermott', 'assistPersonId': 203926, 'assistTotal': 2}, {'actionNumber': 585, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:04:10.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:04:10Z', 'orderNumber': 5800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'NYK Timeout', 'personIdsFilter': []}, {'actionNumber': 586, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5810000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 587, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5820000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 588, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628373, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: F. Ntilikina', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 589, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 590, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5850000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 591, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Brogdon', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 592, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 593, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5880000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 594, 'clock': 'PT07M03.00S', 'timeActual': '2020-12-24T02:07:14.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 93.9060446780552, 'y': 52.27481617647059, 'side': 'right', 'shotDistance': 1.24, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '92', 'edited': '2020-12-24T02:07:17Z', 'orderNumber': 5890000, 'xLegacy': 11, 'yLegacy': 5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 24, 'description': 'R. Barrett driving finger roll Layup (24 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 595, 'clock': 'PT06M57.00S', 'timeActual': '2020-12-24T02:07:29.0Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'equipment issue', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '101', 'scoreAway': '92', 'edited': '2020-12-24T02:07:29Z', 'orderNumber': 5900000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 596, 'clock': 'PT06M45.00S', 'timeActual': '2020-12-24T02:07:52.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203506, 'x': 31.488173455978973, 'y': 13.794424019607842, 'side': 'left', 'shotDistance': 30.34, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:07:57Z', 'orderNumber': 5910000, 'xLegacy': 181, 'yLegacy': 243, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 20, 'description': \"V. Oladipo 30' 3PT (20 PTS) (M. Brogdon 8 AST)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 8}, {'actionNumber': 598, 'clock': 'PT06M28.00S', 'timeActual': '2020-12-24T02:08:07.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 1628995, 'x': 94.43166885676742, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 0.77, 'possession': 1610612752, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:14Z', 'orderNumber': 5930000, 'xLegacy': 8, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS K. Knox II driving DUNK', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 599, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T02:08:08.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:14Z', 'orderNumber': 5940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 598, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 600, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T02:08:13.0Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:13Z', 'orderNumber': 5950000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 601, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T02:08:13.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:22Z', 'orderNumber': 5960000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: N. Noel', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 602, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T02:08:13.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:22Z', 'orderNumber': 5970000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: R. Bullock', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 603, 'clock': 'PT06M04.00S', 'timeActual': '2020-12-24T02:08:49.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 7.30946123521682, 'y': 50.06893382352941, 'side': 'left', 'shotDistance': 1.62, 'possession': 1610612754, 'scoreHome': '106', 'scoreAway': '92', 'edited': '2020-12-24T02:08:52Z', 'orderNumber': 5980000, 'xLegacy': 0, 'yLegacy': 16, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 28, 'description': 'D. Sabonis Layup (28 PTS) (T. McConnell 5 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 5}, {'actionNumber': 605, 'clock': 'PT05M52.00S', 'timeActual': '2020-12-24T02:09:02.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '106', 'scoreAway': '92', 'edited': '2020-12-24T02:09:05Z', 'orderNumber': 6000000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 5, 'description': 'E. Payton lost ball TURNOVER (5 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 204456], 'stealPlayerName': 'McConnell', 'stealPersonId': 204456}, {'actionNumber': 606, 'clock': 'PT05M52.00S', 'timeActual': '2020-12-24T02:09:02.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '106', 'scoreAway': '92', 'edited': '2020-12-24T02:09:03Z', 'orderNumber': 6010000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'T. McConnell STEAL (1 STL)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 607, 'clock': 'PT05M47.00S', 'timeActual': '2020-12-24T02:09:08.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '106', 'scoreAway': '92', 'edited': '2020-12-24T02:09:20Z', 'officialId': 202053, 'orderNumber': 6020000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'R. Bullock shooting personal FOUL (3 PF) (McConnell 2 FT)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 204456], 'foulDrawnPlayerName': 'McConnell', 'foulDrawnPersonId': 204456}, {'actionNumber': 609, 'clock': 'PT05M47.00S', 'timeActual': '2020-12-24T02:09:34.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fromturnover', 'fastbreak'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:09:34Z', 'orderNumber': 6040000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'T. McConnell Free Throw 1 of 2 (3 PTS)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 610, 'clock': 'PT05M47.00S', 'timeActual': '2020-12-24T02:09:34.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fastbreak', 'fromturnover'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:09:51Z', 'orderNumber': 6050000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS T. McConnell Free Throw 2 of 2', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 611, 'clock': 'PT05M46.00S', 'timeActual': '2020-12-24T02:09:35.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:09:51Z', 'orderNumber': 6060000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 610, 'reboundTotal': 7, 'reboundDefensiveTotal': 7, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:7)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 612, 'clock': 'PT05M37.00S', 'timeActual': '2020-12-24T02:10:00.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'descriptor': 'charge', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:06Z', 'officialId': 1627541, 'orderNumber': 6070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 5, 'foulTechnicalTotal': 0, 'description': 'J. Randle charge offensive FOUL (5 PF)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 203506], 'foulDrawnPlayerName': 'Oladipo', 'foulDrawnPersonId': 203506}, {'actionNumber': 614, 'clock': 'PT05M37.00S', 'timeActual': '2020-12-24T02:10:00.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:00Z', 'officialId': 1627541, 'orderNumber': 6090000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 5, 'description': 'J. Randle offensive foul TURNOVER (5 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 615, 'clock': 'PT05M24.00S', 'timeActual': '2020-12-24T02:10:28.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 203926, 'x': 32.013797634691194, 'y': 72.12775735294117, 'side': 'left', 'shotDistance': 27.19, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:32Z', 'orderNumber': 6100000, 'xLegacy': -111, 'yLegacy': 248, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 27' 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 616, 'clock': 'PT05M21.00S', 'timeActual': '2020-12-24T02:10:31.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:32Z', 'orderNumber': 6110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 615, 'reboundTotal': 12, 'reboundDefensiveTotal': 9, 'reboundOffensiveTotal': 3, 'description': 'D. Sabonis REBOUND (Off:3 Def:9)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 617, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:10:37.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:43Z', 'officialId': 200832, 'orderNumber': 6120000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'K. Knox II shooting personal FOUL (1 PF) (Brogdon 2 FT)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 1627763], 'foulDrawnPlayerName': 'Brogdon', 'foulDrawnPersonId': 1627763}, {'actionNumber': 619, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:10:57.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fromturnover', '2ndchance'], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '108', 'scoreAway': '92', 'edited': '2020-12-24T02:10:57Z', 'orderNumber': 6140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 17, 'description': 'M. Brogdon Free Throw 1 of 2 (17 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 620, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:11:10.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '108', 'scoreAway': '92', 'edited': '2020-12-24T02:11:14Z', 'orderNumber': 6150000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 621, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:11:10.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '108', 'scoreAway': '92', 'edited': '2020-12-24T02:11:14Z', 'orderNumber': 6160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 622, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:11:30.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fromturnover', '2ndchance'], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '109', 'scoreAway': '92', 'edited': '2020-12-24T02:11:30Z', 'orderNumber': 6170000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 18, 'description': 'M. Brogdon Free Throw 2 of 2 (18 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 623, 'clock': 'PT05M10.00S', 'timeActual': '2020-12-24T02:11:45.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '109', 'scoreAway': '92', 'edited': '2020-12-24T02:11:58Z', 'officialId': 202053, 'orderNumber': 6180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 4, 'foulTechnicalTotal': 0, 'description': 'T. McConnell personal FOUL (4 PF) (Burks 2 FT)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 625, 'clock': 'PT05M10.00S', 'timeActual': '2020-12-24T02:13:16.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '109', 'scoreAway': '92', 'edited': '2020-12-24T02:13:16Z', 'orderNumber': 6200000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS A. Burks Free Throw 1 of 2', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 626, 'clock': 'PT05M10.00S', 'timeActual': '2020-12-24T02:13:16.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '109', 'scoreAway': '92', 'edited': '2020-12-24T02:13:16Z', 'orderNumber': 6210000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 625, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 627, 'clock': 'PT05M10.00S', 'timeActual': '2020-12-24T02:13:33.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '109', 'scoreAway': '93', 'edited': '2020-12-24T02:13:33Z', 'orderNumber': 6220000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 22, 'description': 'A. Burks Free Throw 2 of 2 (22 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 628, 'clock': 'PT05M00.00S', 'timeActual': '2020-12-24T02:13:43.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Hook', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 6.652431011826544, 'y': 46.88265931372549, 'side': 'left', 'shotDistance': 1.85, 'possession': 1610612754, 'scoreHome': '109', 'scoreAway': '93', 'edited': '2020-12-24T02:13:47Z', 'orderNumber': 6230000, 'xLegacy': 16, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Hook', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 629, 'clock': 'PT04M58.00S', 'timeActual': '2020-12-24T02:13:45.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '109', 'scoreAway': '93', 'edited': '2020-12-24T02:13:45Z', 'orderNumber': 6240000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 628, 'reboundTotal': 13, 'reboundDefensiveTotal': 9, 'reboundOffensiveTotal': 4, 'description': 'D. Sabonis REBOUND (Off:4 Def:9)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 630, 'clock': 'PT04M58.00S', 'timeActual': '2020-12-24T02:13:45.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'putback', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1627734, 'x': 4.5499342969776615, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 1.17, 'possession': 1610612754, 'scoreHome': '111', 'scoreAway': '93', 'edited': '2020-12-24T02:13:50Z', 'orderNumber': 6250000, 'xLegacy': -6, 'yLegacy': -10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 30, 'description': 'D. Sabonis putback Layup (30 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 631, 'clock': 'PT04M44.00S', 'timeActual': '2020-12-24T02:13:59.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 92.9862023653088, 'y': 49.57873774509804, 'side': 'right', 'shotDistance': 1.36, 'possession': 1610612752, 'scoreHome': '111', 'scoreAway': '93', 'edited': '2020-12-24T02:14:04Z', 'orderNumber': 6260000, 'xLegacy': -2, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Barrett driving floating Shot', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 632, 'clock': 'PT04M42.00S', 'timeActual': '2020-12-24T02:14:01.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '111', 'scoreAway': '93', 'edited': '2020-12-24T02:14:04Z', 'orderNumber': 6270000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 631, 'reboundTotal': 2, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 1, 'description': 'E. Payton REBOUND (Off:1 Def:1)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 633, 'clock': 'PT04M41.00S', 'timeActual': '2020-12-24T02:14:03.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'putback', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 203901, 'x': 95.87713534822602, 'y': 55.4610906862745, 'side': 'right', 'shotDistance': 3.05, 'possession': 1610612752, 'scoreHome': '111', 'scoreAway': '95', 'edited': '2020-12-24T02:14:06Z', 'orderNumber': 6280000, 'xLegacy': 27, 'yLegacy': -14, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 7, 'description': 'E. Payton putback Layup (7 PTS)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 634, 'clock': 'PT04M31.00S', 'timeActual': '2020-12-24T02:14:13.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 204456, 'x': 6.1268068331143235, 'y': 51.53952205882353, 'side': 'left', 'shotDistance': 0.92, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '95', 'edited': '2020-12-24T02:14:15Z', 'orderNumber': 6290000, 'xLegacy': -8, 'yLegacy': 5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'T. McConnell driving finger roll Layup (5 PTS)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 635, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T02:14:27.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '95', 'edited': '2020-12-24T02:14:32Z', 'officialId': 202053, 'orderNumber': 6300000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis personal FOUL (3 PF) (Randle 2 FT)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 637, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T02:14:53.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '95', 'edited': '2020-12-24T02:14:53Z', 'orderNumber': 6320000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS J. Randle Free Throw 1 of 2', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 638, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T02:14:53.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '95', 'edited': '2020-12-24T02:14:53Z', 'orderNumber': 6330000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 637, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 639, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T02:15:08.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:08Z', 'orderNumber': 6340000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 10, 'description': 'J. Randle Free Throw 2 of 2 (10 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 640, 'clock': 'PT04M06.00S', 'timeActual': '2020-12-24T02:15:22.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Hook', 'descriptor': 'turnaround', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 6.915243101182654, 'y': 64.5297181372549, 'side': 'left', 'shotDistance': 7.37, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:26Z', 'orderNumber': 6350000, 'xLegacy': -73, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. Sabonis 7' turnaround Hook\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 641, 'clock': 'PT04M04.00S', 'timeActual': '2020-12-24T02:15:24.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:26Z', 'orderNumber': 6360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 640, 'reboundTotal': 8, 'reboundDefensiveTotal': 8, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:8)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 642, 'clock': 'PT03M58.00S', 'timeActual': '2020-12-24T02:15:31.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving bank', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203944, 'x': 93.77463863337714, 'y': 48.84344362745098, 'side': 'right', 'shotDistance': 0.83, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:38Z', 'orderNumber': 6370000, 'xLegacy': -6, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle driving bank Shot', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 643, 'clock': 'PT03M56.00S', 'timeActual': '2020-12-24T02:15:33.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:38Z', 'orderNumber': 6380000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 642, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'V. Oladipo REBOUND (Off:0 Def:4)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 644, 'clock': 'PT03M50.00S', 'timeActual': '2020-12-24T02:15:41.8Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:41Z', 'orderNumber': 6390000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 646, 'clock': 'PT03M50.00S', 'timeActual': '2020-12-24T02:15:42.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:49Z', 'orderNumber': 6410000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 647, 'clock': 'PT03M50.00S', 'timeActual': '2020-12-24T02:15:42.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:54Z', 'orderNumber': 6420000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 648, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T02:16:02.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:16:09Z', 'officialId': 200832, 'orderNumber': 6430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'K. Knox II shooting personal FOUL (2 PF) (McDermott 2 FT)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 203926], 'foulDrawnPlayerName': 'McDermott', 'foulDrawnPersonId': 203926}, {'actionNumber': 650, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T02:16:28.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '114', 'scoreAway': '96', 'edited': '2020-12-24T02:16:28Z', 'orderNumber': 6450000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'D. McDermott Free Throw 1 of 2 (13 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 651, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T02:16:28.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '114', 'scoreAway': '96', 'edited': '2020-12-24T02:16:44Z', 'orderNumber': 6460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. McDermott Free Throw 2 of 2', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 652, 'clock': 'PT03M47.00S', 'timeActual': '2020-12-24T02:16:30.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '114', 'scoreAway': '96', 'edited': '2020-12-24T02:16:44Z', 'orderNumber': 6470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 651, 'reboundTotal': 8, 'reboundDefensiveTotal': 7, 'reboundOffensiveTotal': 1, 'description': 'J. Randle REBOUND (Off:1 Def:7)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 653, 'clock': 'PT03M39.00S', 'timeActual': '2020-12-24T02:16:53.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 94.30026281208936, 'y': 53.990502450980394, 'side': 'right', 'shotDistance': 2.0, 'possession': 1610612752, 'scoreHome': '114', 'scoreAway': '98', 'edited': '2020-12-24T02:16:57Z', 'orderNumber': 6480000, 'xLegacy': 20, 'yLegacy': 1, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 12, 'description': 'J. Randle driving Layup (12 PTS) (A. Burks 2 AST)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 202692], 'assistPlayerNameInitial': 'A. Burks', 'assistPersonId': 202692, 'assistTotal': 2}, {'actionNumber': 655, 'clock': 'PT03M39.00S', 'timeActual': '2020-12-24T02:16:56.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '1freethrow'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '114', 'scoreAway': '98', 'edited': '2020-12-24T02:17:02Z', 'officialId': 200832, 'orderNumber': 6500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 4, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis shooting personal FOUL (4 PF) (Randle 1 FT)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 657, 'clock': 'PT03M39.00S', 'timeActual': '2020-12-24T02:17:20.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '114', 'scoreAway': '99', 'edited': '2020-12-24T02:17:20Z', 'orderNumber': 6520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'J. Randle Free Throw 1 of 1 (13 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 658, 'clock': 'PT03M25.00S', 'timeActual': '2020-12-24T02:17:36.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203926, 'x': 26.363337713534822, 'y': 84.3826593137255, 'side': 'left', 'shotDistance': 26.02, 'possession': 1610612754, 'scoreHome': '114', 'scoreAway': '99', 'edited': '2020-12-24T02:17:40Z', 'orderNumber': 6530000, 'xLegacy': -172, 'yLegacy': 195, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 26' 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 659, 'clock': 'PT03M20.00S', 'timeActual': '2020-12-24T02:17:41.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '114', 'scoreAway': '99', 'edited': '2020-12-24T02:17:40Z', 'orderNumber': 6540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 658, 'reboundTotal': 4, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 1, 'description': 'T. McConnell REBOUND (Off:1 Def:3)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 660, 'clock': 'PT03M09.00S', 'timeActual': '2020-12-24T02:17:51.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving reverse', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 203506, 'x': 7.30946123521682, 'y': 50.80422794117647, 'side': 'left', 'shotDistance': 1.67, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '99', 'edited': '2020-12-24T02:17:55Z', 'orderNumber': 6550000, 'xLegacy': -4, 'yLegacy': 16, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 22, 'description': 'V. Oladipo driving reverse Layup (22 PTS) (D. Sabonis 5 AST)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 5}, {'actionNumber': 662, 'clock': 'PT02M55.00S', 'timeActual': '2020-12-24T02:18:04.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 87.20433639947439, 'y': 47.372855392156865, 'side': 'right', 'shotDistance': 6.91, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:09Z', 'orderNumber': 6570000, 'xLegacy': -13, 'yLegacy': 68, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': \"J. Randle 6' turnaround Jump Shot (15 PTS) (R. Barrett 5 AST)\", 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 5}, {'actionNumber': 664, 'clock': 'PT02M41.00S', 'timeActual': '2020-12-24T02:18:18.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 203926, 'x': 4.944152431011826, 'y': 49.82383578431372, 'side': 'left', 'shotDistance': 0.61, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:22Z', 'orderNumber': 6590000, 'xLegacy': 1, 'yLegacy': -6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. McDermott driving Layup - blocked', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1628995], 'blockPlayerName': 'Knox II', 'blockPersonId': 1628995}, {'actionNumber': 665, 'clock': 'PT02M41.00S', 'timeActual': '2020-12-24T02:18:18.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:20Z', 'orderNumber': 6600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'K. Knox II BLOCK (1 BLK)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 666, 'clock': 'PT02M39.00S', 'timeActual': '2020-12-24T02:18:20.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:22Z', 'orderNumber': 6610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 664, 'reboundTotal': 9, 'reboundDefensiveTotal': 8, 'reboundOffensiveTotal': 1, 'description': 'J. Randle REBOUND (Off:1 Def:8)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 667, 'clock': 'PT02M24.00S', 'timeActual': '2020-12-24T02:18:36.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 92.85479632063075, 'y': 5.46109068627451, 'side': 'right', 'shotDistance': 22.32, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:39Z', 'orderNumber': 6620000, 'xLegacy': -223, 'yLegacy': 15, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Bullock 3PT', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 668, 'clock': 'PT02M22.00S', 'timeActual': '2020-12-24T02:18:38.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:39Z', 'orderNumber': 6630000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 667, 'reboundTotal': 7, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 2, 'description': 'M. Brogdon REBOUND (Off:2 Def:5)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 669, 'clock': 'PT02M09.00S', 'timeActual': '2020-12-24T02:18:57.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'offensive', 'qualifiers': ['inpenalty'], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:19:09Z', 'officialId': 1627541, 'orderNumber': 6640000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'M. Brogdon offensive FOUL (2 PF)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 671, 'clock': 'PT02M09.00S', 'timeActual': '2020-12-24T02:18:57.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:57Z', 'officialId': 1627541, 'orderNumber': 6660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'M. Brogdon offensive foul TURNOVER (1 TO)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 672, 'clock': 'PT02M09.00S', 'timeActual': '2020-12-24T02:19:09.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:19:10Z', 'orderNumber': 6670000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 673, 'clock': 'PT01M56.00S', 'timeActual': '2020-12-24T02:22:07.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 203944, 'x': 85.49605781865965, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 8.42, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '103', 'edited': '2020-12-24T02:22:11Z', 'orderNumber': 6680000, 'xLegacy': 8, 'yLegacy': 84, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 17, 'description': \"J. Randle 8' driving floating Jump Shot (17 PTS) (R. Bullock 2 AST)\", 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 203493], 'assistPlayerNameInitial': 'R. Bullock', 'assistPersonId': 203493, 'assistTotal': 2}, {'actionNumber': 675, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T02:22:30.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'offensive', 'qualifiers': ['inpenalty'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '103', 'edited': '2020-12-24T02:22:41Z', 'officialId': 202053, 'orderNumber': 6700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 5, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis offensive FOUL (5 PF)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 677, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T02:22:30.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '103', 'edited': '2020-12-24T02:22:30Z', 'officialId': 202053, 'orderNumber': 6720000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 4, 'description': 'D. Sabonis offensive foul TURNOVER (4 TO)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 678, 'clock': 'PT01M29.00S', 'timeActual': '2020-12-24T02:22:48.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 1629628, 'x': 93.38042049934296, 'y': 52.51991421568627, 'side': 'right', 'shotDistance': 1.59, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:22:51Z', 'orderNumber': 6730000, 'xLegacy': 13, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 26, 'description': 'R. Barrett driving finger roll Layup (26 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 679, 'clock': 'PT01M10.00S', 'timeActual': '2020-12-24T02:23:10.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1627734, 'x': 28.33442838370565, 'y': 17.47089460784314, 'side': 'left', 'shotDistance': 26.86, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:23:17Z', 'orderNumber': 6740000, 'xLegacy': 163, 'yLegacy': 214, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. Sabonis 26' 3PT\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 680, 'clock': 'PT01M07.00S', 'timeActual': '2020-12-24T02:23:13.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:23:17Z', 'orderNumber': 6750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 679, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 681, 'clock': 'PT01M07.00S', 'timeActual': '2020-12-24T02:23:16.8Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:23:16Z', 'orderNumber': 6760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 682, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:23:48.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:23:57Z', 'officialId': 1627541, 'orderNumber': 6770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'K. Knox II shooting personal FOUL (3 PF) (Sabonis 2 FT)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 684, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:15.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['2ndchance'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:15Z', 'orderNumber': 6790000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 31, 'description': 'D. Sabonis Free Throw 1 of 2 (31 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 685, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:16.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:23Z', 'orderNumber': 6800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 686, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:16.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:23Z', 'orderNumber': 6810000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 687, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:16.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:23Z', 'orderNumber': 6820000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 688, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:16.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1629033, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:23Z', 'orderNumber': 6830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. Pinson', 'playerName': 'Pinson', 'playerNameI': 'T. Pinson', 'personIdsFilter': [1629033]}, {'actionNumber': 689, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:36.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['2ndchance'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '118', 'scoreAway': '105', 'edited': '2020-12-24T02:24:36Z', 'orderNumber': 6840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 32, 'description': 'D. Sabonis Free Throw 2 of 2 (32 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 690, 'clock': 'PT00M46.60S', 'timeActual': '2020-12-24T02:24:47.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 1628995, 'x': 93.11760840998686, 'y': 49.333639705882355, 'side': 'right', 'shotDistance': 1.26, 'possession': 1610612752, 'scoreHome': '118', 'scoreAway': '107', 'edited': '2020-12-24T02:24:50Z', 'orderNumber': 6850000, 'xLegacy': -3, 'yLegacy': 12, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'K. Knox II driving DUNK (4 PTS) (A. Burks 3 AST)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 202692], 'assistPlayerNameInitial': 'A. Burks', 'assistPersonId': 202692, 'assistTotal': 3}, {'actionNumber': 692, 'clock': 'PT00M25.60S', 'timeActual': '2020-12-24T02:25:12.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1627763, 'x': 33.327858081471746, 'y': 17.715992647058822, 'side': 'left', 'shotDistance': 30.67, 'possession': 1610612754, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:17Z', 'orderNumber': 6870000, 'xLegacy': 161, 'yLegacy': 261, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 21, 'description': \"M. Brogdon 30' 3PT pullup (21 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 693, 'clock': 'PT00M08.90S', 'timeActual': '2020-12-24T02:25:31.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 89.70105124835742, 'y': 3.5003063725490198, 'side': 'right', 'shotDistance': 23.67, 'possession': 1610612752, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:35Z', 'orderNumber': 6880000, 'xLegacy': -232, 'yLegacy': 44, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Bullock 3PT', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 694, 'clock': 'PT00M06.30S', 'timeActual': '2020-12-24T02:25:34.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:34Z', 'orderNumber': 6890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 693, 'reboundTotal': 6, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:5)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 695, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T02:25:41.4Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:41Z', 'orderNumber': 6900000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period End', 'personIdsFilter': []}, {'actionNumber': 696, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T02:25:43.6Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'game', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 0, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:43Z', 'orderNumber': 6910000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Game End', 'personIdsFilter': []}]}\n" + ] + } + ], + "source": [ + "#The second block contains the game & play by play data\n", + "print(json['game'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.5" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/docs/nba_api/live/endpoints/playbyplay.md b/docs/nba_api/live/endpoints/playbyplay.md new file mode 100644 index 00000000..5df6e2b1 --- /dev/null +++ b/docs/nba_api/live/endpoints/playbyplay.md @@ -0,0 +1,66 @@ +# PlayByPlay +##### [nba_api/stats/endpoints/playbyplay.py](https://github.com/swar/nba_api/blob/master/nba_api/stats/endpoints/playbyplay.py) + +##### Endpoint URL +>[https://stats.nba.com/stats/playbyplay](https://stats.nba.com/stats/playbyplay) + +##### Valid URL +>[https://stats.nba.com/stats/playbyplay?EndPeriod=1&GameID=0021700807&StartPeriod=1](https://stats.nba.com/stats/playbyplay?EndPeriod=1&GameID=0021700807&StartPeriod=1) + +## Parameters +API Parameter Name | Python Parameter Variable | Pattern | Required | Nullable +------------ | ------------ | :-----------: | :---: | :---: +[_**EndPeriod**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#EndPeriod) | end_period | | `Y` | | +[_**GameID**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#GameID) | game_id | `^\d{10}$` | `Y` | | +[_**StartPeriod**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#StartPeriod) | start_period | | `Y` | | + +## Data Sets +#### AvailableVideo `available_video` +```text +['VIDEO_AVAILABLE_FLAG'] +``` + +#### PlayByPlay `play_by_play` +```text +['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN'] +``` + + +## JSON +```json +{ + "meta": { + "version": 1, + "code":200, + "request":"http://nba.cloud/games/0022000011/playbyplay?Format=json", + "time":"2020-12-23 23:28:42.239540" + }, + "game":{ + "gameId":"0022000011", + "actions":[{ + "actionNumber":2, + "clock":"PT12M00.00S", + "timeActual":"2020-12-24T00:13:22.7Z", + "period":1, + "periodType":"REGULAR", + "actionType":"period", + "subType":"start", + "qualifiers":[], + "personId":0, + "x":"None", + "y":"None", + "possession":0, + "scoreHome":"0", + "scoreAway":"0", + "edited":"2020-12-24T00:13:22Z", + "orderNumber":20000, + "xLegacy":"None", + "yLegacy":"None", + "isFieldGoal":0, + "side":"None", + "description":"Period Start", + "personIdsFilter":[] + }]}} +``` + +Last validated 2020-08-16 \ No newline at end of file diff --git a/nba_api/live/__init__.py b/nba_api/live/__init__.py new file mode 100644 index 00000000..41c20c72 --- /dev/null +++ b/nba_api/live/__init__.py @@ -0,0 +1 @@ +name = "nba_api" diff --git a/nba_api/live/endpoints/boxscore.py b/nba_api/live/endpoints/boxscore.py index e69de29b..97581c12 100644 --- a/nba_api/live/endpoints/boxscore.py +++ b/nba_api/live/endpoints/boxscore.py @@ -0,0 +1,43 @@ +from nba_api.stats.endpoints._base import Endpoint +from nba_api.live.library.http import NBAStatsHTTP +from nba_api.stats.library.parameters import EndPeriod, StartPeriod + +class PlayByPlay(Endpoint): + endpoint_url = 'boxscore/boxscore_{game_id}.json' + #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} + + nba_response = None + data_sets = None + player_stats = None + team_stats = None + headers = None + + def __init__(self, + game_id, + proxy=None, + headers=None, + timeout=30, + get_request=True): + self.game_id = game_id + self.proxy = proxy + if headers is not None: + self.headers = headers + self.timeout = timeout + if get_request: + self.get_request() + + def get_request(self): + self.nba_response = NBAStatsHTTP().send_api_request( + endpoint=self.endpoint_url.format(self.game_id), + parameters=None, + proxy=self.proxy, + headers=self.headers, + timeout=self.timeout + ) + #self.load_response() + + def load_response(self): + data_sets = self.nba_response.get_data_sets() + self.data_sets = [Endpoint.DataSet(data=data_set) for data_set_name, data_set in data_sets.items()] + self.meta = Endpoint.DataSet(data=data_sets['meta']) + self.game = Endpoint.DataSet(data=data_sets['game']) diff --git a/nba_api/live/endpoints/gameodds.py b/nba_api/live/endpoints/gameodds.py index e69de29b..0ee0f2b5 100644 --- a/nba_api/live/endpoints/gameodds.py +++ b/nba_api/live/endpoints/gameodds.py @@ -0,0 +1,43 @@ +from nba_api.stats.endpoints._base import Endpoint +from nba_api.live.library.http import NBAStatsHTTP +from nba_api.stats.library.parameters import EndPeriod, StartPeriod + +class PlayByPlay(Endpoint): + endpoint_url = 'gameodds/{game_id}.json' + #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} + + nba_response = None + data_sets = None + player_stats = None + team_stats = None + headers = None + + def __init__(self, + game_id, + proxy=None, + headers=None, + timeout=30, + get_request=True): + self.game_id = game_id + self.proxy = proxy + if headers is not None: + self.headers = headers + self.timeout = timeout + if get_request: + self.get_request() + + def get_request(self): + self.nba_response = NBAStatsHTTP().send_api_request( + endpoint=self.endpoint_url.format(self.game_id), + parameters=None, + proxy=self.proxy, + headers=self.headers, + timeout=self.timeout + ) + #self.load_response() + + def load_response(self): + data_sets = self.nba_response.get_data_sets() + self.data_sets = [Endpoint.DataSet(data=data_set) for data_set_name, data_set in data_sets.items()] + self.meta = Endpoint.DataSet(data=data_sets['meta']) + self.game = Endpoint.DataSet(data=data_sets['game']) diff --git a/nba_api/live/endpoints/playbyplay.py b/nba_api/live/endpoints/playbyplay.py index 64fcfd03..9f1944f0 100644 --- a/nba_api/live/endpoints/playbyplay.py +++ b/nba_api/live/endpoints/playbyplay.py @@ -18,26 +18,26 @@ def __init__(self, headers=None, timeout=30, get_request=True): + self.game_id = game_id self.proxy = proxy if headers is not None: self.headers = headers self.timeout = timeout - self.parameters = {'GameID': game_id} if get_request: self.get_request() def get_request(self): self.nba_response = NBAStatsHTTP().send_api_request( - endpoint=self.endpoint_url.format(game_id=self.parameters.get("GameID")), - parameters=self.parameters, + endpoint=self.endpoint_url.format(self.game_id), + parameters=None, proxy=self.proxy, headers=self.headers, timeout=self.timeout ) - # self.load_response() + #self.load_response() def load_response(self): data_sets = self.nba_response.get_data_sets() self.data_sets = [Endpoint.DataSet(data=data_set) for data_set_name, data_set in data_sets.items()] - self.available_video = Endpoint.DataSet(data=data_sets['AvailableVideo']) - self.play_by_play = Endpoint.DataSet(data=data_sets['PlayByPlay']) + self.meta = Endpoint.DataSet(data=data_sets['meta']) + self.game = Endpoint.DataSet(data=data_sets['game']) diff --git a/nba_api/live/endpoints/scoreboard.py b/nba_api/live/endpoints/scoreboard.py new file mode 100644 index 00000000..8e509eaa --- /dev/null +++ b/nba_api/live/endpoints/scoreboard.py @@ -0,0 +1,41 @@ +from nba_api.stats.endpoints._base import Endpoint +from nba_api.live.library.http import NBAStatsHTTP +from nba_api.stats.library.parameters import EndPeriod, StartPeriod + +class PlayByPlay(Endpoint): + endpoint_url = 'scoreboard/todaysScoreboard_00.json' + #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} + + nba_response = None + data_sets = None + player_stats = None + team_stats = None + headers = None + + def __init__(self, + proxy=None, + headers=None, + timeout=30, + get_request=True): + self.proxy = proxy + if headers is not None: + self.headers = headers + self.timeout = timeout + if get_request: + self.get_request() + + def get_request(self): + self.nba_response = NBAStatsHTTP().send_api_request( + endpoint=self.endpoint_url, + parameters=None, + proxy=self.proxy, + headers=self.headers, + timeout=self.timeout + ) + #self.load_response() + + def load_response(self): + data_sets = self.nba_response.get_data_sets() + self.data_sets = [Endpoint.DataSet(data=data_set) for data_set_name, data_set in data_sets.items()] + self.meta = Endpoint.DataSet(data=data_sets['meta']) + self.game = Endpoint.DataSet(data=data_sets['game']) diff --git a/nba_api/live/library/http.py b/nba_api/live/library/http.py index 1bffeea1..81491342 100644 --- a/nba_api/live/library/http.py +++ b/nba_api/live/library/http.py @@ -77,10 +77,7 @@ def get_headers_from_data_sets(self): def get_data_sets(self): raw_dict = self.get_dict() - if 'resultSets' in raw_dict: - results = raw_dict['resultSets'] - else: - results = raw_dict['resultSet'] + results = raw_dict['game'] if isinstance(results, dict): if 'name' not in results: return {} From 333e967e3bdc3aae11e788b9d2943c0813b32613 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sat, 26 Dec 2020 12:28:41 -0500 Subject: [PATCH 05/20] updated live/endpoits/__init__.py to include new endpoints. --- nba_api/live/endpoints/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nba_api/live/endpoints/__init__.py b/nba_api/live/endpoints/__init__.py index df454b39..eb872a5a 100644 --- a/nba_api/live/endpoints/__init__.py +++ b/nba_api/live/endpoints/__init__.py @@ -1,5 +1,8 @@ __all__ = [ - 'playbyplay' + 'playbyplay', + 'boxscore', + 'gameodds', + 'scoreboard' ] from .playbyplay import PlayByPlay From ec2b6ff5979b964d618c3005b6e39adacbe2231a Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sat, 26 Dec 2020 12:33:00 -0500 Subject: [PATCH 06/20] reverting nba_api/status/library/http.py to original --- nba_api/stats/library/http.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nba_api/stats/library/http.py b/nba_api/stats/library/http.py index 7d7d5dc7..6ff9ff97 100644 --- a/nba_api/stats/library/http.py +++ b/nba_api/stats/library/http.py @@ -81,7 +81,6 @@ def get_headers_from_data_sets(self): def get_data_sets(self): raw_dict = self.get_dict() - print(raw_dict) if 'resultSets' in raw_dict: results = raw_dict['resultSets'] else: From 720e2abdae5c126570869a2ed9df5a9da757741f Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sat, 26 Dec 2020 13:21:12 -0500 Subject: [PATCH 07/20] added fully working examples of live data in docs/examples/PlayByPlay_Live.ipynb --- docs/examples/PlayByPlay_Live.ipynb | 112 ++++++++------------------- nba_api/live/endpoints/_base.py | 52 +++++++++++++ nba_api/live/endpoints/boxscore.py | 7 +- nba_api/live/endpoints/gameodds.py | 9 +-- nba_api/live/endpoints/playbyplay.py | 6 +- nba_api/live/endpoints/scoreboard.py | 6 +- 6 files changed, 97 insertions(+), 95 deletions(-) create mode 100644 nba_api/live/endpoints/_base.py diff --git a/docs/examples/PlayByPlay_Live.ipynb b/docs/examples/PlayByPlay_Live.ipynb index 9b2f77d6..880b958b 100644 --- a/docs/examples/PlayByPlay_Live.ipynb +++ b/docs/examples/PlayByPlay_Live.ipynb @@ -12,65 +12,7 @@ }, { "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "pacers_id: 1610612754\n" - ] - } - ], - "source": [ - "#First, let's get a team's numeric id. In this case, we'll get the Pacers\n", - "from nba_api.stats.static import teams\n", - "\n", - "nba_teams = teams.get_teams()\n", - "\n", - "# Select the dictionary for the Pacers, which contains their team ID\n", - "pacers = [team for team in nba_teams if team['abbreviation'] == 'IND'][0]\n", - "pacers_id = pacers['id']\n", - "print(f'pacers_id: {pacers_id}')" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'resource': 'leaguegamefinderparameters', 'parameters': {'PlayerOrTeam': 'T', 'LeagueID': None, 'Season': '2020-21', 'SeasonType': 'Regular Season', 'TeamID': '1610612754', 'VsTeamID': None, 'PlayerID': None, 'GameID': None, 'Outcome': None, 'Location': None, 'DateFrom': None, 'DateTo': None, 'VsConference': None, 'VsDivision': None, 'Conference': None, 'Division': None, 'DraftYear': None, 'DraftNumber': None, 'DraftRound': None, 'DraftTeamID': None, 'RookieYear': None, 'YearsExperience': None, 'SeasonSegment': None, 'PORound': None, 'StarterBench': None, 'GtPTS': None, 'GtREB': None, 'GtAST': None, 'GtSTL': None, 'GtBLK': None, 'GtOREB': None, 'GtDREB': None, 'GtDD': None, 'GtTD': None, 'GtMINUTES': None, 'GtTOV': None, 'GtPF': None, 'GtFGM': None, 'GtFGA': None, 'GtFG_PCT': None, 'GtFTM': None, 'GtFTA': None, 'GtFT_PCT': None, 'GtFG3M': None, 'GtFG3A': None, 'GtFG3_PCT': None, 'LtPTS': None, 'LtREB': None, 'LtAST': None, 'LtSTL': None, 'LtBLK': None, 'LtOREB': None, 'LtDREB': None, 'LtDD': None, 'LtTD': None, 'LtMINUTES': None, 'LtTOV': None, 'LtPF': None, 'LtFGM': None, 'LtFGA': None, 'LtFG_PCT': None, 'LtFTM': None, 'LtFTA': None, 'LtFT_PCT': None, 'LtFG3M': None, 'LtFG3A': None, 'LtFG3_PCT': None, 'EqPTS': None, 'EqREB': None, 'EqAST': None, 'EqSTL': None, 'EqBLK': None, 'EqOREB': None, 'EqDREB': None, 'EqDD': None, 'EqTD': None, 'EqMINUTES': None, 'EqTOV': None, 'EqPF': None, 'EqFGM': None, 'EqFGA': None, 'EqFG_PCT': None, 'EqFTM': None, 'EqFTA': None, 'EqFT_PCT': None, 'EqFG3M': None, 'EqFG3A': None, 'EqFG3_PCT': None}, 'resultSets': [{'name': 'LeagueGameFinderResults', 'headers': ['SEASON_ID', 'TEAM_ID', 'TEAM_ABBREVIATION', 'TEAM_NAME', 'GAME_ID', 'GAME_DATE', 'MATCHUP', 'WL', 'MIN', 'PTS', 'FGM', 'FGA', 'FG_PCT', 'FG3M', 'FG3A', 'FG3_PCT', 'FTM', 'FTA', 'FT_PCT', 'OREB', 'DREB', 'REB', 'AST', 'STL', 'BLK', 'TOV', 'PF', 'PLUS_MINUS'], 'rowSet': [['22020', 1610612754, 'IND', 'Indiana Pacers', '0022000011', '2020-12-23', 'IND vs. NYK', 'W', 239, 121, 46, 94, 0.489, 8, 34, 0.235, 21, 29, 0.724, 10, 40, 50, 28, 6, 9, 13, 24, 8.6]]}]}\n", - "Searching through 1 game(s) for the game_id of 0022000011 where IND vs. NYK\n" - ] - } - ], - "source": [ - "#Query for the last regular season game where the Pacers played\n", - "from nba_api.stats.endpoints import leaguegamefinder\n", - "from nba_api.stats.library.parameters import Season\n", - "from nba_api.stats.library.parameters import SeasonType\n", - "\n", - "gamefinder = leaguegamefinder.LeagueGameFinder(team_id_nullable=pacers_id,\n", - " season_nullable=Season.default,\n", - " season_type_nullable=SeasonType.regular) \n", - "\n", - "games_dict = gamefinder.get_normalized_dict()\n", - "games = games_dict['LeagueGameFinderResults']\n", - "game = games[0]\n", - "game_id = game['GAME_ID']\n", - "game_matchup = game['MATCHUP']\n", - "\n", - "print(f'Searching through {len(games)} game(s) for the game_id of {game_id} where {game_matchup}')" - ] - }, - { - "cell_type": "code", - "execution_count": 29, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -82,9 +24,9 @@ } ], "source": [ - "# Query nba.live.endpoints for the play by play of that most recent regular season game\n", + "# Query nba.live.endpoints for the play by play of GameID 002200011 = IND vs NYK\n", "from nba_api.live.endpoints import playbyplay\n", - "actions = playbyplay.PlayByPlay(game_id).get_dict()['game']['actions']\n", + "actions = playbyplay.PlayByPlay('0022000011').get_dict()['game']['actions']\n", "action_keys = []\n", "for actions in actions:\n", " for key in actions.keys():\n", @@ -102,46 +44,60 @@ "name": "stdout", "output_type": "stream", "text": [ - "{'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000011/playbyplay?Format=json', 'time': '2020-12-23 23:28:42.239540'}\n" + "{'odds': {'gameId': '0022000011', 'team': None, 'odds': 0.0, 'suspended': 1}}\n" ] } ], "source": [ - "#The first block of the retuned json is 'meta'\n", - "print(json['meta'])" + "# Query nba.live.endpoints for the game Odds of GameID 002200011 = IND vs NYK)\n", + "from nba_api.live.endpoints import gameodds\n", + "data = gameodds.GameOdds('0022000011').get_dict()\n", + "print(data)" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "{'gameId': '0022000011', 'actions': [{'actionNumber': 2, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:13:22.7Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'start', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 0, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:22Z', 'orderNumber': 20000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period Start', 'personIdsFilter': []}, {'actionNumber': 4, 'clock': 'PT11M58.00S', 'timeActual': '2020-12-24T00:13:24.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'jumpball', 'subType': 'recovered', 'descriptor': 'startperiod', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:24Z', 'orderNumber': 40000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'jumpBallRecoveredName': 'D. Sabonis', 'jumpBallRecoverdPersonId': 1627734, 'side': None, 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1626167, 1629011], 'jumpBallWonPlayerName': 'Turner', 'jumpBallWonPersonId': 1626167, 'description': 'Jump Ball M. Turner vs. M. Robinson: Tip to D. Sabonis', 'jumpBallLostPlayerName': 'Robinson', 'jumpBallLostPersonId': 1629011}, {'actionNumber': 7, 'clock': 'PT11M40.00S', 'timeActual': '2020-12-24T00:13:41.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:45Z', 'orderNumber': 70000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'D. Sabonis bad pass TURNOVER (1 TO)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203493], 'stealPlayerName': 'Bullock', 'stealPersonId': 203493}, {'actionNumber': 8, 'clock': 'PT11M40.00S', 'timeActual': '2020-12-24T00:13:41.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:43Z', 'orderNumber': 80000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'R. Bullock STEAL (1 STL)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 9, 'clock': 'PT11M29.00S', 'timeActual': '2020-12-24T00:13:55.0Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:13:55Z', 'orderNumber': 90000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 10, 'clock': 'PT11M19.00S', 'timeActual': '2020-12-24T00:14:16.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 203944, 'x': 4.28712220762155, 'y': 97.86305147058823, 'side': 'left', 'shotDistance': 23.96, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:20Z', 'orderNumber': 100000, 'xLegacy': -239, 'yLegacy': -12, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle 3PT', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 11, 'clock': 'PT11M16.00S', 'timeActual': '2020-12-24T00:14:19.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:20Z', 'orderNumber': 110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 10, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'M. Brogdon REBOUND (Off:0 Def:1)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 12, 'clock': 'PT11M05.00S', 'timeActual': '2020-12-24T00:14:31.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1626167, 'x': 93.51182654402102, 'y': 95.65716911764706, 'side': 'right', 'shotDistance': 22.85, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:34Z', 'orderNumber': 120000, 'xLegacy': 228, 'yLegacy': 8, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Turner 3PT', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 13, 'clock': 'PT11M01.00S', 'timeActual': '2020-12-24T00:14:35.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:34Z', 'orderNumber': 130000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 12, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'M. Robinson REBOUND (Off:0 Def:1)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 14, 'clock': 'PT10M58.00S', 'timeActual': '2020-12-24T00:14:37.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'descriptor': 'charge', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:47Z', 'officialId': 200832, 'orderNumber': 140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'R. Barrett charge offensive FOUL (1 PF)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203506], 'foulDrawnPlayerName': 'Oladipo', 'foulDrawnPersonId': 203506}, {'actionNumber': 16, 'clock': 'PT10M58.00S', 'timeActual': '2020-12-24T00:14:37.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:14:37Z', 'officialId': 200832, 'orderNumber': 160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'R. Barrett offensive foul TURNOVER (1 TO)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 17, 'clock': 'PT10M45.00S', 'timeActual': '2020-12-24T00:15:08.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 203933, 'x': 68.9388961892247, 'y': 15.265012254901961, 'side': 'right', 'shotDistance': 29.59, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:15:13Z', 'orderNumber': 170000, 'xLegacy': -174, 'yLegacy': 239, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS T. Warren 29' 3PT\", 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 18, 'clock': 'PT10M41.00S', 'timeActual': '2020-12-24T00:15:12.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:15:13Z', 'orderNumber': 180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 17, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'R. Bullock REBOUND (Off:0 Def:1)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 19, 'clock': 'PT10M36.00S', 'timeActual': '2020-12-24T00:15:18.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating bank', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203944, 'x': 7.440867279894875, 'y': 48.59834558823529, 'side': 'left', 'shotDistance': 1.88, 'possession': 1610612752, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:15:22Z', 'orderNumber': 190000, 'xLegacy': 7, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle driving floating bank Shot', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 20, 'clock': 'PT10M32.00S', 'timeActual': '2020-12-24T00:15:22.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2020-12-24T00:15:22Z', 'orderNumber': 200000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 19, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'V. Oladipo REBOUND (Off:0 Def:1)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 21, 'clock': 'PT10M29.00S', 'timeActual': '2020-12-24T00:15:24.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['fastbreak', 'pointsinthepaint'], 'personId': 203506, 'x': 94.69448094612353, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 0.7, 'possession': 1610612754, 'scoreHome': '2', 'scoreAway': '0', 'edited': '2020-12-24T00:15:38Z', 'orderNumber': 210000, 'xLegacy': 6, 'yLegacy': -3, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'V. Oladipo running finger roll Layup (2 PTS)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 22, 'clock': 'PT10M06.00S', 'timeActual': '2020-12-24T00:15:47.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '2', 'scoreAway': '0', 'edited': '2020-12-24T00:15:51Z', 'orderNumber': 220000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'J. Randle bad pass TURNOVER (1 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1627763], 'stealPlayerName': 'Brogdon', 'stealPersonId': 1627763}, {'actionNumber': 23, 'clock': 'PT10M06.00S', 'timeActual': '2020-12-24T00:15:47.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '2', 'scoreAway': '0', 'edited': '2020-12-24T00:15:49Z', 'orderNumber': 230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Brogdon STEAL (1 STL)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 24, 'clock': 'PT10M02.00S', 'timeActual': '2020-12-24T00:15:50.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'running', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 1627763, 'x': 93.64323258869908, 'y': 51.049325980392155, 'side': 'right', 'shotDistance': 0.9, 'possession': 1610612754, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:15:56Z', 'orderNumber': 240000, 'xLegacy': 5, 'yLegacy': 7, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'M. Brogdon running DUNK (2 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 25, 'clock': 'PT09M51.00S', 'timeActual': '2020-12-24T00:16:01.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving reverse', 'qualifiers': ['pointsinthepaint'], 'personId': 203901, 'x': 6.652431011826544, 'y': 49.57873774509804, 'side': 'left', 'shotDistance': 1.02, 'possession': 1610612752, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:08Z', 'orderNumber': 250000, 'xLegacy': 2, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS E. Payton driving reverse Layup - blocked', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 26, 'clock': 'PT09M51.00S', 'timeActual': '2020-12-24T00:16:01.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:04Z', 'orderNumber': 260000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (1 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 27, 'clock': 'PT09M49.00S', 'timeActual': '2020-12-24T00:16:03.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:08Z', 'orderNumber': 270000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 25, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'M. Brogdon REBOUND (Off:0 Def:2)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 28, 'clock': 'PT09M38.00S', 'timeActual': '2020-12-24T00:16:15.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1626167, 'x': 94.43166885676742, 'y': 96.8826593137255, 'side': 'right', 'shotDistance': 23.44, 'possession': 1610612754, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:19Z', 'orderNumber': 280000, 'xLegacy': 234, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Turner 3PT', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 29, 'clock': 'PT09M35.00S', 'timeActual': '2020-12-24T00:16:18.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '4', 'scoreAway': '0', 'edited': '2020-12-24T00:16:19Z', 'orderNumber': 290000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 28, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'M. Robinson REBOUND (Off:0 Def:2)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 30, 'clock': 'PT09M22.00S', 'timeActual': '2020-12-24T00:16:31.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1629628, 'x': 26.10052562417871, 'y': 88.05912990196079, 'side': 'left', 'shotDistance': 27.09, 'possession': 1610612752, 'scoreHome': '4', 'scoreAway': '3', 'edited': '2020-12-24T00:16:35Z', 'orderNumber': 300000, 'xLegacy': -190, 'yLegacy': 193, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': \"R. Barrett 27' 3PT pullup (3 PTS) (J. Randle 1 AST)\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 1}, {'actionNumber': 32, 'clock': 'PT09M10.00S', 'timeActual': '2020-12-24T00:16:44.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1627734, 'x': 67.62483574244416, 'y': 28.500306372549016, 'side': 'right', 'shotDistance': 27.38, 'possession': 1610612754, 'scoreHome': '7', 'scoreAway': '3', 'edited': '2020-12-24T00:16:48Z', 'orderNumber': 320000, 'xLegacy': -107, 'yLegacy': 252, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': \"D. Sabonis 27' 3PT (3 PTS) (M. Brogdon 1 AST)\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 1}, {'actionNumber': 34, 'clock': 'PT08M53.00S', 'timeActual': '2020-12-24T00:17:00.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1629628, 'x': 26.888961892247043, 'y': 13.304227941176471, 'side': 'left', 'shotDistance': 27.16, 'possession': 1610612752, 'scoreHome': '7', 'scoreAway': '6', 'edited': '2020-12-24T00:17:04Z', 'orderNumber': 340000, 'xLegacy': 183, 'yLegacy': 200, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': \"R. Barrett 27' 3PT (6 PTS) (R. Bullock 1 AST)\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203493], 'assistPlayerNameInitial': 'R. Bullock', 'assistPersonId': 203493, 'assistTotal': 1}, {'actionNumber': 36, 'clock': 'PT08M41.00S', 'timeActual': '2020-12-24T00:17:16.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '7', 'scoreAway': '6', 'edited': '2020-12-24T00:17:21Z', 'officialId': 202053, 'orderNumber': 360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'E. Payton personal FOUL (1 PF)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 38, 'clock': 'PT08M30.00S', 'timeActual': '2020-12-24T00:17:41.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'step back', 'qualifiers': [], 'personId': 1627763, 'x': 80.50262812089356, 'y': 26.53952205882353, 'side': 'right', 'shotDistance': 17.57, 'possession': 1610612754, 'scoreHome': '9', 'scoreAway': '6', 'edited': '2020-12-24T00:17:44Z', 'orderNumber': 380000, 'xLegacy': -117, 'yLegacy': 131, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': \"M. Brogdon 17' step back Jump Shot (4 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 39, 'clock': 'PT08M15.00S', 'timeActual': '2020-12-24T00:17:55.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203493, 'x': 29.517082785808146, 'y': 49.333639705882355, 'side': 'left', 'shotDistance': 22.5, 'possession': 1610612752, 'scoreHome': '9', 'scoreAway': '6', 'edited': '2020-12-24T00:18:03Z', 'orderNumber': 390000, 'xLegacy': 3, 'yLegacy': 225, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS R. Bullock 22' pullup Shot\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 40, 'clock': 'PT08M13.00S', 'timeActual': '2020-12-24T00:17:57.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '9', 'scoreAway': '6', 'edited': '2020-12-24T00:18:03Z', 'orderNumber': 400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 39, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 41, 'clock': 'PT08M13.00S', 'timeActual': '2020-12-24T00:18:01.1Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '9', 'scoreAway': '6', 'edited': '2020-12-24T00:18:01Z', 'orderNumber': 410000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 42, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:18:27.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Hook', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 88.51839684625493, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 5.59, 'possession': 1610612754, 'scoreHome': '11', 'scoreAway': '6', 'edited': '2020-12-24T00:18:31Z', 'orderNumber': 420000, 'xLegacy': 8, 'yLegacy': 55, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'D. Sabonis Hook (5 PTS) (M. Brogdon 2 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 2}, {'actionNumber': 44, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:18:32.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '11', 'scoreAway': '6', 'edited': '2020-12-24T00:18:53Z', 'officialId': 200832, 'orderNumber': 440000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'M. Robinson shooting personal FOUL (1 PF) (Sabonis 1 FT)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 46, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:18:55.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '6', 'edited': '2020-12-24T00:18:55Z', 'orderNumber': 460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'D. Sabonis Free Throw 1 of 1 (6 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 47, 'clock': 'PT07M45.00S', 'timeActual': '2020-12-24T00:19:10.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 8.229303547963205, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 2.57, 'possession': 1610612752, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:14Z', 'orderNumber': 470000, 'xLegacy': -6, 'yLegacy': 25, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'J. Randle cutting finger roll Layup (2 PTS) (R. Barrett 1 AST)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 1}, {'actionNumber': 49, 'clock': 'PT07M42.00S', 'timeActual': '2020-12-24T00:19:15.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:32Z', 'orderNumber': 490000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'D. Sabonis bad pass TURNOVER (2 TO)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203901], 'stealPlayerName': 'Payton', 'stealPersonId': 203901}, {'actionNumber': 50, 'clock': 'PT07M42.00S', 'timeActual': '2020-12-24T00:19:15.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:17Z', 'orderNumber': 500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'E. Payton STEAL (1 STL)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 51, 'clock': 'PT07M38.00S', 'timeActual': '2020-12-24T00:19:18.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 203493, 'x': 32.013797634691194, 'y': 62.814031862745104, 'side': 'left', 'shotDistance': 25.65, 'possession': 1610612752, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:21Z', 'orderNumber': 510000, 'xLegacy': -64, 'yLegacy': 248, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS R. Bullock 25' 3PT\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 52, 'clock': 'PT07M35.00S', 'timeActual': '2020-12-24T00:19:21.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:43Z', 'orderNumber': 520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 51, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 53, 'clock': 'PT07M35.00S', 'timeActual': '2020-12-24T00:19:23.8Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:23Z', 'orderNumber': 530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 54, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:19:48.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '12', 'scoreAway': '8', 'edited': '2020-12-24T00:19:55Z', 'officialId': 202053, 'orderNumber': 540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'M. Robinson shooting personal FOUL (2 PF) (Sabonis 2 FT)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 56, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:20:11.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '13', 'scoreAway': '8', 'edited': '2020-12-24T00:20:11Z', 'orderNumber': 560000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 7, 'description': 'D. Sabonis Free Throw 1 of 2 (7 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 57, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:20:12.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '13', 'scoreAway': '8', 'edited': '2020-12-24T00:20:16Z', 'orderNumber': 570000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 58, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:20:12.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '13', 'scoreAway': '8', 'edited': '2020-12-24T00:20:16Z', 'orderNumber': 580000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: N. Noel', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 59, 'clock': 'PT07M25.00S', 'timeActual': '2020-12-24T00:20:29.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '14', 'scoreAway': '8', 'edited': '2020-12-24T00:20:29Z', 'orderNumber': 590000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'D. Sabonis Free Throw 2 of 2 (8 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 60, 'clock': 'PT07M14.00S', 'timeActual': '2020-12-24T00:20:43.5Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '14', 'scoreAway': '8', 'edited': '2020-12-24T00:20:43Z', 'orderNumber': 600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 61, 'clock': 'PT07M08.00S', 'timeActual': '2020-12-24T00:21:01.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 17.95335085413929, 'y': 95.41207107843137, 'side': 'left', 'shotDistance': 25.51, 'possession': 1610612752, 'scoreHome': '14', 'scoreAway': '11', 'edited': '2020-12-24T00:21:05Z', 'orderNumber': 610000, 'xLegacy': -227, 'yLegacy': 116, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': \"R. Bullock 25' 3PT (3 PTS) (R. Barrett 2 AST)\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 2}, {'actionNumber': 63, 'clock': 'PT06M49.00S', 'timeActual': '2020-12-24T00:21:19.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1627734, 'x': 73.27529566360053, 'y': 88.79442401960785, 'side': 'right', 'shotDistance': 27.77, 'possession': 1610612754, 'scoreHome': '17', 'scoreAway': '11', 'edited': '2020-12-24T00:21:23Z', 'orderNumber': 630000, 'xLegacy': 194, 'yLegacy': 199, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 11, 'description': \"D. Sabonis 27' 3PT (11 PTS) (T. Warren 1 AST)\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203933], 'assistPlayerNameInitial': 'T. Warren', 'assistPersonId': 203933, 'assistTotal': 1}, {'actionNumber': 65, 'clock': 'PT06M38.00S', 'timeActual': '2020-12-24T00:21:31.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '17', 'scoreAway': '11', 'edited': '2020-12-24T00:21:34Z', 'orderNumber': 650000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'E. Payton lost ball TURNOVER (1 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1627763], 'stealPlayerName': 'Brogdon', 'stealPersonId': 1627763}, {'actionNumber': 66, 'clock': 'PT06M38.00S', 'timeActual': '2020-12-24T00:21:31.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '17', 'scoreAway': '11', 'edited': '2020-12-24T00:21:32Z', 'orderNumber': 660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Brogdon STEAL (2 STL)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 67, 'clock': 'PT06M35.00S', 'timeActual': '2020-12-24T00:21:34.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 1627763, 'x': 93.24901445466492, 'y': 52.029718137254896, 'side': 'right', 'shotDistance': 1.49, 'possession': 1610612754, 'scoreHome': '19', 'scoreAway': '11', 'edited': '2020-12-24T00:21:44Z', 'orderNumber': 670000, 'xLegacy': 10, 'yLegacy': 11, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'M. Brogdon running finger roll Layup (6 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 68, 'clock': 'PT06M29.00S', 'timeActual': '2020-12-24T00:21:42.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '19', 'scoreAway': '11', 'edited': '2020-12-24T00:21:42Z', 'orderNumber': 680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'NYK Timeout', 'personIdsFilter': []}, {'actionNumber': 69, 'clock': 'PT06M29.00S', 'timeActual': '2020-12-24T00:24:40.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '19', 'scoreAway': '11', 'edited': '2020-12-24T00:24:47Z', 'orderNumber': 690000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 70, 'clock': 'PT06M29.00S', 'timeActual': '2020-12-24T00:24:40.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '19', 'scoreAway': '11', 'edited': '2020-12-24T00:24:47Z', 'orderNumber': 700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 71, 'clock': 'PT06M16.00S', 'timeActual': '2020-12-24T00:25:13.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 7.440867279894875, 'y': 5.215992647058823, 'side': 'left', 'shotDistance': 22.46, 'possession': 1610612752, 'scoreHome': '19', 'scoreAway': '14', 'edited': '2020-12-24T00:25:16Z', 'orderNumber': 710000, 'xLegacy': 224, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'R. Bullock 3PT (6 PTS) (J. Randle 2 AST)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 2}, {'actionNumber': 73, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:25:30.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['3freethrow'], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '19', 'scoreAway': '14', 'edited': '2020-12-24T00:26:07Z', 'officialId': 200832, 'orderNumber': 730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'R. Bullock shooting personal FOUL (1 PF) (Oladipo 3 FT)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 203506], 'foulDrawnPlayerName': 'Oladipo', 'foulDrawnPersonId': 203506}, {'actionNumber': 75, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:26:20.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 3', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '19', 'scoreAway': '14', 'edited': '2020-12-24T00:26:20Z', 'orderNumber': 750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS V. Oladipo Free Throw 1 of 3', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 76, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:26:20.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '19', 'scoreAway': '14', 'edited': '2020-12-24T00:26:20Z', 'orderNumber': 760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 75, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 77, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:26:33.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 3', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '20', 'scoreAway': '14', 'edited': '2020-12-24T00:26:33Z', 'orderNumber': 770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'V. Oladipo Free Throw 2 of 3 (3 PTS)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 78, 'clock': 'PT06M00.00S', 'timeActual': '2020-12-24T00:26:46.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '3 of 3', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:26:46Z', 'orderNumber': 780000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'V. Oladipo Free Throw 3 of 3 (4 PTS)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 79, 'clock': 'PT05M49.00S', 'timeActual': '2020-12-24T00:26:59.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 28.728646517739815, 'y': 18.45128676470588, 'side': 'left', 'shotDistance': 26.87, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:27:03Z', 'orderNumber': 790000, 'xLegacy': 158, 'yLegacy': 218, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS R. Bullock 26' 3PT\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 80, 'clock': 'PT05M46.00S', 'timeActual': '2020-12-24T00:27:02.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:27:03Z', 'orderNumber': 800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 79, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:1)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 81, 'clock': 'PT05M34.00S', 'timeActual': '2020-12-24T00:27:13.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'fadeaway', 'qualifiers': [], 'personId': 1627763, 'x': 95.87713534822602, 'y': 80.21599264705883, 'side': 'right', 'shotDistance': 15.17, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:27:22Z', 'orderNumber': 810000, 'xLegacy': 151, 'yLegacy': -14, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Brogdon 15' fadeaway Shot\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 82, 'clock': 'PT05M32.00S', 'timeActual': '2020-12-24T00:27:15.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '14', 'edited': '2020-12-24T00:27:22Z', 'orderNumber': 820000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 81, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:1)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 83, 'clock': 'PT05M26.00S', 'timeActual': '2020-12-24T00:27:21.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203901, 'x': 6.783837056504599, 'y': 52.27481617647059, 'side': 'left', 'shotDistance': 1.61, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '16', 'edited': '2020-12-24T00:27:25Z', 'orderNumber': 830000, 'xLegacy': -11, 'yLegacy': 11, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'E. Payton driving finger roll Layup (2 PTS) (R. Barrett 3 AST)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 3}, {'actionNumber': 85, 'clock': 'PT05M14.00S', 'timeActual': '2020-12-24T00:27:33.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 203933, 'x': 88.78120893561103, 'y': 59.62775735294118, 'side': 'right', 'shotDistance': 7.16, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '16', 'edited': '2020-12-24T00:27:37Z', 'orderNumber': 850000, 'xLegacy': 48, 'yLegacy': 53, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS T. Warren 7' driving floating Shot\", 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 86, 'clock': 'PT05M12.00S', 'timeActual': '2020-12-24T00:27:35.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '16', 'edited': '2020-12-24T00:27:37Z', 'orderNumber': 860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 85, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:1)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 87, 'clock': 'PT05M05.00S', 'timeActual': '2020-12-24T00:27:42.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203493, 'x': 7.046649145860711, 'y': 49.333639705882355, 'side': 'left', 'shotDistance': 1.41, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:27:45Z', 'orderNumber': 870000, 'xLegacy': 3, 'yLegacy': 14, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'R. Bullock cutting finger roll Layup (8 PTS) (J. Randle 3 AST)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 3}, {'actionNumber': 89, 'clock': 'PT04M54.00S', 'timeActual': '2020-12-24T00:27:53.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint'], 'personId': 203506, 'x': 94.56307490144546, 'y': 50.55912990196079, 'side': 'right', 'shotDistance': 0.31, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:27:57Z', 'orderNumber': 890000, 'xLegacy': 3, 'yLegacy': -1, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS V. Oladipo cutting Layup - blocked', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 203457], 'blockPlayerName': 'Noel', 'blockPersonId': 203457}, {'actionNumber': 106, 'clock': 'PT04M54.00S', 'timeActual': '2020-12-24T00:27:53.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:29:46Z', 'orderNumber': 895000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'N. Noel BLOCK (1 BLK)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 90, 'clock': 'PT04M51.00S', 'timeActual': '2020-12-24T00:27:56.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:27:57Z', 'orderNumber': 900000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 89, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'N. Noel REBOUND (Off:0 Def:1)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 91, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:01.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:12Z', 'officialId': 200832, 'orderNumber': 910000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'M. Brogdon personal FOUL (1 PF)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 93, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:14Z', 'orderNumber': 930000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: T. Warren', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 94, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:14Z', 'orderNumber': 940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Bullock', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 95, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:14Z', 'orderNumber': 950000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. McDermott', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 96, 'clock': 'PT04M49.00S', 'timeActual': '2020-12-24T00:28:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '18', 'edited': '2020-12-24T00:28:14Z', 'orderNumber': 960000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 97, 'clock': 'PT04M42.00S', 'timeActual': '2020-12-24T00:28:35.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 6.915243101182654, 'y': 53.50030637254902, 'side': 'left', 'shotDistance': 2.15, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:28:38Z', 'orderNumber': 970000, 'xLegacy': -18, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'R. Barrett driving finger roll Layup (8 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 98, 'clock': 'PT04M29.00S', 'timeActual': '2020-12-24T00:28:47.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203200, 'x': 71.30420499342969, 'y': 17.47089460784314, 'side': 'right', 'shotDistance': 27.13, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:28:54Z', 'orderNumber': 980000, 'xLegacy': -163, 'yLegacy': 217, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS J. Holiday 27' 3PT\", 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 99, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:28:49.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:28:54Z', 'orderNumber': 990000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 98, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 100, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:28:52.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'loose ball', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:06Z', 'officialId': 200832, 'orderNumber': 1000000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'N. Noel loose ball personal FOUL (1 PF) (Sabonis 2 FT)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 102, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:29:21.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['2ndchance'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:21Z', 'orderNumber': 1020000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Free Throw 1 of 2', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 103, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:29:21.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:21Z', 'orderNumber': 1030000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 102, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 104, 'clock': 'PT04M27.00S', 'timeActual': '2020-12-24T00:29:21.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['2ndchance'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:40Z', 'orderNumber': 1040000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Free Throw 2 of 2', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 105, 'clock': 'PT04M26.00S', 'timeActual': '2020-12-24T00:29:22.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:40Z', 'orderNumber': 1050000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 104, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:2)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 107, 'clock': 'PT04M18.00S', 'timeActual': '2020-12-24T00:29:47.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:50Z', 'orderNumber': 1060000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'E. Payton bad pass TURNOVER (2 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 203506], 'stealPlayerName': 'Oladipo', 'stealPersonId': 203506}, {'actionNumber': 108, 'clock': 'PT04M18.00S', 'timeActual': '2020-12-24T00:29:47.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '21', 'scoreAway': '20', 'edited': '2020-12-24T00:29:48Z', 'orderNumber': 1070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'V. Oladipo STEAL (1 STL)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 109, 'clock': 'PT04M13.00S', 'timeActual': '2020-12-24T00:29:51.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'running', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 1627734, 'x': 93.51182654402102, 'y': 52.76501225490197, 'side': 'right', 'shotDistance': 1.62, 'possession': 1610612754, 'scoreHome': '23', 'scoreAway': '20', 'edited': '2020-12-24T00:34:50Z', 'orderNumber': 1080000, 'xLegacy': 14, 'yLegacy': 8, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'D. Sabonis running DUNK (13 PTS) (M. Brogdon 3 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 3}, {'actionNumber': 111, 'clock': 'PT03M56.00S', 'timeActual': '2020-12-24T00:30:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 8.492115637319317, 'y': 50.314031862745104, 'side': 'left', 'shotDistance': 2.73, 'possession': 1610612752, 'scoreHome': '23', 'scoreAway': '22', 'edited': '2020-12-24T00:30:12Z', 'orderNumber': 1100000, 'xLegacy': -2, 'yLegacy': 27, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': 'R. Barrett driving finger roll Layup (10 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 112, 'clock': 'PT03M43.00S', 'timeActual': '2020-12-24T00:30:21.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203506, 'x': 70.90998685939553, 'y': 16.490502450980394, 'side': 'right', 'shotDistance': 27.72, 'possession': 1610612754, 'scoreHome': '23', 'scoreAway': '22', 'edited': '2020-12-24T00:30:26Z', 'orderNumber': 1110000, 'xLegacy': -168, 'yLegacy': 221, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS V. Oladipo 27' 3PT\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 113, 'clock': 'PT03M39.00S', 'timeActual': '2020-12-24T00:30:25.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '23', 'scoreAway': '22', 'edited': '2020-12-24T00:30:25Z', 'orderNumber': 1120000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 112, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'M. Brogdon REBOUND (Off:1 Def:2)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 114, 'clock': 'PT03M38.00S', 'timeActual': '2020-12-24T00:30:26.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1627763, 'x': 92.9862023653088, 'y': 49.82383578431372, 'side': 'right', 'shotDistance': 1.34, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:29Z', 'orderNumber': 1130000, 'xLegacy': -1, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'M. Brogdon driving finger roll Layup (8 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 115, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:41.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'descriptor': 'off-the-ball', 'qualifiers': ['inpenalty'], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:46Z', 'officialId': 202053, 'orderNumber': 1140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'N. Noel off-the-ball offensive FOUL (2 PF)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 117, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:41.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:41Z', 'officialId': 202053, 'orderNumber': 1160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'N. Noel offensive foul TURNOVER (1 TO)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 118, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:46.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:51Z', 'orderNumber': 1170000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 119, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:46.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:51Z', 'orderNumber': 1180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 120, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:46.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:51Z', 'orderNumber': 1190000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 121, 'clock': 'PT03M27.00S', 'timeActual': '2020-12-24T00:30:46.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '25', 'scoreAway': '22', 'edited': '2020-12-24T00:30:51Z', 'orderNumber': 1200000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: I. Quickley', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 122, 'clock': 'PT03M15.00S', 'timeActual': '2020-12-24T00:31:12.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 1626167, 'x': 86.5473061760841, 'y': 59.872855392156865, 'side': 'right', 'shotDistance': 8.9, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '22', 'edited': '2020-12-24T00:31:17Z', 'orderNumber': 1210000, 'xLegacy': 49, 'yLegacy': 74, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': \"M. Turner 8' pullup Jump Shot (2 PTS) (M. Brogdon 4 AST)\", 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 4}, {'actionNumber': 124, 'clock': 'PT03M06.00S', 'timeActual': '2020-12-24T00:31:23.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating bank', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 6.389618922470433, 'y': 50.06893382352941, 'side': 'left', 'shotDistance': 0.76, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '24', 'edited': '2020-12-24T00:31:42Z', 'orderNumber': 1230000, 'xLegacy': 0, 'yLegacy': 8, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'J. Randle driving floating bank Jump Shot (4 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 125, 'clock': 'PT03M06.00S', 'timeActual': '2020-12-24T00:31:28.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '24', 'edited': '2020-12-24T00:31:39Z', 'officialId': 200832, 'orderNumber': 1240000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'J. Holiday shooting personal FOUL (1 PF) (Randle 1 FT)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 127, 'clock': 'PT03M06.00S', 'timeActual': '2020-12-24T00:31:50.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:31:50Z', 'orderNumber': 1260000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'J. Randle Free Throw 1 of 1 (5 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 128, 'clock': 'PT02M57.00S', 'timeActual': '2020-12-24T00:32:01.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:32:06Z', 'orderNumber': 1270000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'V. Oladipo lost ball TURNOVER (1 TO)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 202692], 'stealPlayerName': 'Burks', 'stealPersonId': 202692}, {'actionNumber': 129, 'clock': 'PT02M57.00S', 'timeActual': '2020-12-24T00:32:01.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:32:04Z', 'orderNumber': 1280000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'A. Burks STEAL (1 STL)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 130, 'clock': 'PT02M53.00S', 'timeActual': '2020-12-24T00:32:06.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 202692, 'x': 6.915243101182654, 'y': 50.06893382352941, 'side': 'left', 'shotDistance': 1.25, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:32:10Z', 'orderNumber': 1290000, 'xLegacy': 0, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Burks Layup', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 132, 'clock': 'PT02M50.00S', 'timeActual': '2020-12-24T00:32:09.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '25', 'edited': '2020-12-24T00:32:10Z', 'orderNumber': 1310000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 130, 'reboundTotal': 2, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 1, 'description': 'N. Noel REBOUND (Off:1 Def:1)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 133, 'clock': 'PT02M50.00S', 'timeActual': '2020-12-24T00:32:09.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'tip', 'qualifiers': ['pointsinthepaint', 'fromturnover', '2ndchance'], 'personId': 203457, 'x': 5.590000152587891, 'y': 50.0, 'side': 'left', 'shotDistance': 0.0, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:32:09Z', 'orderNumber': 1320000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'N. Noel tip Layup (2 PTS)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 134, 'clock': 'PT02M44.00S', 'timeActual': '2020-12-24T00:32:16.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:32:16Z', 'orderNumber': 1330000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 136, 'clock': 'PT02M44.00S', 'timeActual': '2020-12-24T00:34:33.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:34:50Z', 'orderNumber': 1340000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 137, 'clock': 'PT02M44.00S', 'timeActual': '2020-12-24T00:34:33.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:34:50Z', 'orderNumber': 1350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 138, 'clock': 'PT02M34.00S', 'timeActual': '2020-12-24T00:35:23.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:26Z', 'orderNumber': 1360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'M. Turner bad pass TURNOVER (1 TO)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 203457], 'stealPlayerName': 'Noel', 'stealPersonId': 203457}, {'actionNumber': 139, 'clock': 'PT02M34.00S', 'timeActual': '2020-12-24T00:35:23.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:24Z', 'orderNumber': 1370000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'N. Noel STEAL (1 STL)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 140, 'clock': 'PT02M30.00S', 'timeActual': '2020-12-24T00:35:27.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running', 'qualifiers': ['pointsinthepaint', 'fromturnover', 'fastbreak'], 'personId': 202692, 'x': 7.835085413929041, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 2.21, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:31Z', 'orderNumber': 1380000, 'xLegacy': -6, 'yLegacy': 21, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Burks running Layup - blocked', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 141, 'clock': 'PT02M30.00S', 'timeActual': '2020-12-24T00:35:27.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:29Z', 'orderNumber': 1390000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (2 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 142, 'clock': 'PT02M28.00S', 'timeActual': '2020-12-24T00:35:29.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:31Z', 'orderNumber': 1400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 140, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'J. Holiday REBOUND (Off:0 Def:1)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 143, 'clock': 'PT02M25.00S', 'timeActual': '2020-12-24T00:35:33.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'running', 'qualifiers': ['fastbreak'], 'personId': 203926, 'x': 78.13731931668858, 'y': 8.402267156862745, 'side': 'right', 'shotDistance': 25.82, 'possession': 1610612754, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:46:21Z', 'orderNumber': 1410000, 'xLegacy': -208, 'yLegacy': 153, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 25' running 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 144, 'clock': 'PT02M20.00S', 'timeActual': '2020-12-24T00:35:38.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '27', 'edited': '2020-12-24T00:35:38Z', 'orderNumber': 1420000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 143, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:2)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 145, 'clock': 'PT02M10.00S', 'timeActual': '2020-12-24T00:35:46.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 202692, 'x': 3.4986859395532193, 'y': 97.86305147058823, 'side': 'left', 'shotDistance': 24.01, 'possession': 1610612752, 'scoreHome': '27', 'scoreAway': '30', 'edited': '2020-12-24T00:35:50Z', 'orderNumber': 1430000, 'xLegacy': -239, 'yLegacy': -20, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': \"A. Burks 24' 3PT (3 PTS) (J. Randle 4 AST)\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 4}, {'actionNumber': 147, 'clock': 'PT01M46.00S', 'timeActual': '2020-12-24T00:36:11.5Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1627763, 'x': 73.14388961892247, 'y': 51.78462009803921, 'side': 'right', 'shotDistance': 20.01, 'possession': 1610612754, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:36:16Z', 'orderNumber': 1450000, 'xLegacy': 9, 'yLegacy': 200, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': \"M. Brogdon 20' pullup Jump Shot (10 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 148, 'clock': 'PT01M27.00S', 'timeActual': '2020-12-24T00:36:32.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'traveling', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:36:38Z', 'officialId': 1627541, 'orderNumber': 1460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'J. Randle traveling TURNOVER (2 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 149, 'clock': 'PT01M27.00S', 'timeActual': '2020-12-24T00:36:36.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:36:40Z', 'orderNumber': 1470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Brogdon', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 150, 'clock': 'PT01M27.00S', 'timeActual': '2020-12-24T00:36:36.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:36:40Z', 'orderNumber': 1480000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 151, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:03.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '29', 'scoreAway': '30', 'edited': '2020-12-24T00:37:09Z', 'officialId': 1627541, 'orderNumber': 1490000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'N. Noel shooting personal FOUL (3 PF) (McDermott 2 FT)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457, 203926], 'foulDrawnPlayerName': 'McDermott', 'foulDrawnPersonId': 203926}, {'actionNumber': 153, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:34.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fromturnover'], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:34Z', 'orderNumber': 1510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 1, 'description': 'D. McDermott Free Throw 1 of 2 (1 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 154, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:35.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:44Z', 'orderNumber': 1520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: N. Noel', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 155, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:35.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:44Z', 'orderNumber': 1530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 156, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:35.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:44Z', 'orderNumber': 1540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 157, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:35.9Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '30', 'scoreAway': '30', 'edited': '2020-12-24T00:37:44Z', 'orderNumber': 1550000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 158, 'clock': 'PT01M15.00S', 'timeActual': '2020-12-24T00:37:56.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fromturnover'], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:37:56Z', 'orderNumber': 1560000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'D. McDermott Free Throw 2 of 2 (2 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 159, 'clock': 'PT01M03.00S', 'timeActual': '2020-12-24T00:38:10.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'qualifiers': ['inpenalty'], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:27Z', 'officialId': 1627541, 'orderNumber': 1570000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'J. Randle offensive FOUL (1 PF)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1626167], 'foulDrawnPlayerName': 'Turner', 'foulDrawnPersonId': 1626167}, {'actionNumber': 161, 'clock': 'PT01M03.00S', 'timeActual': '2020-12-24T00:38:10.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:10Z', 'officialId': 1627541, 'orderNumber': 1590000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 3, 'description': 'J. Randle offensive foul TURNOVER (3 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 162, 'clock': 'PT00M54.20S', 'timeActual': '2020-12-24T00:38:37.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:41Z', 'orderNumber': 1600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'T. McConnell lost ball TURNOVER (1 TO)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 1630193], 'stealPlayerName': 'Quickley', 'stealPersonId': 1630193}, {'actionNumber': 163, 'clock': 'PT00M54.20S', 'timeActual': '2020-12-24T00:38:37.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:38Z', 'orderNumber': 1610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'I. Quickley STEAL (1 STL)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 164, 'clock': 'PT00M51.50S', 'timeActual': '2020-12-24T00:38:39.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 203944, 'x': 5.338370565045992, 'y': 52.27481617647059, 'side': 'left', 'shotDistance': 1.16, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:48Z', 'orderNumber': 1620000, 'xLegacy': -11, 'yLegacy': -2, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle driving Layup - blocked', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 165, 'clock': 'PT00M51.50S', 'timeActual': '2020-12-24T00:38:39.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:41Z', 'orderNumber': 1630000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (3 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 166, 'clock': 'PT00M48.90S', 'timeActual': '2020-12-24T00:38:42.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '31', 'scoreAway': '30', 'edited': '2020-12-24T00:38:48Z', 'orderNumber': 1640000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 164, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'T. McConnell REBOUND (Off:0 Def:1)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 167, 'clock': 'PT00M45.60S', 'timeActual': '2020-12-24T00:38:45.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1626167, 'x': 94.30026281208936, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 0.78, 'possession': 1610612754, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:38:51Z', 'orderNumber': 1650000, 'xLegacy': 8, 'yLegacy': 1, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'M. Turner cutting finger roll Layup (4 PTS) (T. McConnell 1 AST)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 1}, {'actionNumber': 169, 'clock': 'PT00M33.10S', 'timeActual': '2020-12-24T00:39:00.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1628995, 'x': 7.046649145860711, 'y': 49.82383578431372, 'side': 'left', 'shotDistance': 1.37, 'possession': 1610612752, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:39:05Z', 'orderNumber': 1670000, 'xLegacy': 1, 'yLegacy': 14, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS K. Knox II driving finger roll Layup', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 170, 'clock': 'PT00M30.80S', 'timeActual': '2020-12-24T00:39:02.6Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:39:05Z', 'orderNumber': 1680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 169, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'A. Holiday REBOUND (Off:0 Def:1)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 171, 'clock': 'PT00M26.30S', 'timeActual': '2020-12-24T00:39:07.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['fastbreak', 'pointsinthepaint'], 'personId': 1628988, 'x': 94.69448094612353, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 0.7, 'possession': 1610612754, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:39:15Z', 'orderNumber': 1690000, 'xLegacy': 6, 'yLegacy': -3, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Holiday driving finger roll Layup', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 172, 'clock': 'PT00M25.40S', 'timeActual': '2020-12-24T00:39:08.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '33', 'scoreAway': '30', 'edited': '2020-12-24T00:39:11Z', 'orderNumber': 1700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 171, 'reboundTotal': 1, 'reboundDefensiveTotal': 0, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:0)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 173, 'clock': 'PT00M25.40S', 'timeActual': '2020-12-24T00:39:10.2Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'tip', 'qualifiers': ['2ndchance', 'fastbreak', 'pointsinthepaint'], 'personId': 203926, 'x': 94.40999984741211, 'y': 50.0, 'side': 'right', 'shotDistance': 0.0, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '30', 'edited': '2020-12-24T00:39:21Z', 'orderNumber': 1710000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'D. McDermott tip DUNK (4 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 175, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:39:44.4Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['3freethrow'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '30', 'edited': '2020-12-24T00:42:31Z', 'officialId': 202053, 'orderNumber': 1730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'T. McConnell shooting personal FOUL (1 PF) (Quickley 3 FT)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 1630193], 'foulDrawnPlayerName': 'Quickley', 'foulDrawnPersonId': 1630193}, {'actionNumber': 177, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:40:01.1Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '30', 'edited': '2020-12-24T00:40:01Z', 'orderNumber': 1750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 178, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:41:23.0Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'instantreplay', 'subType': 'challenge', 'descriptor': 'support', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '30', 'edited': '2020-12-24T00:42:31Z', 'officialId': 200832, 'orderNumber': 1760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 179, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:42:41.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 3', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '31', 'edited': '2020-12-24T00:42:41Z', 'orderNumber': 1770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 1, 'description': 'I. Quickley Free Throw 1 of 3 (1 PTS)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 180, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:42:55.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 3', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '32', 'edited': '2020-12-24T00:42:55Z', 'orderNumber': 1780000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'I. Quickley Free Throw 2 of 3 (2 PTS)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 181, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:42:57.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '32', 'edited': '2020-12-24T00:43:02Z', 'orderNumber': 1790000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 182, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:42:57.7Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '32', 'edited': '2020-12-24T00:43:02Z', 'orderNumber': 1800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 183, 'clock': 'PT00M02.50S', 'timeActual': '2020-12-24T00:43:21.8Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '3 of 3', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:43:21Z', 'orderNumber': 1810000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'I. Quickley Free Throw 3 of 3 (3 PTS)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 184, 'clock': 'PT00M00.40S', 'timeActual': '2020-12-24T00:43:30.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'running', 'qualifiers': [], 'personId': 1628988, 'x': 62.63140604467805, 'y': 79.97089460784314, 'side': 'right', 'shotDistance': 33.43, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:43:39Z', 'orderNumber': 1820000, 'xLegacy': 150, 'yLegacy': 299, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Holiday 33' running 3PT\", 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 185, 'clock': 'PT00M00.40S', 'timeActual': '2020-12-24T00:43:30.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:43:39Z', 'orderNumber': 1830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 184, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 186, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T00:43:33.9Z', 'period': 1, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:43:33Z', 'orderNumber': 1840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period End', 'personIdsFilter': []}, {'actionNumber': 187, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:45:43.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:45:59Z', 'orderNumber': 1850000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 188, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:45:43.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:45:59Z', 'orderNumber': 1860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 189, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:45:43.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:45:59Z', 'orderNumber': 1870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 190, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:45:43.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:45:59Z', 'orderNumber': 1880000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 191, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T00:46:12.4Z', 'period': 2, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'start', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '33', 'edited': '2020-12-24T00:46:12Z', 'orderNumber': 1890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period Start', 'personIdsFilter': []}, {'actionNumber': 192, 'clock': 'PT11M43.00S', 'timeActual': '2020-12-24T00:46:29.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating bank', 'qualifiers': [], 'personId': 1630193, 'x': 11.514454664914586, 'y': 27.27481617647059, 'side': 'left', 'shotDistance': 12.65, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:46:32Z', 'orderNumber': 1900000, 'xLegacy': 114, 'yLegacy': 56, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': \"I. Quickley 12' driving floating bank Jump Shot (5 PTS)\", 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 193, 'clock': 'PT11M26.00S', 'timeActual': '2020-12-24T00:46:45.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:46:48Z', 'orderNumber': 1910000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 3, 'description': 'D. Sabonis lost ball TURNOVER (3 TO)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1628995], 'stealPlayerName': 'Knox II', 'stealPersonId': 1628995}, {'actionNumber': 194, 'clock': 'PT11M26.00S', 'timeActual': '2020-12-24T00:46:45.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:51:03Z', 'orderNumber': 1920000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'K. Knox II STEAL (1 STL)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 195, 'clock': 'PT11M20.00S', 'timeActual': '2020-12-24T00:46:51.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround', 'qualifiers': ['fastbreak', 'pointsinthepaint', 'fromturnover'], 'personId': 1630167, 'x': 13.61695137976347, 'y': 52.51991421568627, 'side': 'left', 'shotDistance': 7.65, 'possession': 1610612752, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:46:58Z', 'orderNumber': 1930000, 'xLegacy': -13, 'yLegacy': 75, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 7' turnaround Shot\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 196, 'clock': 'PT11M18.00S', 'timeActual': '2020-12-24T00:46:53.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '35', 'scoreAway': '35', 'edited': '2020-12-24T00:46:54Z', 'orderNumber': 1940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 195, 'reboundTotal': 2, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:1)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 197, 'clock': 'PT11M13.00S', 'timeActual': '2020-12-24T00:46:58.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1627734, 'x': 94.95729303547962, 'y': 50.55912990196079, 'side': 'right', 'shotDistance': 0.58, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:05Z', 'orderNumber': 1950000, 'xLegacy': 3, 'yLegacy': -5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': 'D. Sabonis cutting Layup (15 PTS) (T. McConnell 2 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 2}, {'actionNumber': 199, 'clock': 'PT10M59.00S', 'timeActual': '2020-12-24T00:47:21.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:37Z', 'officialId': 202053, 'orderNumber': 1970000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'J. Holiday personal FOUL (2 PF)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200, 1630167], 'foulDrawnPlayerName': 'Toppin', 'foulDrawnPersonId': 1630167}, {'actionNumber': 201, 'clock': 'PT10M56.00S', 'timeActual': '2020-12-24T00:47:36.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:39Z', 'orderNumber': 1990000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'K. Knox II bad pass TURNOVER (1 TO)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 203926], 'stealPlayerName': 'McDermott', 'stealPersonId': 203926}, {'actionNumber': 202, 'clock': 'PT10M56.00S', 'timeActual': '2020-12-24T00:47:36.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:38Z', 'orderNumber': 2000000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'D. McDermott STEAL (1 STL)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 203, 'clock': 'PT10M51.00S', 'timeActual': '2020-12-24T00:47:41.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover', 'fastbreak'], 'personId': 203200, 'x': 91.5407358738502, 'y': 4.725796568627451, 'side': 'right', 'shotDistance': 22.8, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:45Z', 'orderNumber': 2010000, 'xLegacy': -226, 'yLegacy': 27, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Holiday 3PT', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 204, 'clock': 'PT10M48.00S', 'timeActual': '2020-12-24T00:47:44.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:45Z', 'orderNumber': 2020000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 203, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'K. Knox II REBOUND (Off:0 Def:1)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 205, 'clock': 'PT10M41.00S', 'timeActual': '2020-12-24T00:47:50.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1628995, 'x': 32.013797634691194, 'y': 68.2061887254902, 'side': 'left', 'shotDistance': 26.45, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:58Z', 'orderNumber': 2030000, 'xLegacy': -91, 'yLegacy': 248, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS K. Knox II 26' 3PT\", 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 206, 'clock': 'PT10M39.00S', 'timeActual': '2020-12-24T00:47:52.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:47:58Z', 'orderNumber': 2040000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 205, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'J. Holiday REBOUND (Off:0 Def:2)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 207, 'clock': 'PT10M29.00S', 'timeActual': '2020-12-24T00:48:03.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1627734, 'x': 70.77858081471747, 'y': 79.23560049019608, 'side': 'right', 'shotDistance': 26.6, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:48:08Z', 'orderNumber': 2050000, 'xLegacy': 146, 'yLegacy': 222, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. Sabonis 26' 3PT\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 208, 'clock': 'PT10M24.00S', 'timeActual': '2020-12-24T00:48:08.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:48:08Z', 'orderNumber': 2060000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 207, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'K. Knox II REBOUND (Off:0 Def:2)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 209, 'clock': 'PT10M09.00S', 'timeActual': '2020-12-24T00:48:25.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '35', 'edited': '2020-12-24T00:48:37Z', 'officialId': 200832, 'orderNumber': 2070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis shooting personal FOUL (1 PF) (Burks 2 FT)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 211, 'clock': 'PT10M09.00S', 'timeActual': '2020-12-24T00:48:57.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '36', 'edited': '2020-12-24T00:48:57Z', 'orderNumber': 2090000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'A. Burks Free Throw 1 of 2 (4 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 212, 'clock': 'PT10M09.00S', 'timeActual': '2020-12-24T00:49:18.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '37', 'scoreAway': '37', 'edited': '2020-12-24T00:49:18Z', 'orderNumber': 2100000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'A. Burks Free Throw 2 of 2 (5 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 213, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:49:44.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '37', 'edited': '2020-12-24T00:49:52Z', 'officialId': 202053, 'orderNumber': 2110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'M. Robinson shooting personal FOUL (3 PF) (Sabonis 2 FT)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 215, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:50:11.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '37', 'edited': '2020-12-24T00:50:15Z', 'orderNumber': 2130000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 216, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:50:11.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '37', 'scoreAway': '37', 'edited': '2020-12-24T00:50:15Z', 'orderNumber': 2140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 217, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:50:21.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '38', 'scoreAway': '37', 'edited': '2020-12-24T00:50:29Z', 'orderNumber': 2150000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 16, 'description': 'D. Sabonis Free Throw 1 of 2 (16 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 218, 'clock': 'PT09M46.00S', 'timeActual': '2020-12-24T00:50:21.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '38', 'scoreAway': '37', 'edited': '2020-12-24T00:50:29Z', 'orderNumber': 2160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Free Throw 2 of 2', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 219, 'clock': 'PT09M45.00S', 'timeActual': '2020-12-24T00:50:22.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '37', 'edited': '2020-12-24T00:50:29Z', 'orderNumber': 2170000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 218, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:3)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 220, 'clock': 'PT09M34.00S', 'timeActual': '2020-12-24T00:50:42.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '37', 'edited': '2020-12-24T00:50:48Z', 'officialId': 200832, 'orderNumber': 2180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'A. Holiday personal FOUL (1 PF)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 222, 'clock': 'PT09M24.00S', 'timeActual': '2020-12-24T00:51:15.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 202692, 'x': 32.013797634691194, 'y': 68.45128676470588, 'side': 'left', 'shotDistance': 26.5, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:20Z', 'orderNumber': 2200000, 'xLegacy': -92, 'yLegacy': 248, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': \"A. Burks 26' 3PT pullup (8 PTS)\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 223, 'clock': 'PT09M09.00S', 'timeActual': '2020-12-24T00:51:28.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203926, 'x': 67.36202365308804, 'y': 48.84344362745098, 'side': 'right', 'shotDistance': 25.44, 'possession': 1610612754, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:33Z', 'orderNumber': 2210000, 'xLegacy': -6, 'yLegacy': 254, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 25' pullup 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 224, 'clock': 'PT09M06.00S', 'timeActual': '2020-12-24T00:51:31.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:33Z', 'orderNumber': 2220000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 223, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'A. Burks REBOUND (Off:0 Def:1)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 225, 'clock': 'PT09M04.00S', 'timeActual': '2020-12-24T00:51:34.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:38Z', 'orderNumber': 2230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'A. Burks bad pass TURNOVER (1 TO)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1627734], 'stealPlayerName': 'Sabonis', 'stealPersonId': 1627734}, {'actionNumber': 226, 'clock': 'PT09M04.00S', 'timeActual': '2020-12-24T00:51:34.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '38', 'scoreAway': '40', 'edited': '2020-12-24T00:51:35Z', 'orderNumber': 2240000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'D. Sabonis STEAL (1 STL)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 227, 'clock': 'PT09M02.00S', 'timeActual': '2020-12-24T00:51:36.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'finger roll', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 1628988, 'x': 93.38042049934296, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 1.17, 'possession': 1610612754, 'scoreHome': '40', 'scoreAway': '40', 'edited': '2020-12-24T00:51:42Z', 'orderNumber': 2250000, 'xLegacy': 6, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'A. Holiday finger roll Layup (2 PTS) (D. Sabonis 1 AST)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 1}, {'actionNumber': 229, 'clock': 'PT08M42.00S', 'timeActual': '2020-12-24T00:51:55.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'fadeaway', 'qualifiers': ['pointsinthepaint'], 'personId': 202692, 'x': 17.16491458607096, 'y': 54.23560049019608, 'side': 'left', 'shotDistance': 11.09, 'possession': 1610612752, 'scoreHome': '40', 'scoreAway': '42', 'edited': '2020-12-24T00:52:02Z', 'orderNumber': 2270000, 'xLegacy': -21, 'yLegacy': 109, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': \"A. Burks 11' fadeaway Jump Shot (10 PTS)\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 230, 'clock': 'PT08M30.00S', 'timeActual': '2020-12-24T00:52:08.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203926, 'x': 94.95729303547962, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 0.92, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:52:11Z', 'orderNumber': 2280000, 'xLegacy': 8, 'yLegacy': -5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'D. McDermott driving finger roll Layup (6 PTS) (D. Sabonis 2 AST)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 2}, {'actionNumber': 232, 'clock': 'PT08M09.00S', 'timeActual': '2020-12-24T00:52:29.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 31.35676741130092, 'y': 73.10814950980392, 'side': 'left', 'shotDistance': 26.84, 'possession': 1610612752, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:52:33Z', 'orderNumber': 2300000, 'xLegacy': -116, 'yLegacy': 242, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 26' 3PT\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 233, 'clock': 'PT08M06.00S', 'timeActual': '2020-12-24T00:52:32.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:52:33Z', 'orderNumber': 2310000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 232, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'T. McConnell REBOUND (Off:0 Def:2)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 234, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:52:40.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:52:51Z', 'officialId': 200832, 'orderNumber': 2320000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'J. Randle shooting personal FOUL (2 PF) (Sabonis 2 FT)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 236, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:13.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:53:13Z', 'orderNumber': 2340000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Free Throw 1 of 2', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 237, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:13.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:53:13Z', 'orderNumber': 2350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 236, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 238, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:13.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:53:17Z', 'orderNumber': 2360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 239, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:13.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '42', 'scoreAway': '42', 'edited': '2020-12-24T00:53:17Z', 'orderNumber': 2370000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. Warren', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 240, 'clock': 'PT07M58.00S', 'timeActual': '2020-12-24T00:53:30.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '43', 'scoreAway': '42', 'edited': '2020-12-24T00:53:30Z', 'orderNumber': 2380000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 17, 'description': 'D. Sabonis Free Throw 2 of 2 (17 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 241, 'clock': 'PT07M46.00S', 'timeActual': '2020-12-24T00:53:43.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'step back', 'qualifiers': [], 'personId': 1630193, 'x': 24.26084099868594, 'y': 28.010110294117645, 'side': 'left', 'shotDistance': 20.72, 'possession': 1610612752, 'scoreHome': '43', 'scoreAway': '42', 'edited': '2020-12-24T00:53:46Z', 'orderNumber': 2390000, 'xLegacy': 110, 'yLegacy': 176, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS I. Quickley 20' step back Shot\", 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 242, 'clock': 'PT07M44.00S', 'timeActual': '2020-12-24T00:53:45.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '43', 'scoreAway': '42', 'edited': '2020-12-24T00:53:46Z', 'orderNumber': 2400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 241, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'A. Holiday REBOUND (Off:0 Def:2)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 243, 'clock': 'PT07M36.00S', 'timeActual': '2020-12-24T00:53:53.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203926, 'x': 95.0886990801577, 'y': 55.21599264705882, 'side': 'right', 'shotDistance': 2.68, 'possession': 1610612754, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:53:56Z', 'orderNumber': 2410000, 'xLegacy': 26, 'yLegacy': -6, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'D. McDermott cutting finger roll Layup (8 PTS) (D. Sabonis 3 AST)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 3}, {'actionNumber': 245, 'clock': 'PT07M30.00S', 'timeActual': '2020-12-24T00:54:02.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'out-of-bounds', 'descriptor': 'step', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:54:07Z', 'officialId': 1627541, 'orderNumber': 2430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'K. Knox II step out-of-bounds TURNOVER (2 TO)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 246, 'clock': 'PT07M15.00S', 'timeActual': '2020-12-24T00:54:27.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'out-of-bounds', 'descriptor': 'lost ball', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:54:32Z', 'officialId': 1627541, 'orderNumber': 2440000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'D. McDermott lost ball out-of-bounds TURNOVER (1 TO)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 247, 'clock': 'PT07M04.00S', 'timeActual': '2020-12-24T00:54:54.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 1630167, 'x': 5.469776609724048, 'y': 83.15716911764706, 'side': 'left', 'shotDistance': 16.58, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:54:58Z', 'orderNumber': 2450000, 'xLegacy': -166, 'yLegacy': -1, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 16' Jump Shot\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 248, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T00:54:56.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:54:58Z', 'orderNumber': 2460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 247, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:2)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 249, 'clock': 'PT06M47.00S', 'timeActual': '2020-12-24T00:55:11.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:55:15Z', 'orderNumber': 2470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'A. Holiday bad pass TURNOVER (1 TO)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1628995], 'stealPlayerName': 'Knox II', 'stealPersonId': 1628995}, {'actionNumber': 250, 'clock': 'PT06M47.00S', 'timeActual': '2020-12-24T00:55:11.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:55:13Z', 'orderNumber': 2480000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'K. Knox II STEAL (2 STL)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 251, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:55:18.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:55:29Z', 'officialId': 1627541, 'orderNumber': 2490000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'T. McConnell personal FOUL (2 PF)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 1628995], 'foulDrawnPlayerName': 'Knox II', 'foulDrawnPersonId': 1628995}, {'actionNumber': 253, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:55:31.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:55:31Z', 'orderNumber': 2510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 254, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:57:52.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:58:03Z', 'orderNumber': 2520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 255, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:57:52.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:58:03Z', 'orderNumber': 2530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 256, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:57:52.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:58:03Z', 'orderNumber': 2540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 257, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T00:57:52.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '42', 'edited': '2020-12-24T00:58:03Z', 'orderNumber': 2550000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Brogdon', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 258, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T00:58:35.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 202692, 'x': 6.1268068331143235, 'y': 52.27481617647059, 'side': 'left', 'shotDistance': 1.25, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '44', 'edited': '2020-12-24T00:58:40Z', 'orderNumber': 2560000, 'xLegacy': -11, 'yLegacy': 5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 12, 'description': 'A. Burks Layup (12 PTS) (J. Randle 5 AST)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 5}, {'actionNumber': 260, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T00:58:37.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '1freethrow'], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '44', 'edited': '2020-12-24T00:58:43Z', 'officialId': 200832, 'orderNumber': 2580000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'V. Oladipo shooting personal FOUL (1 PF) (Burks 1 FT)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 262, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T00:59:01.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': ['fromturnover'], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '45', 'scoreAway': '45', 'edited': '2020-12-24T00:59:01Z', 'orderNumber': 2600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'A. Burks Free Throw 1 of 1 (13 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 263, 'clock': 'PT06M09.00S', 'timeActual': '2020-12-24T00:59:21.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround fadeaway', 'qualifiers': [], 'personId': 203506, 'x': 93.38042049934296, 'y': 72.12775735294117, 'side': 'right', 'shotDistance': 11.1, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:25Z', 'orderNumber': 2610000, 'xLegacy': 111, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': \"V. Oladipo 11' turnaround fadeaway Jump Shot (6 PTS)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 264, 'clock': 'PT05M54.00S', 'timeActual': '2020-12-24T00:59:36.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'alley-oop', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 7.703679369250986, 'y': 52.029718137254896, 'side': 'left', 'shotDistance': 2.23, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:41Z', 'orderNumber': 2620000, 'xLegacy': -10, 'yLegacy': 20, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle alley-oop Layup', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 265, 'clock': 'PT05M52.00S', 'timeActual': '2020-12-24T00:59:38.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:41Z', 'orderNumber': 2630000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 264, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:2)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 266, 'clock': 'PT05M49.00S', 'timeActual': '2020-12-24T00:59:41.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fastbreak'], 'personId': 203926, 'x': 75.77201051248358, 'y': 11.098345588235293, 'side': 'right', 'shotDistance': 26.18, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:46Z', 'orderNumber': 2640000, 'xLegacy': -195, 'yLegacy': 175, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 26' 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 267, 'clock': 'PT05M45.00S', 'timeActual': '2020-12-24T00:59:45.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '45', 'edited': '2020-12-24T00:59:46Z', 'orderNumber': 2650000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 266, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'I. Quickley REBOUND (Off:0 Def:1)', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 268, 'clock': 'PT05M39.00S', 'timeActual': '2020-12-24T00:59:50.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fastbreak'], 'personId': 1630167, 'x': 3.4986859395532193, 'y': 97.61795343137256, 'side': 'left', 'shotDistance': 23.89, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T00:59:55Z', 'orderNumber': 2660000, 'xLegacy': -238, 'yLegacy': -20, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'O. Toppin 3PT (3 PTS) (I. Quickley 1 AST)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167, 1630193], 'assistPlayerNameInitial': 'I. Quickley', 'assistPersonId': 1630193, 'assistTotal': 1}, {'actionNumber': 270, 'clock': 'PT05M22.00S', 'timeActual': '2020-12-24T01:00:08.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203506, 'x': 74.98357424441524, 'y': 90.75520833333334, 'side': 'right', 'shotDistance': 27.37, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:14Z', 'orderNumber': 2680000, 'xLegacy': 204, 'yLegacy': 183, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS V. Oladipo 27' pullup 3PT\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 271, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:11.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:14Z', 'orderNumber': 2690000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 270, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 272, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:12.9Z', 'period': 2, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:12Z', 'orderNumber': 2700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 273, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2710000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 274, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2720000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: D. McDermott', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 275, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 276, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2740000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 277, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 278, 'clock': 'PT05M19.00S', 'timeActual': '2020-12-24T01:00:13.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:22Z', 'orderNumber': 2760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 279, 'clock': 'PT05M09.00S', 'timeActual': '2020-12-24T01:00:45.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:00:54Z', 'officialId': 200832, 'orderNumber': 2770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'V. Oladipo personal FOUL (2 PF) (Barrett 2 FT)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1629628], 'foulDrawnPlayerName': 'Barrett', 'foulDrawnPersonId': 1629628}, {'actionNumber': 281, 'clock': 'PT05M09.00S', 'timeActual': '2020-12-24T01:01:12.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:01:12Z', 'orderNumber': 2790000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS R. Barrett Free Throw 1 of 2', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 282, 'clock': 'PT05M09.00S', 'timeActual': '2020-12-24T01:01:12.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '48', 'edited': '2020-12-24T01:01:12Z', 'orderNumber': 2800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 281, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 283, 'clock': 'PT05M09.00S', 'timeActual': '2020-12-24T01:01:25.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:01:25Z', 'orderNumber': 2810000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 11, 'description': 'R. Barrett Free Throw 2 of 2 (11 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 284, 'clock': 'PT04M56.00S', 'timeActual': '2020-12-24T01:01:47.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:01:55Z', 'officialId': 202053, 'orderNumber': 2820000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'R. Barrett personal FOUL (2 PF)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 1626167], 'foulDrawnPlayerName': 'Turner', 'foulDrawnPersonId': 1626167}, {'actionNumber': 286, 'clock': 'PT04M45.00S', 'timeActual': '2020-12-24T01:02:24.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1627763, 'x': 73.01248357424441, 'y': 85.11795343137256, 'side': 'right', 'shotDistance': 26.71, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:28Z', 'orderNumber': 2840000, 'xLegacy': 176, 'yLegacy': 201, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Brogdon 26' pullup 3PT\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 287, 'clock': 'PT04M41.00S', 'timeActual': '2020-12-24T01:02:28.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:28Z', 'orderNumber': 2850000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 286, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'A. Burks REBOUND (Off:0 Def:2)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 288, 'clock': 'PT04M26.00S', 'timeActual': '2020-12-24T01:02:42.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1630193, 'x': 18.347568988173457, 'y': 96.6375612745098, 'side': 'left', 'shotDistance': 26.23, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:47Z', 'orderNumber': 2860000, 'xLegacy': -233, 'yLegacy': 120, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS I. Quickley 26' pullup 3PT\", 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 289, 'clock': 'PT04M25.00S', 'timeActual': '2020-12-24T01:02:43.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:47Z', 'orderNumber': 2870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 288, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'M. Turner REBOUND (Off:0 Def:1)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 290, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T01:02:49.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 203933, 'x': 93.77463863337714, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 0.98, 'possession': 1610612754, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:56Z', 'orderNumber': 2880000, 'xLegacy': 8, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS T. Warren driving floating Shot', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 291, 'clock': 'PT04M18.00S', 'timeActual': '2020-12-24T01:02:50.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '49', 'edited': '2020-12-24T01:02:56Z', 'orderNumber': 2890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 290, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'O. Toppin REBOUND (Off:0 Def:1)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 292, 'clock': 'PT04M13.00S', 'timeActual': '2020-12-24T01:02:55.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1629628, 'x': 5.601182654402102, 'y': 50.55912990196079, 'side': 'left', 'shotDistance': 0.28, 'possession': 1610612752, 'scoreHome': '47', 'scoreAway': '51', 'edited': '2020-12-24T01:03:03Z', 'orderNumber': 2900000, 'xLegacy': -3, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'R. Barrett cutting DUNK (13 PTS) (O. Toppin 1 AST)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 1630167], 'assistPlayerNameInitial': 'O. Toppin', 'assistPersonId': 1630167, 'assistTotal': 1}, {'actionNumber': 294, 'clock': 'PT04M00.00S', 'timeActual': '2020-12-24T01:03:08.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1627763, 'x': 66.17936925098554, 'y': 46.392463235294116, 'side': 'right', 'shotDistance': 26.6, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '51', 'edited': '2020-12-24T01:03:14Z', 'orderNumber': 2920000, 'xLegacy': -18, 'yLegacy': 265, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 13, 'description': \"M. Brogdon 26' 3PT pullup (13 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 295, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:03:22.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '51', 'edited': '2020-12-24T01:03:29Z', 'officialId': 1627541, 'orderNumber': 2930000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'V. Oladipo personal FOUL (3 PF) (Burks 2 FT)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 297, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:03:54.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '52', 'edited': '2020-12-24T01:03:54Z', 'orderNumber': 2950000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 14, 'description': 'A. Burks Free Throw 1 of 2 (14 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 298, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:03:55.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '52', 'edited': '2020-12-24T01:03:57Z', 'orderNumber': 2960000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 299, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:03:55.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '52', 'edited': '2020-12-24T01:03:57Z', 'orderNumber': 2970000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 300, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:04:17.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '53', 'edited': '2020-12-24T01:04:17Z', 'orderNumber': 2980000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 15, 'description': 'A. Burks Free Throw 2 of 2 (15 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 301, 'clock': 'PT03M41.00S', 'timeActual': '2020-12-24T01:04:29.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'offensive', 'descriptor': 'off-the-ball', 'qualifiers': ['inpenalty'], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '53', 'edited': '2020-12-24T01:04:43Z', 'officialId': 200832, 'orderNumber': 2990000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'M. Turner off-the-ball offensive FOUL (1 PF)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 1629628], 'foulDrawnPlayerName': 'Barrett', 'foulDrawnPersonId': 1629628}, {'actionNumber': 303, 'clock': 'PT03M41.00S', 'timeActual': '2020-12-24T01:04:29.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '53', 'edited': '2020-12-24T01:04:29Z', 'officialId': 200832, 'orderNumber': 3010000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'M. Turner offensive foul TURNOVER (2 TO)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 304, 'clock': 'PT03M32.00S', 'timeActual': '2020-12-24T01:04:52.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'floating', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 202692, 'x': 19.398817345597898, 'y': 49.08854166666667, 'side': 'left', 'shotDistance': 12.99, 'possession': 1610612752, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:04:59Z', 'orderNumber': 3020000, 'xLegacy': 5, 'yLegacy': 130, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 17, 'description': \"A. Burks 12' floating Jump Shot (17 PTS) (J. Randle 6 AST)\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 6}, {'actionNumber': 305, 'clock': 'PT03M15.00S', 'timeActual': '2020-12-24T01:05:11.9Z', 'period': 2, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:11Z', 'orderNumber': 3030000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 307, 'clock': 'PT03M12.00S', 'timeActual': '2020-12-24T01:05:28.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint'], 'personId': 1628988, 'x': 93.77463863337714, 'y': 50.55912990196079, 'side': 'right', 'shotDistance': 0.66, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:32Z', 'orderNumber': 3040000, 'xLegacy': 3, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Holiday cutting Layup', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 308, 'clock': 'PT03M10.00S', 'timeActual': '2020-12-24T01:05:30.4Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:32Z', 'orderNumber': 3050000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 307, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'A. Holiday REBOUND (Off:1 Def:2)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 309, 'clock': 'PT03M09.00S', 'timeActual': '2020-12-24T01:05:32.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['2ndchance'], 'personId': 203200, 'x': 91.14651773981603, 'y': 96.14736519607843, 'side': 'right', 'shotDistance': 23.27, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:36Z', 'orderNumber': 3060000, 'xLegacy': 231, 'yLegacy': 31, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Holiday 3PT', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 310, 'clock': 'PT03M07.00S', 'timeActual': '2020-12-24T01:05:34.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '50', 'scoreAway': '55', 'edited': '2020-12-24T01:05:34Z', 'orderNumber': 3070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 309, 'reboundTotal': 4, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 2, 'description': 'M. Brogdon REBOUND (Off:2 Def:2)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 311, 'clock': 'PT03M05.00S', 'timeActual': '2020-12-24T01:05:36.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['2ndchance'], 'personId': 1628988, 'x': 67.62483574244416, 'y': 70.16697303921569, 'side': 'right', 'shotDistance': 27.12, 'possession': 1610612754, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:05:41Z', 'orderNumber': 3080000, 'xLegacy': 101, 'yLegacy': 252, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': \"A. Holiday 27' 3PT (5 PTS) (M. Brogdon 5 AST)\", 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 5}, {'actionNumber': 313, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:05:42.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:05:42Z', 'orderNumber': 3100000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'NYK Timeout', 'personIdsFilter': []}, {'actionNumber': 314, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:08:04.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:08:22Z', 'orderNumber': 3110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 315, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:08:04.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1630193, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:08:22Z', 'orderNumber': 3120000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: I. Quickley', 'playerName': 'Quickley', 'playerNameI': 'I. Quickley', 'personIdsFilter': [1630193]}, {'actionNumber': 316, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:08:04.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:08:22Z', 'orderNumber': 3130000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 317, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:08:04.7Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '55', 'edited': '2020-12-24T01:08:22Z', 'orderNumber': 3140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 318, 'clock': 'PT02M46.00S', 'timeActual': '2020-12-24T01:08:53.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 6.915243101182654, 'y': 50.55912990196079, 'side': 'left', 'shotDistance': 1.28, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '57', 'edited': '2020-12-24T01:08:56Z', 'orderNumber': 3150000, 'xLegacy': -3, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': 'R. Barrett Layup (15 PTS) (E. Payton 1 AST)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203901], 'assistPlayerNameInitial': 'E. Payton', 'assistPersonId': 203901, 'assistTotal': 1}, {'actionNumber': 320, 'clock': 'PT02M30.00S', 'timeActual': '2020-12-24T01:09:09.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': ['pointsinthepaint'], 'personId': 203933, 'x': 93.51182654402102, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 1.07, 'possession': 1610612754, 'scoreHome': '53', 'scoreAway': '57', 'edited': '2020-12-24T01:09:13Z', 'orderNumber': 3170000, 'xLegacy': 6, 'yLegacy': 8, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS T. Warren pullup Shot - blocked', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 1630167], 'blockPlayerName': 'Toppin', 'blockPersonId': 1630167}, {'actionNumber': 321, 'clock': 'PT02M30.00S', 'timeActual': '2020-12-24T01:09:09.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '53', 'scoreAway': '57', 'edited': '2020-12-24T01:09:11Z', 'orderNumber': 3180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'O. Toppin BLOCK (1 BLK)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 322, 'clock': 'PT02M28.00S', 'timeActual': '2020-12-24T01:09:11.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '57', 'edited': '2020-12-24T01:09:13Z', 'orderNumber': 3190000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 320, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:4)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 323, 'clock': 'PT02M22.00S', 'timeActual': '2020-12-24T01:09:17.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1629628, 'x': 5.338370565045992, 'y': 48.59834558823529, 'side': 'left', 'shotDistance': 0.74, 'possession': 1610612752, 'scoreHome': '53', 'scoreAway': '59', 'edited': '2020-12-24T01:09:24Z', 'orderNumber': 3200000, 'xLegacy': 7, 'yLegacy': -2, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 17, 'description': 'R. Barrett running finger roll Layup (17 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 324, 'clock': 'PT02M06.00S', 'timeActual': '2020-12-24T01:09:35.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 93.77463863337714, 'y': 52.27481617647059, 'side': 'right', 'shotDistance': 1.29, 'possession': 1610612754, 'scoreHome': '55', 'scoreAway': '59', 'edited': '2020-12-24T01:09:45Z', 'orderNumber': 3210000, 'xLegacy': 11, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 19, 'description': 'D. Sabonis cutting Layup (19 PTS) (A. Holiday 1 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1628988], 'assistPlayerNameInitial': 'A. Holiday', 'assistPersonId': 1628988, 'assistTotal': 1}, {'actionNumber': 326, 'clock': 'PT02M06.00S', 'timeActual': '2020-12-24T01:09:38.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '55', 'scoreAway': '59', 'edited': '2020-12-24T01:09:51Z', 'officialId': 1627541, 'orderNumber': 3230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'A. Burks shooting personal FOUL (1 PF) (Sabonis 1 FT)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 328, 'clock': 'PT02M06.00S', 'timeActual': '2020-12-24T01:10:02.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '56', 'scoreAway': '59', 'edited': '2020-12-24T01:10:02Z', 'orderNumber': 3250000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 20, 'description': 'D. Sabonis Free Throw 1 of 1 (20 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 329, 'clock': 'PT01M52.00S', 'timeActual': '2020-12-24T01:10:17.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 6.915243101182654, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.53, 'possession': 1610612752, 'scoreHome': '56', 'scoreAway': '59', 'edited': '2020-12-24T01:10:20Z', 'orderNumber': 3260000, 'xLegacy': -9, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle driving Layup - blocked', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 330, 'clock': 'PT01M52.00S', 'timeActual': '2020-12-24T01:10:17.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '56', 'scoreAway': '59', 'edited': '2020-12-24T01:10:19Z', 'orderNumber': 3270000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (4 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 331, 'clock': 'PT01M50.00S', 'timeActual': '2020-12-24T01:10:19.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '56', 'scoreAway': '59', 'edited': '2020-12-24T01:10:20Z', 'orderNumber': 3280000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 329, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:3)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 332, 'clock': 'PT01M45.00S', 'timeActual': '2020-12-24T01:10:23.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1627734, 'x': 93.64323258869908, 'y': 51.78462009803921, 'side': 'right', 'shotDistance': 1.15, 'possession': 1610612754, 'scoreHome': '58', 'scoreAway': '59', 'edited': '2020-12-24T01:10:28Z', 'orderNumber': 3290000, 'xLegacy': 9, 'yLegacy': 7, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 22, 'description': 'D. Sabonis cutting DUNK (22 PTS) (A. Holiday 2 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1628988], 'assistPlayerNameInitial': 'A. Holiday', 'assistPersonId': 1628988, 'assistTotal': 2}, {'actionNumber': 334, 'clock': 'PT01M24.00S', 'timeActual': '2020-12-24T01:10:45.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 6.521024967148489, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.25, 'possession': 1610612752, 'scoreHome': '58', 'scoreAway': '61', 'edited': '2020-12-24T01:10:48Z', 'orderNumber': 3310000, 'xLegacy': -9, 'yLegacy': 9, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 7, 'description': 'J. Randle driving finger roll Layup (7 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 335, 'clock': 'PT01M16.00S', 'timeActual': '2020-12-24T01:10:55.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 88.25558475689881, 'y': 44.18658088235294, 'side': 'right', 'shotDistance': 6.48, 'possession': 1610612754, 'scoreHome': '60', 'scoreAway': '61', 'edited': '2020-12-24T01:10:59Z', 'orderNumber': 3320000, 'xLegacy': -29, 'yLegacy': 58, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': \"M. Brogdon 6' driving floating Jump Shot (15 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 336, 'clock': 'PT01M16.00S', 'timeActual': '2020-12-24T01:11:01.6Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '1freethrow'], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '60', 'scoreAway': '61', 'edited': '2020-12-24T01:11:10Z', 'officialId': 202053, 'orderNumber': 3330000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'E. Payton shooting personal FOUL (2 PF) (Brogdon 1 FT)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1627763], 'foulDrawnPlayerName': 'Brogdon', 'foulDrawnPersonId': 1627763}, {'actionNumber': 338, 'clock': 'PT01M16.00S', 'timeActual': '2020-12-24T01:11:18.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '61', 'edited': '2020-12-24T01:11:18Z', 'orderNumber': 3350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 16, 'description': 'M. Brogdon Free Throw 1 of 1 (16 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 339, 'clock': 'PT01M04.00S', 'timeActual': '2020-12-24T01:11:31.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1629628, 'x': 3.235873850197109, 'y': 99.08854166666666, 'side': 'left', 'shotDistance': 24.64, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '64', 'edited': '2020-12-24T01:11:35Z', 'orderNumber': 3360000, 'xLegacy': -245, 'yLegacy': -22, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 20, 'description': \"R. Barrett 24' 3PT (20 PTS) (J. Randle 7 AST)\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 7}, {'actionNumber': 341, 'clock': 'PT00M51.60S', 'timeActual': '2020-12-24T01:11:44.3Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 94.56307490144546, 'y': 51.78462009803921, 'side': 'right', 'shotDistance': 0.9, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '64', 'edited': '2020-12-24T01:11:47Z', 'orderNumber': 3380000, 'xLegacy': 9, 'yLegacy': -1, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving Layup', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 342, 'clock': 'PT00M49.80S', 'timeActual': '2020-12-24T01:11:46.1Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '64', 'edited': '2020-12-24T01:11:47Z', 'orderNumber': 3390000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 341, 'reboundTotal': 5, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:5)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 343, 'clock': 'PT00M46.70S', 'timeActual': '2020-12-24T01:11:49.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running reverse', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 202692, 'x': 6.652431011826544, 'y': 51.049325980392155, 'side': 'left', 'shotDistance': 1.13, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:00Z', 'orderNumber': 3400000, 'xLegacy': -5, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 19, 'description': 'A. Burks running reverse Layup (19 PTS) (J. Randle 8 AST)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 8}, {'actionNumber': 345, 'clock': 'PT00M35.50S', 'timeActual': '2020-12-24T01:12:02.2Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203933, 'x': 90.22667542706965, 'y': 3.990502450980392, 'side': 'right', 'shotDistance': 23.34, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:06Z', 'orderNumber': 3420000, 'xLegacy': -230, 'yLegacy': 39, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS T. Warren 3PT', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 346, 'clock': 'PT00M32.90S', 'timeActual': '2020-12-24T01:12:04.8Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:06Z', 'orderNumber': 3430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 345, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'O. Toppin REBOUND (Off:0 Def:2)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 347, 'clock': 'PT00M22.80S', 'timeActual': '2020-12-24T01:12:14.9Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203944, 'x': 32.40801576872536, 'y': 36.34344362745098, 'side': 'left', 'shotDistance': 26.12, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:19Z', 'orderNumber': 3440000, 'xLegacy': 68, 'yLegacy': 252, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS J. Randle 26' 3PT\", 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 348, 'clock': 'PT00M19.60S', 'timeActual': '2020-12-24T01:12:18.0Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:18Z', 'orderNumber': 3450000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 347, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:4)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 349, 'clock': 'PT00M00.10S', 'timeActual': '2020-12-24T01:12:37.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 93.38042049934296, 'y': 51.049325980392155, 'side': 'right', 'shotDistance': 1.1, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:45Z', 'orderNumber': 3460000, 'xLegacy': 5, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving floating Shot - blocked', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 1630167], 'blockPlayerName': 'Toppin', 'blockPersonId': 1630167}, {'actionNumber': 350, 'clock': 'PT00M00.10S', 'timeActual': '2020-12-24T01:12:37.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:41Z', 'orderNumber': 3470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'O. Toppin BLOCK (2 BLK)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 351, 'clock': 'PT00M00.10S', 'timeActual': '2020-12-24T01:12:37.5Z', 'period': 2, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:45Z', 'orderNumber': 3480000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 349, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 352, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T01:12:44.4Z', 'period': 2, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:12:44Z', 'orderNumber': 3490000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period End', 'personIdsFilter': []}, {'actionNumber': 353, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 354, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 355, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 356, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 357, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 358, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:27:28.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 203493, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3550000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: R. Bullock', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 359, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:28:05.5Z', 'period': 3, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'start', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:05Z', 'orderNumber': 3560000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period Start', 'personIdsFilter': []}, {'actionNumber': 360, 'clock': 'PT11M46.00S', 'timeActual': '2020-12-24T01:28:18.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203944, 'x': 77.61169513797634, 'y': 45.41207107843137, 'side': 'right', 'shotDistance': 15.97, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:24Z', 'orderNumber': 3570000, 'xLegacy': -23, 'yLegacy': 158, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS J. Randle 15' pullup Shot\", 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 361, 'clock': 'PT11M41.00S', 'timeActual': '2020-12-24T01:28:23.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:24Z', 'orderNumber': 3580000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 360, 'reboundTotal': 5, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 2, 'description': 'M. Brogdon REBOUND (Off:2 Def:3)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 362, 'clock': 'PT11M28.00S', 'timeActual': '2020-12-24T01:28:35.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 6.652431011826544, 'y': 51.049325980392155, 'side': 'left', 'shotDistance': 1.13, 'possession': 1610612754, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:40Z', 'orderNumber': 3590000, 'xLegacy': -5, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Layup', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 363, 'clock': 'PT11M26.00S', 'timeActual': '2020-12-24T01:28:37.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:40Z', 'orderNumber': 3600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 362, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'E. Payton REBOUND (Off:0 Def:1)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 364, 'clock': 'PT11M19.00S', 'timeActual': '2020-12-24T01:28:48.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'out-of-bounds', 'descriptor': 'bad pass', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '61', 'scoreAway': '66', 'edited': '2020-12-24T01:28:56Z', 'officialId': 1627541, 'orderNumber': 3610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 3, 'description': 'E. Payton bad pass out-of-bounds TURNOVER (3 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 365, 'clock': 'PT11M02.00S', 'timeActual': '2020-12-24T01:29:13.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 203506, 'x': 5.075558475689881, 'y': 49.82383578431372, 'side': 'left', 'shotDistance': 0.49, 'possession': 1610612754, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:29:16Z', 'orderNumber': 3620000, 'xLegacy': 1, 'yLegacy': -5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'V. Oladipo cutting Layup (8 PTS) (D. Sabonis 4 AST)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 4}, {'actionNumber': 367, 'clock': 'PT10M42.00S', 'timeActual': '2020-12-24T01:29:35.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:29:42Z', 'officialId': 200832, 'orderNumber': 3640000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'T. Warren personal FOUL (1 PF)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 1629628], 'foulDrawnPlayerName': 'Barrett', 'foulDrawnPersonId': 1629628}, {'actionNumber': 369, 'clock': 'PT10M32.00S', 'timeActual': '2020-12-24T01:30:06.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'out-of-bounds', 'descriptor': 'step', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:30:11Z', 'officialId': 200832, 'orderNumber': 3660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 4, 'description': 'E. Payton step out-of-bounds TURNOVER (4 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 370, 'clock': 'PT10M20.00S', 'timeActual': '2020-12-24T01:30:27.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': ['fromturnover'], 'personId': 1627763, 'x': 22.026938239159, 'y': 3.2552083333333335, 'side': 'left', 'shotDistance': 28.02, 'possession': 1610612754, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:30:32Z', 'orderNumber': 3670000, 'xLegacy': 234, 'yLegacy': 155, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Brogdon 28' pullup 3PT\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 371, 'clock': 'PT10M17.00S', 'timeActual': '2020-12-24T01:30:30.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '63', 'scoreAway': '66', 'edited': '2020-12-24T01:30:32Z', 'orderNumber': 3680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 370, 'reboundTotal': 6, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 0, 'description': 'J. Randle REBOUND (Off:0 Def:6)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 372, 'clock': 'PT10M00.00S', 'timeActual': '2020-12-24T01:30:47.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 93.38042049934296, 'y': 51.78462009803921, 'side': 'right', 'shotDistance': 1.32, 'possession': 1610612752, 'scoreHome': '63', 'scoreAway': '68', 'edited': '2020-12-24T01:30:51Z', 'orderNumber': 3690000, 'xLegacy': 9, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 9, 'description': 'J. Randle driving finger roll Layup (9 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 373, 'clock': 'PT09M44.00S', 'timeActual': '2020-12-24T01:31:02.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup bank', 'qualifiers': [], 'personId': 203506, 'x': 12.434296977660972, 'y': 33.64736519607843, 'side': 'left', 'shotDistance': 10.41, 'possession': 1610612754, 'scoreHome': '65', 'scoreAway': '68', 'edited': '2020-12-24T01:31:05Z', 'orderNumber': 3700000, 'xLegacy': 82, 'yLegacy': 64, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': \"V. Oladipo 10' pullup bank Jump Shot (10 PTS)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 374, 'clock': 'PT09M34.00S', 'timeActual': '2020-12-24T01:31:13.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203901, 'x': 84.31340341655716, 'y': 96.39246323529412, 'side': 'right', 'shotDistance': 25.07, 'possession': 1610612752, 'scoreHome': '65', 'scoreAway': '71', 'edited': '2020-12-24T01:31:19Z', 'orderNumber': 3710000, 'xLegacy': 232, 'yLegacy': 95, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': \"E. Payton 25' 3PT (5 PTS) (J. Randle 9 AST)\", 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 203944], 'assistPlayerNameInitial': 'J. Randle', 'assistPersonId': 203944, 'assistTotal': 9}, {'actionNumber': 376, 'clock': 'PT09M15.00S', 'timeActual': '2020-12-24T01:31:31.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203506, 'x': 32.670827858081466, 'y': 66.49050245098039, 'side': 'left', 'shotDistance': 26.76, 'possession': 1610612754, 'scoreHome': '68', 'scoreAway': '71', 'edited': '2020-12-24T01:31:36Z', 'orderNumber': 3730000, 'xLegacy': -82, 'yLegacy': 255, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 13, 'description': \"V. Oladipo 26' 3PT pullup (13 PTS)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 377, 'clock': 'PT09M01.00S', 'timeActual': '2020-12-24T01:31:45.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 203901, 'x': 84.31340341655716, 'y': 54.72579656862745, 'side': 'right', 'shotDistance': 9.79, 'possession': 1610612752, 'scoreHome': '68', 'scoreAway': '71', 'edited': '2020-12-24T01:31:49Z', 'orderNumber': 3740000, 'xLegacy': 24, 'yLegacy': 95, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS E. Payton 9' driving floating Shot\", 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 378, 'clock': 'PT09M00.00S', 'timeActual': '2020-12-24T01:31:46.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '68', 'scoreAway': '71', 'edited': '2020-12-24T01:31:49Z', 'orderNumber': 3750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 377, 'reboundTotal': 1, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 0, 'description': 'T. Warren REBOUND (Off:0 Def:1)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 379, 'clock': 'PT08M46.00S', 'timeActual': '2020-12-24T01:32:03.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '68', 'scoreAway': '71', 'edited': '2020-12-24T01:32:09Z', 'officialId': 200832, 'orderNumber': 3760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'J. Randle personal FOUL (3 PF)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 381, 'clock': 'PT08M44.00S', 'timeActual': '2020-12-24T01:32:23.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'reverse', 'qualifiers': ['pointsinthepaint'], 'personId': 203506, 'x': 5.995400788436268, 'y': 49.82383578431372, 'side': 'left', 'shotDistance': 0.4, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '71', 'edited': '2020-12-24T01:32:27Z', 'orderNumber': 3780000, 'xLegacy': 1, 'yLegacy': 4, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': 'V. Oladipo reverse Layup (15 PTS) (M. Brogdon 6 AST)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 6}, {'actionNumber': 383, 'clock': 'PT08M26.00S', 'timeActual': '2020-12-24T01:32:41.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 87.72996057818659, 'y': 54.48069852941176, 'side': 'right', 'shotDistance': 6.67, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '73', 'edited': '2020-12-24T01:32:45Z', 'orderNumber': 3800000, 'xLegacy': 22, 'yLegacy': 63, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 22, 'description': \"R. Barrett 6' driving floating Jump Shot (22 PTS) (E. Payton 2 AST)\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203901], 'assistPlayerNameInitial': 'E. Payton', 'assistPersonId': 203901, 'assistTotal': 2}, {'actionNumber': 385, 'clock': 'PT08M12.00S', 'timeActual': '2020-12-24T01:32:54.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203933, 'x': 22.946780551905388, 'y': 34.38265931372549, 'side': 'left', 'shotDistance': 18.09, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '73', 'edited': '2020-12-24T01:32:58Z', 'orderNumber': 3820000, 'xLegacy': 78, 'yLegacy': 163, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS T. Warren 18' pullup Shot\", 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 386, 'clock': 'PT08M11.00S', 'timeActual': '2020-12-24T01:32:55.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '73', 'edited': '2020-12-24T01:32:58Z', 'orderNumber': 3830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 385, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:3)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 387, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T01:33:05.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 203933, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '73', 'edited': '2020-12-24T01:33:13Z', 'officialId': 200832, 'orderNumber': 3840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'T. Warren shooting personal FOUL (2 PF) (Robinson 2 FT)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 1629011], 'foulDrawnPlayerName': 'Robinson', 'foulDrawnPersonId': 1629011}, {'actionNumber': 389, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T01:33:33.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:33:53Z', 'orderNumber': 3860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 1, 'description': 'M. Robinson Free Throw 1 of 2 (1 PTS)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 390, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T01:33:33.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:33:53Z', 'orderNumber': 3870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS M. Robinson Free Throw 2 of 2', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 391, 'clock': 'PT08M00.00S', 'timeActual': '2020-12-24T01:33:35.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:33:53Z', 'orderNumber': 3880000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 390, 'reboundTotal': 5, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 0, 'description': 'D. Sabonis REBOUND (Off:0 Def:5)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 392, 'clock': 'PT07M48.00S', 'timeActual': '2020-12-24T01:34:10.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'loose ball', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:18Z', 'officialId': 202053, 'orderNumber': 3890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'R. Bullock loose ball personal FOUL (2 PF)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 203506], 'foulDrawnPlayerName': 'Oladipo', 'foulDrawnPersonId': 203506}, {'actionNumber': 394, 'clock': 'PT07M41.00S', 'timeActual': '2020-12-24T01:34:38.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 5.995400788436268, 'y': 49.57873774509804, 'side': 'left', 'shotDistance': 0.44, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:42Z', 'orderNumber': 3910000, 'xLegacy': 2, 'yLegacy': 4, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving finger roll Layup - blocked', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 1629011], 'blockPlayerName': 'Robinson', 'blockPersonId': 1629011}, {'actionNumber': 395, 'clock': 'PT07M41.00S', 'timeActual': '2020-12-24T01:34:38.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:40Z', 'orderNumber': 3920000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Robinson BLOCK (1 BLK)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 396, 'clock': 'PT07M41.00S', 'timeActual': '2020-12-24T01:34:38.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:42Z', 'orderNumber': 3930000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 394, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 397, 'clock': 'PT07M41.00S', 'timeActual': '2020-12-24T01:34:42.7Z', 'period': 3, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '70', 'scoreAway': '74', 'edited': '2020-12-24T01:34:42Z', 'orderNumber': 3940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 398, 'clock': 'PT07M40.00S', 'timeActual': '2020-12-24T01:34:50.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 203506, 'x': 12.697109067017081, 'y': 35.60814950980392, 'side': 'left', 'shotDistance': 9.83, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:34:55Z', 'orderNumber': 3950000, 'xLegacy': 72, 'yLegacy': 67, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 17, 'description': \"V. Oladipo 9' Jump Shot (17 PTS) (M. Brogdon 7 AST)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 7}, {'actionNumber': 400, 'clock': 'PT07M22.00S', 'timeActual': '2020-12-24T01:35:07.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 203901, 'x': 84.83902759526939, 'y': 76.04932598039215, 'side': 'right', 'shotDistance': 15.83, 'possession': 1610612752, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:12Z', 'orderNumber': 3970000, 'xLegacy': 130, 'yLegacy': 90, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS E. Payton 15' pullup Shot\", 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 401, 'clock': 'PT07M20.00S', 'timeActual': '2020-12-24T01:35:09.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:12Z', 'orderNumber': 3980000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 400, 'reboundTotal': 2, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 0, 'description': 'V. Oladipo REBOUND (Off:0 Def:2)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 402, 'clock': 'PT07M16.00S', 'timeActual': '2020-12-24T01:35:14.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203506, 'x': 7.30946123521682, 'y': 48.10814950980392, 'side': 'left', 'shotDistance': 1.88, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:25Z', 'orderNumber': 3990000, 'xLegacy': 9, 'yLegacy': 16, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS V. Oladipo driving finger roll Layup', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 403, 'clock': 'PT07M12.00S', 'timeActual': '2020-12-24T01:35:18.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:18Z', 'orderNumber': 4000000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 402, 'reboundTotal': 6, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 1, 'description': 'D. Sabonis REBOUND (Off:1 Def:5)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 404, 'clock': 'PT07M12.00S', 'timeActual': '2020-12-24T01:35:18.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'putback', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1627734, 'x': 5.590000152587891, 'y': 50.0, 'side': 'left', 'shotDistance': 0.0, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:18Z', 'orderNumber': 4010000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis putback Layup', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 405, 'clock': 'PT07M11.00S', 'timeActual': '2020-12-24T01:35:19.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:19Z', 'orderNumber': 4020000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 404, 'reboundTotal': 7, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:5)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 406, 'clock': 'PT07M09.00S', 'timeActual': '2020-12-24T01:35:21.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Hook', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1627734, 'x': 8.229303547963205, 'y': 48.84344362745098, 'side': 'left', 'shotDistance': 2.56, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:28Z', 'orderNumber': 4030000, 'xLegacy': 6, 'yLegacy': 25, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Hook', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 407, 'clock': 'PT07M07.00S', 'timeActual': '2020-12-24T01:35:23.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:28Z', 'orderNumber': 4040000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 406, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'M. Robinson REBOUND (Off:0 Def:3)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 408, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T01:35:30.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:42Z', 'officialId': 1627541, 'orderNumber': 4050000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 4, 'foulTechnicalTotal': 0, 'description': 'J. Randle offensive FOUL (4 PF)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1627763], 'foulDrawnPlayerName': 'Brogdon', 'foulDrawnPersonId': 1627763}, {'actionNumber': 410, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T01:35:30.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:30Z', 'officialId': 1627541, 'orderNumber': 4070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 4, 'description': 'J. Randle offensive foul TURNOVER (4 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 411, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T01:35:41.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:45Z', 'orderNumber': 4080000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 412, 'clock': 'PT07M02.00S', 'timeActual': '2020-12-24T01:35:41.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '72', 'scoreAway': '74', 'edited': '2020-12-24T01:35:45Z', 'orderNumber': 4090000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 413, 'clock': 'PT06M43.00S', 'timeActual': '2020-12-24T01:36:08.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 1627734, 'x': 5.732588699080158, 'y': 50.314031862745104, 'side': 'left', 'shotDistance': 0.21, 'possession': 1610612754, 'scoreHome': '74', 'scoreAway': '74', 'edited': '2020-12-24T01:36:13Z', 'orderNumber': 4100000, 'xLegacy': -2, 'yLegacy': 1, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 24, 'description': 'D. Sabonis cutting Layup (24 PTS) (V. Oladipo 1 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203506], 'assistPlayerNameInitial': 'V. Oladipo', 'assistPersonId': 203506, 'assistTotal': 1}, {'actionNumber': 415, 'clock': 'PT06M29.00S', 'timeActual': '2020-12-24T01:36:21.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 69.07030223390277, 'y': 17.47089460784314, 'side': 'right', 'shotDistance': 28.84, 'possession': 1610612752, 'scoreHome': '74', 'scoreAway': '77', 'edited': '2020-12-24T01:36:25Z', 'orderNumber': 4120000, 'xLegacy': -163, 'yLegacy': 238, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': \"O. Toppin 28' 3PT (6 PTS) (E. Payton 3 AST)\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167, 203901], 'assistPlayerNameInitial': 'E. Payton', 'assistPersonId': 203901, 'assistTotal': 3}, {'actionNumber': 417, 'clock': 'PT06M13.00S', 'timeActual': '2020-12-24T01:36:37.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 7.440867279894875, 'y': 52.76501225490197, 'side': 'left', 'shotDistance': 2.22, 'possession': 1610612754, 'scoreHome': '74', 'scoreAway': '77', 'edited': '2020-12-24T01:36:41Z', 'orderNumber': 4140000, 'xLegacy': -14, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving finger roll Layup - blocked', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 1629011], 'blockPlayerName': 'Robinson', 'blockPersonId': 1629011}, {'actionNumber': 418, 'clock': 'PT06M13.00S', 'timeActual': '2020-12-24T01:36:37.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '74', 'scoreAway': '77', 'edited': '2020-12-24T01:36:39Z', 'orderNumber': 4150000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Robinson BLOCK (2 BLK)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 419, 'clock': 'PT06M11.00S', 'timeActual': '2020-12-24T01:36:39.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '74', 'scoreAway': '77', 'edited': '2020-12-24T01:36:41Z', 'orderNumber': 4160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 417, 'reboundTotal': 2, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:1)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 420, 'clock': 'PT06M11.00S', 'timeActual': '2020-12-24T01:36:40.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'putback', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1626167, 'x': 5.590000152587891, 'y': 50.0, 'side': 'left', 'shotDistance': 0.0, 'possession': 1610612754, 'scoreHome': '76', 'scoreAway': '77', 'edited': '2020-12-24T01:36:40Z', 'orderNumber': 4170000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': 'M. Turner putback Layup (6 PTS)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 421, 'clock': 'PT05M56.00S', 'timeActual': '2020-12-24T01:36:55.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': [], 'personId': 1630167, 'x': 93.77463863337714, 'y': 68.45128676470588, 'side': 'right', 'shotDistance': 9.25, 'possession': 1610612752, 'scoreHome': '76', 'scoreAway': '77', 'edited': '2020-12-24T01:37:00Z', 'orderNumber': 4180000, 'xLegacy': 92, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 9' driving floating Shot\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 422, 'clock': 'PT05M53.00S', 'timeActual': '2020-12-24T01:36:58.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '76', 'scoreAway': '77', 'edited': '2020-12-24T01:37:00Z', 'orderNumber': 4190000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 421, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'V. Oladipo REBOUND (Off:0 Def:3)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 423, 'clock': 'PT05M49.00S', 'timeActual': '2020-12-24T01:37:02.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203933, 'x': 6.258212877792378, 'y': 52.029718137254896, 'side': 'left', 'shotDistance': 1.19, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:07Z', 'orderNumber': 4200000, 'xLegacy': -10, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'T. Warren cutting Layup (2 PTS) (V. Oladipo 2 AST)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 203506], 'assistPlayerNameInitial': 'V. Oladipo', 'assistPersonId': 203506, 'assistTotal': 2}, {'actionNumber': 425, 'clock': 'PT05M32.00S', 'timeActual': '2020-12-24T01:37:18.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 90.22667542706965, 'y': 3.990502450980392, 'side': 'right', 'shotDistance': 23.34, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:22Z', 'orderNumber': 4220000, 'xLegacy': -230, 'yLegacy': 39, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS O. Toppin 3PT', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 426, 'clock': 'PT05M28.00S', 'timeActual': '2020-12-24T01:37:22.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:22Z', 'orderNumber': 4230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 425, 'reboundTotal': 4, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 1, 'description': 'M. Robinson REBOUND (Off:1 Def:3)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 427, 'clock': 'PT05M24.00S', 'timeActual': '2020-12-24T01:37:26.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'step back', 'qualifiers': ['2ndchance'], 'personId': 203901, 'x': 88.78120893561103, 'y': 70.90226715686273, 'side': 'right', 'shotDistance': 11.72, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:30Z', 'orderNumber': 4240000, 'xLegacy': 105, 'yLegacy': 53, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS E. Payton 11' step back Shot\", 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 428, 'clock': 'PT05M21.00S', 'timeActual': '2020-12-24T01:37:29.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:30Z', 'orderNumber': 4250000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 427, 'reboundTotal': 6, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 2, 'description': 'M. Brogdon REBOUND (Off:2 Def:4)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 429, 'clock': 'PT05M21.00S', 'timeActual': '2020-12-24T01:37:32.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'take', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:39Z', 'officialId': 202053, 'orderNumber': 4260000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'E. Payton take personal FOUL (3 PF)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 1627763], 'foulDrawnPlayerName': 'Brogdon', 'foulDrawnPersonId': 1627763}, {'actionNumber': 431, 'clock': 'PT05M21.00S', 'timeActual': '2020-12-24T01:37:40.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:37:40Z', 'orderNumber': 4280000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 432, 'clock': 'PT05M15.00S', 'timeActual': '2020-12-24T01:40:38.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203506, 'x': 33.459264126149804, 'y': 33.64736519607843, 'side': 'left', 'shotDistance': 27.45, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:40:43Z', 'orderNumber': 4290000, 'xLegacy': 82, 'yLegacy': 262, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS V. Oladipo 27' 3PT\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 433, 'clock': 'PT05M11.00S', 'timeActual': '2020-12-24T01:40:42.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:40:43Z', 'orderNumber': 4300000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 432, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:4)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 434, 'clock': 'PT04M54.00S', 'timeActual': '2020-12-24T01:40:58.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 92.46057818659659, 'y': 96.6375612745098, 'side': 'right', 'shotDistance': 23.39, 'possession': 1610612752, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:41:01Z', 'orderNumber': 4310000, 'xLegacy': 233, 'yLegacy': 18, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS O. Toppin 3PT', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 435, 'clock': 'PT04M53.00S', 'timeActual': '2020-12-24T01:40:59.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '78', 'scoreAway': '77', 'edited': '2020-12-24T01:41:01Z', 'orderNumber': 4320000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 434, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:2)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 436, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:08.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': ['fastbreak', 'pointsinthepaint'], 'personId': 203933, 'x': 7.440867279894875, 'y': 34.13756127450981, 'side': 'left', 'shotDistance': 8.12, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:19Z', 'orderNumber': 4330000, 'xLegacy': 79, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': \"T. Warren 8' pullup Jump Shot (4 PTS) (V. Oladipo 3 AST)\", 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933, 203506], 'assistPlayerNameInitial': 'V. Oladipo', 'assistPersonId': 203506, 'assistTotal': 3}, {'actionNumber': 438, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:10.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'officialId': 1627541, 'orderNumber': 4350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'R. Barrett shooting personal FOUL (3 PF) (Warren 1 FT)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203933], 'foulDrawnPlayerName': 'Warren', 'foulDrawnPersonId': 203933}, {'actionNumber': 440, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:19.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'orderNumber': 4370000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 441, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:19.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'orderNumber': 4380000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 442, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:19.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'orderNumber': 4390000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 443, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:19.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:24Z', 'orderNumber': 4400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. McDermott', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 444, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:34.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:38Z', 'orderNumber': 4410000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 445, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:34.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '80', 'scoreAway': '77', 'edited': '2020-12-24T01:41:38Z', 'orderNumber': 4420000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 446, 'clock': 'PT04M47.00S', 'timeActual': '2020-12-24T01:41:49.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': ['fastbreak'], 'personId': 203933, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:41:49Z', 'orderNumber': 4430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'T. Warren Free Throw 1 of 1 (5 PTS)', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 447, 'clock': 'PT04M29.00S', 'timeActual': '2020-12-24T01:42:12.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'bank', 'qualifiers': ['pointsinthepaint'], 'personId': 1630167, 'x': 93.77463863337714, 'y': 52.27481617647059, 'side': 'right', 'shotDistance': 1.29, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:21Z', 'orderNumber': 4440000, 'xLegacy': 11, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS O. Toppin bank Shot', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 448, 'clock': 'PT04M26.00S', 'timeActual': '2020-12-24T01:42:15.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:21Z', 'orderNumber': 4450000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 447, 'reboundTotal': 8, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:6)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 449, 'clock': 'PT04M21.00S', 'timeActual': '2020-12-24T01:42:20.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fastbreak'], 'personId': 203200, 'x': 30.305519053876477, 'y': 71.39246323529412, 'side': 'left', 'shotDistance': 25.58, 'possession': 1610612754, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:25Z', 'orderNumber': 4460000, 'xLegacy': -107, 'yLegacy': 232, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS J. Holiday 25' 3PT\", 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 450, 'clock': 'PT04M17.00S', 'timeActual': '2020-12-24T01:42:24.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:25Z', 'orderNumber': 4470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 449, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'A. Burks REBOUND (Off:0 Def:3)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 451, 'clock': 'PT04M11.00S', 'timeActual': '2020-12-24T01:42:31.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:37Z', 'officialId': 1627541, 'orderNumber': 4480000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'D. McDermott personal FOUL (1 PF)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1629011], 'foulDrawnPlayerName': 'Robinson', 'foulDrawnPersonId': 1629011}, {'actionNumber': 453, 'clock': 'PT04M11.00S', 'timeActual': '2020-12-24T01:42:36.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203933, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:40Z', 'orderNumber': 4500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: T. Warren', 'playerName': 'Warren', 'playerNameI': 'T. Warren', 'personIdsFilter': [203933]}, {'actionNumber': 454, 'clock': 'PT04M11.00S', 'timeActual': '2020-12-24T01:42:36.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:42:40Z', 'orderNumber': 4510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 455, 'clock': 'PT03M55.00S', 'timeActual': '2020-12-24T01:43:06.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'floating', 'qualifiers': [], 'personId': 1629628, 'x': 70.64717477003943, 'y': 49.333639705882355, 'side': 'right', 'shotDistance': 22.34, 'possession': 1610612752, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:43:49Z', 'orderNumber': 4520000, 'xLegacy': -3, 'yLegacy': 223, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS R. Barrett 22' floating Shot\", 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 456, 'clock': 'PT03M52.00S', 'timeActual': '2020-12-24T01:43:09.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '81', 'scoreAway': '77', 'edited': '2020-12-24T01:43:11Z', 'orderNumber': 4530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 455, 'reboundTotal': 9, 'reboundDefensiveTotal': 7, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:7)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 457, 'clock': 'PT03M50.00S', 'timeActual': '2020-12-24T01:43:11.0Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['fastbreak', 'pointsinthepaint'], 'personId': 203200, 'x': 5.601182654402102, 'y': 51.049325980392155, 'side': 'left', 'shotDistance': 0.52, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '77', 'edited': '2020-12-24T01:45:11Z', 'orderNumber': 4540000, 'xLegacy': -5, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'J. Holiday running finger roll Layup (2 PTS) (V. Oladipo 4 AST)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200, 203506], 'assistPlayerNameInitial': 'V. Oladipo', 'assistPersonId': 203506, 'assistTotal': 4}, {'actionNumber': 459, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T01:43:15.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '77', 'edited': '2020-12-24T01:43:15Z', 'orderNumber': 4560000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'NYK Timeout', 'personIdsFilter': []}, {'actionNumber': 460, 'clock': 'PT03M34.00S', 'timeActual': '2020-12-24T01:46:22.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 72.22404730617609, 'y': 10.853247549019608, 'side': 'right', 'shotDistance': 28.6, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:46:30Z', 'orderNumber': 4570000, 'xLegacy': -196, 'yLegacy': 209, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 11, 'description': \"R. Bullock 28' 3PT (11 PTS) (R. Barrett 4 AST)\", 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 4}, {'actionNumber': 462, 'clock': 'PT03M17.00S', 'timeActual': '2020-12-24T01:46:49.9Z', 'period': 3, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:46:49Z', 'orderNumber': 4590000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 463, 'clock': 'PT03M06.00S', 'timeActual': '2020-12-24T01:47:11.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203926, 'x': 35.43035479632063, 'y': 19.921875, 'side': 'left', 'shotDistance': 31.83, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:17Z', 'orderNumber': 4600000, 'xLegacy': 150, 'yLegacy': 281, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 31' 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 464, 'clock': 'PT03M01.00S', 'timeActual': '2020-12-24T01:47:15.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:15Z', 'orderNumber': 4610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 463, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'O. Toppin REBOUND (Off:0 Def:3)', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 465, 'clock': 'PT02M51.00S', 'timeActual': '2020-12-24T01:47:25.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 202692, 'x': 65.25952693823915, 'y': 49.333639705882355, 'side': 'right', 'shotDistance': 27.41, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:29Z', 'orderNumber': 4620000, 'xLegacy': -3, 'yLegacy': 274, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Burks 27' pullup 3PT\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 466, 'clock': 'PT02M49.00S', 'timeActual': '2020-12-24T01:47:27.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:29Z', 'orderNumber': 4630000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 465, 'reboundTotal': 4, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:3)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 467, 'clock': 'PT02M39.00S', 'timeActual': '2020-12-24T01:47:38.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1627763, 'x': 6.1268068331143235, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.03, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:42Z', 'orderNumber': 4640000, 'xLegacy': -9, 'yLegacy': 5, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Brogdon driving finger roll Layup - blocked', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 202692], 'blockPlayerName': 'Burks', 'blockPersonId': 202692}, {'actionNumber': 468, 'clock': 'PT02M39.00S', 'timeActual': '2020-12-24T01:47:38.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:41Z', 'orderNumber': 4650000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'A. Burks BLOCK (1 BLK)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 469, 'clock': 'PT02M35.00S', 'timeActual': '2020-12-24T01:47:42.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:42Z', 'orderNumber': 4660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 467, 'reboundTotal': 5, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:5)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 470, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:47:45.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1629628, 'x': 94.1688567674113, 'y': 51.294424019607845, 'side': 'right', 'shotDistance': 0.69, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:48:26Z', 'orderNumber': 4670000, 'xLegacy': 6, 'yLegacy': 2, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Barrett driving Layup - blocked', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628, 203200], 'blockPlayerName': 'Holiday', 'blockPersonId': 203200}, {'actionNumber': 471, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:47:45.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:47:49Z', 'orderNumber': 4680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'J. Holiday BLOCK (1 BLK)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 479, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:47:45.9Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:53:56Z', 'orderNumber': 4685000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 470, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 472, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:05.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:50:39Z', 'orderNumber': 4707500, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 473, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:05.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:50:39Z', 'orderNumber': 4718750, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 474, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:05.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:50:39Z', 'orderNumber': 4724375, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 475, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:05.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:50:39Z', 'orderNumber': 4727187, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 476, 'clock': 'PT02M31.00S', 'timeActual': '2020-12-24T01:48:23.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'jumpball', 'subType': 'recovered', 'descriptor': 'heldball', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:52:49Z', 'orderNumber': 4730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'jumpBallRecoveredName': 'A. Holiday', 'jumpBallRecoverdPersonId': 1628988, 'side': None, 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 203200, 1629628], 'jumpBallWonPlayerName': 'Holiday', 'jumpBallWonPersonId': 203200, 'description': 'Jump Ball J. Holiday vs. R. Barrett: Tip to A. Holiday', 'jumpBallLostPlayerName': 'Barrett', 'jumpBallLostPersonId': 1629628}, {'actionNumber': 480, 'clock': 'PT02M08.00S', 'timeActual': '2020-12-24T01:48:43.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround', 'qualifiers': ['pointsinthepaint'], 'personId': 1626167, 'x': 7.440867279894875, 'y': 50.80422794117647, 'side': 'left', 'shotDistance': 1.79, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:48:47Z', 'orderNumber': 4760000, 'xLegacy': -4, 'yLegacy': 17, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Turner turnaround Shot - blocked', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 1629011], 'blockPlayerName': 'Robinson', 'blockPersonId': 1629011}, {'actionNumber': 481, 'clock': 'PT02M08.00S', 'timeActual': '2020-12-24T01:48:43.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:48:45Z', 'orderNumber': 4770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Robinson BLOCK (3 BLK)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 482, 'clock': 'PT02M06.00S', 'timeActual': '2020-12-24T01:48:45.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:48:47Z', 'orderNumber': 4780000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 480, 'reboundTotal': 6, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:6)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 483, 'clock': 'PT01M56.00S', 'timeActual': '2020-12-24T01:48:56.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint'], 'personId': 1629011, 'x': 96.40275952693824, 'y': 53.255208333333336, 'side': 'right', 'shotDistance': 2.48, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:49:06Z', 'orderNumber': 4790000, 'xLegacy': 16, 'yLegacy': -19, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS M. Robinson cutting Layup - blocked', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 530, 'clock': 'PT01M56.00S', 'timeActual': '2020-12-24T01:48:56.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:57:18Z', 'orderNumber': 4795000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (5 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 484, 'clock': 'PT01M54.00S', 'timeActual': '2020-12-24T01:48:58.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '80', 'edited': '2020-12-24T01:57:18Z', 'orderNumber': 4800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 483, 'reboundTotal': 5, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 2, 'description': 'M. Robinson REBOUND (Off:2 Def:3)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 485, 'clock': 'PT01M54.00S', 'timeActual': '2020-12-24T01:48:59.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'tip', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1629011, 'x': 94.40999984741211, 'y': 50.0, 'side': 'right', 'shotDistance': 0.0, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:48:59Z', 'orderNumber': 4810000, 'xLegacy': 0, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'M. Robinson tip Layup (3 PTS)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 486, 'clock': 'PT01M43.00S', 'timeActual': '2020-12-24T01:49:09.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1628988, 'x': 36.61300919842313, 'y': 39.5297181372549, 'side': 'left', 'shotDistance': 29.64, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:14Z', 'orderNumber': 4820000, 'xLegacy': 52, 'yLegacy': 292, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Holiday 29' 3PT\", 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 487, 'clock': 'PT01M41.00S', 'timeActual': '2020-12-24T01:49:11.2Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:14Z', 'orderNumber': 4830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 486, 'reboundTotal': 6, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 2, 'description': 'M. Robinson REBOUND (Off:2 Def:4)', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 488, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T01:49:22.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:28Z', 'officialId': 200832, 'orderNumber': 4840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'A. Holiday personal FOUL (2 PF)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1629628], 'foulDrawnPlayerName': 'Barrett', 'foulDrawnPersonId': 1629628}, {'actionNumber': 490, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T01:49:27.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:31Z', 'orderNumber': 4860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Brogdon', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 491, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T01:49:27.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:31Z', 'orderNumber': 4870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. McConnell', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 492, 'clock': 'PT01M31.00S', 'timeActual': '2020-12-24T01:49:53.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1630167, 'x': 96.5341655716163, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 2.13, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:59Z', 'orderNumber': 4880000, 'xLegacy': 8, 'yLegacy': -20, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS O. Toppin driving finger roll Layup - blocked', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 493, 'clock': 'PT01M31.00S', 'timeActual': '2020-12-24T01:49:53.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:54Z', 'orderNumber': 4890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (6 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 494, 'clock': 'PT01M28.00S', 'timeActual': '2020-12-24T01:49:56.1Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:49:59Z', 'orderNumber': 4900000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 492, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'J. Holiday REBOUND (Off:0 Def:3)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 495, 'clock': 'PT01M25.00S', 'timeActual': '2020-12-24T01:50:00.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:50:33Z', 'officialId': 200832, 'orderNumber': 4910000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'A. Burks shooting personal FOUL (2 PF) (Holiday 2 FT)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203200], 'foulDrawnPlayerName': 'Holiday', 'foulDrawnPersonId': 203200}, {'actionNumber': 497, 'clock': 'PT01M25.00S', 'timeActual': '2020-12-24T01:50:34.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:50:34Z', 'orderNumber': 4930000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS J. Holiday Free Throw 1 of 2', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 498, 'clock': 'PT01M25.00S', 'timeActual': '2020-12-24T01:50:34.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '83', 'scoreAway': '82', 'edited': '2020-12-24T01:50:34Z', 'orderNumber': 4940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 497, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 499, 'clock': 'PT01M25.00S', 'timeActual': '2020-12-24T01:50:41.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '84', 'scoreAway': '82', 'edited': '2020-12-24T01:50:41Z', 'orderNumber': 4950000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'J. Holiday Free Throw 2 of 2 (3 PTS)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 500, 'clock': 'PT01M11.00S', 'timeActual': '2020-12-24T01:50:58.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 202692, 'x': 93.64323258869908, 'y': 49.08854166666667, 'side': 'right', 'shotDistance': 0.86, 'possession': 1610612752, 'scoreHome': '84', 'scoreAway': '82', 'edited': '2020-12-24T01:51:02Z', 'orderNumber': 4960000, 'xLegacy': -5, 'yLegacy': 7, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Burks driving Layup - blocked', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 501, 'clock': 'PT01M11.00S', 'timeActual': '2020-12-24T01:50:58.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '84', 'scoreAway': '82', 'edited': '2020-12-24T01:51:00Z', 'orderNumber': 4970000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (7 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 502, 'clock': 'PT01M08.00S', 'timeActual': '2020-12-24T01:51:01.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '84', 'scoreAway': '82', 'edited': '2020-12-24T01:51:02Z', 'orderNumber': 4980000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 500, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'J. Holiday REBOUND (Off:0 Def:4)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 503, 'clock': 'PT01M05.00S', 'timeActual': '2020-12-24T01:51:05.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'cutting', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203926, 'x': 4.681340341655716, 'y': 50.314031862745104, 'side': 'left', 'shotDistance': 0.86, 'possession': 1610612754, 'scoreHome': '86', 'scoreAway': '82', 'edited': '2020-12-24T01:51:10Z', 'orderNumber': 4990000, 'xLegacy': -2, 'yLegacy': -8, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 10, 'description': 'D. McDermott cutting DUNK (10 PTS) (T. McConnell 3 AST)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 3}, {'actionNumber': 506, 'clock': 'PT00M49.10S', 'timeActual': '2020-12-24T01:51:23.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 91.27792378449409, 'y': 52.76501225490197, 'side': 'right', 'shotDistance': 3.26, 'possession': 1610612752, 'scoreHome': '86', 'scoreAway': '82', 'edited': '2020-12-24T01:51:42Z', 'orderNumber': 5020000, 'xLegacy': 14, 'yLegacy': 29, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Barrett turnaround Shot', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 507, 'clock': 'PT00M48.00S', 'timeActual': '2020-12-24T01:51:24.6Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '86', 'scoreAway': '82', 'edited': '2020-12-24T01:52:02Z', 'orderNumber': 5030000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 506, 'reboundTotal': 5, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:4)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 508, 'clock': 'PT00M44.00S', 'timeActual': '2020-12-24T01:51:26.8Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'running finger roll', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 1628988, 'x': 6.521024967148489, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.25, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:51:31Z', 'orderNumber': 5040000, 'xLegacy': -9, 'yLegacy': 9, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 7, 'description': 'A. Holiday running finger roll Layup (7 PTS)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 509, 'clock': 'PT00M21.50S', 'timeActual': '2020-12-24T01:51:51.7Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 90.75229960578186, 'y': 4.4806985294117645, 'side': 'right', 'shotDistance': 23.02, 'possession': 1610612752, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:51:55Z', 'orderNumber': 5050000, 'xLegacy': -228, 'yLegacy': 34, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Bullock 3PT', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 510, 'clock': 'PT00M18.90S', 'timeActual': '2020-12-24T01:51:54.3Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:51:55Z', 'orderNumber': 5060000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 509, 'reboundTotal': 4, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:3)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 511, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T01:52:13.5Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 204456, 'x': 8.623521681997373, 'y': 47.86305147058824, 'side': 'left', 'shotDistance': 3.05, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:52:17Z', 'orderNumber': 5070000, 'xLegacy': 11, 'yLegacy': 29, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS T. McConnell driving Layup', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 512, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T01:52:15.4Z', 'period': 3, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:52:15Z', 'orderNumber': 5080000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 511, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 513, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T01:52:15.9Z', 'period': 3, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:52:15Z', 'orderNumber': 5090000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period End', 'personIdsFilter': []}, {'actionNumber': 514, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:23.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:41Z', 'orderNumber': 5100000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 515, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:23.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': ['startperiod'], 'personId': 203493, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:41Z', 'orderNumber': 5110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Bullock', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 516, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:23.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:41Z', 'orderNumber': 5120000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 517, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:23.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': ['startperiod'], 'personId': 1628373, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:41Z', 'orderNumber': 5130000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: F. Ntilikina', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 518, 'clock': 'PT12M00.00S', 'timeActual': '2020-12-24T01:54:54.3Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'start', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '88', 'scoreAway': '82', 'edited': '2020-12-24T01:54:54Z', 'orderNumber': 5140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period Start', 'personIdsFilter': []}, {'actionNumber': 519, 'clock': 'PT11M40.00S', 'timeActual': '2020-12-24T01:55:13.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', 'defensivegoaltending'], 'personId': 203926, 'x': 8.360709592641262, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 2.69, 'possession': 1610612754, 'scoreHome': '90', 'scoreAway': '82', 'edited': '2020-12-24T01:55:27Z', 'orderNumber': 5150000, 'xLegacy': -6, 'yLegacy': 26, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 12, 'description': 'D. McDermott driving finger roll Layup (12 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 521, 'clock': 'PT11M40.00S', 'timeActual': '2020-12-24T01:55:17.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'violation', 'subType': 'defensive goaltending', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '90', 'scoreAway': '82', 'edited': '2020-12-24T01:55:27Z', 'officialId': 1627541, 'orderNumber': 5170000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'M. Robinson defensive goaltending VIOLATION', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 522, 'clock': 'PT11M35.00S', 'timeActual': '2020-12-24T01:55:33.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '90', 'scoreAway': '82', 'edited': '2020-12-24T01:55:39Z', 'officialId': 200832, 'orderNumber': 5180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'D. McDermott personal FOUL (2 PF)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1630167], 'foulDrawnPlayerName': 'Toppin', 'foulDrawnPersonId': 1630167}, {'actionNumber': 524, 'clock': 'PT11M22.00S', 'timeActual': '2020-12-24T01:56:07.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '90', 'scoreAway': '82', 'edited': '2020-12-24T01:56:19Z', 'officialId': 1627541, 'orderNumber': 5200000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'A. Holiday shooting personal FOUL (3 PF) (Burks 2 FT)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 526, 'clock': 'PT11M22.00S', 'timeActual': '2020-12-24T01:56:32.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '90', 'scoreAway': '83', 'edited': '2020-12-24T01:56:32Z', 'orderNumber': 5220000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 20, 'description': 'A. Burks Free Throw 1 of 2 (20 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 527, 'clock': 'PT11M22.00S', 'timeActual': '2020-12-24T01:56:49.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '90', 'scoreAway': '84', 'edited': '2020-12-24T01:56:49Z', 'orderNumber': 5230000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 21, 'description': 'A. Burks Free Throw 2 of 2 (21 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 528, 'clock': 'PT11M07.00S', 'timeActual': '2020-12-24T01:57:04.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'DUNK', 'qualifiers': ['pointsinthepaint'], 'personId': 1626167, 'x': 6.258212877792378, 'y': 52.029718137254896, 'side': 'left', 'shotDistance': 1.19, 'possession': 1610612754, 'scoreHome': '92', 'scoreAway': '84', 'edited': '2020-12-24T01:57:07Z', 'orderNumber': 5240000, 'xLegacy': -10, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 8, 'description': 'M. Turner DUNK (8 PTS) (T. McConnell 4 AST)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 4}, {'actionNumber': 531, 'clock': 'PT10M48.00S', 'timeActual': '2020-12-24T01:57:23.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'bank', 'qualifiers': [], 'personId': 1630167, 'x': 67.09921156373193, 'y': 22.863051470588236, 'side': 'right', 'shotDistance': 29.04, 'possession': 1610612752, 'scoreHome': '92', 'scoreAway': '87', 'edited': '2020-12-24T01:57:29Z', 'orderNumber': 5260000, 'xLegacy': -136, 'yLegacy': 257, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 9, 'description': \"O. Toppin 29' 3PT bank (9 PTS) (A. Burks 1 AST)\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167, 202692], 'assistPlayerNameInitial': 'A. Burks', 'assistPersonId': 202692, 'assistTotal': 1}, {'actionNumber': 533, 'clock': 'PT10M30.00S', 'timeActual': '2020-12-24T01:57:47.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'step back', 'qualifiers': [], 'personId': 203200, 'x': 33.590670170827856, 'y': 43.20618872549019, 'side': 'left', 'shotDistance': 26.55, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:57:53Z', 'orderNumber': 5280000, 'xLegacy': 34, 'yLegacy': 263, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 6, 'description': \"J. Holiday 26' 3PT step back (6 PTS) (M. Turner 1 AST)\", 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200, 1626167], 'assistPlayerNameInitial': 'M. Turner', 'assistPersonId': 1626167, 'assistTotal': 1}, {'actionNumber': 535, 'clock': 'PT10M14.00S', 'timeActual': '2020-12-24T01:58:02.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1630167, 'x': 73.53810775295663, 'y': 11.098345588235293, 'side': 'right', 'shotDistance': 27.63, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:07Z', 'orderNumber': 5300000, 'xLegacy': -195, 'yLegacy': 196, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS O. Toppin 27' 3PT\", 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 536, 'clock': 'PT10M12.00S', 'timeActual': '2020-12-24T01:58:04.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:07Z', 'orderNumber': 5310000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 535, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'T. McConnell REBOUND (Off:0 Def:3)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 537, 'clock': 'PT10M05.00S', 'timeActual': '2020-12-24T01:58:12.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1626167, 'x': 31.61957950065703, 'y': 69.921875, 'side': 'left', 'shotDistance': 26.42, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:17Z', 'orderNumber': 5320000, 'xLegacy': -100, 'yLegacy': 245, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Turner 26' 3PT\", 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 538, 'clock': 'PT10M02.00S', 'timeActual': '2020-12-24T01:58:15.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:17Z', 'orderNumber': 5330000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 537, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'A. Burks REBOUND (Off:0 Def:4)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 539, 'clock': 'PT09M55.00S', 'timeActual': '2020-12-24T01:58:22.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1628373, 'x': 88.64980289093299, 'y': 78.99050245098039, 'side': 'right', 'shotDistance': 15.48, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:26Z', 'orderNumber': 5340000, 'xLegacy': 145, 'yLegacy': 54, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS F. Ntilikina 15' pullup Shot\", 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 540, 'clock': 'PT09M52.00S', 'timeActual': '2020-12-24T01:58:25.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:26Z', 'orderNumber': 5350000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 539, 'reboundTotal': 5, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:4)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 541, 'clock': 'PT09M48.00S', 'timeActual': '2020-12-24T01:58:29.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'bad pass', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:32Z', 'orderNumber': 5360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'A. Holiday bad pass TURNOVER (2 TO)', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988, 1628373], 'stealPlayerName': 'Ntilikina', 'stealPersonId': 1628373}, {'actionNumber': 542, 'clock': 'PT09M48.00S', 'timeActual': '2020-12-24T01:58:29.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'steal', 'qualifiers': [], 'personId': 1628373, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:31Z', 'orderNumber': 5370000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'F. Ntilikina STEAL (1 STL)', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 543, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:58:38.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '87', 'edited': '2020-12-24T01:58:49Z', 'officialId': 1627541, 'orderNumber': 5380000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'T. McConnell shooting personal FOUL (3 PF) (Ntilikina 2 FT)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 1628373], 'foulDrawnPlayerName': 'Ntilikina', 'foulDrawnPersonId': 1628373}, {'actionNumber': 545, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:09.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fromturnover'], 'personId': 1628373, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:33Z', 'orderNumber': 5400000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 1, 'description': 'F. Ntilikina Free Throw 1 of 2 (1 PTS)', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 546, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:16Z', 'orderNumber': 5410000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 547, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629011, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:16Z', 'orderNumber': 5420000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Robinson', 'playerName': 'Robinson', 'playerNameI': 'M. Robinson', 'personIdsFilter': [1629011]}, {'actionNumber': 548, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:16Z', 'orderNumber': 5430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: N. Noel', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 549, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:16Z', 'orderNumber': 5440000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 550, 'clock': 'PT09M39.00S', 'timeActual': '2020-12-24T01:59:09.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fromturnover'], 'personId': 1628373, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:33Z', 'orderNumber': 5450000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS F. Ntilikina Free Throw 2 of 2', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 551, 'clock': 'PT09M38.00S', 'timeActual': '2020-12-24T01:59:10.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:33Z', 'orderNumber': 5460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 550, 'reboundTotal': 6, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:5)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 552, 'clock': 'PT09M31.00S', 'timeActual': '2020-12-24T01:59:42.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T01:59:48Z', 'officialId': 200832, 'orderNumber': 5470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'A. Burks personal FOUL (3 PF)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 203200], 'foulDrawnPlayerName': 'Holiday', 'foulDrawnPersonId': 203200}, {'actionNumber': 554, 'clock': 'PT09M25.00S', 'timeActual': '2020-12-24T02:00:05.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1628988, 'x': 25.443495400788436, 'y': 8.892463235294118, 'side': 'left', 'shotDistance': 27.76, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:10Z', 'orderNumber': 5490000, 'xLegacy': 206, 'yLegacy': 187, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Holiday 27' 3PT\", 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 555, 'clock': 'PT09M20.00S', 'timeActual': '2020-12-24T02:00:10.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:10Z', 'orderNumber': 5500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 554, 'reboundTotal': 3, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 0, 'description': 'K. Knox II REBOUND (Off:0 Def:3)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 556, 'clock': 'PT09M02.00S', 'timeActual': '2020-12-24T02:00:30.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'traveling', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:35Z', 'officialId': 202053, 'orderNumber': 5510000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 2, 'description': 'N. Noel traveling TURNOVER (2 TO)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 557, 'clock': 'PT09M02.00S', 'timeActual': '2020-12-24T02:00:32.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628988, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:39Z', 'orderNumber': 5520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Holiday', 'playerName': 'Holiday', 'playerNameI': 'A. Holiday', 'personIdsFilter': [1628988]}, {'actionNumber': 558, 'clock': 'PT09M02.00S', 'timeActual': '2020-12-24T02:00:32.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '95', 'scoreAway': '88', 'edited': '2020-12-24T02:00:39Z', 'orderNumber': 5530000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: D. Sabonis', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 559, 'clock': 'PT08M50.00S', 'timeActual': '2020-12-24T02:01:00.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'reverse', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 204456, 'x': 6.783837056504599, 'y': 51.78462009803921, 'side': 'left', 'shotDistance': 1.44, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '88', 'edited': '2020-12-24T02:01:04Z', 'orderNumber': 5540000, 'xLegacy': -9, 'yLegacy': 11, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'T. McConnell reverse Layup (2 PTS) (D. McDermott 1 AST)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 203926], 'assistPlayerNameInitial': 'D. McDermott', 'assistPersonId': 203926, 'assistTotal': 1}, {'actionNumber': 561, 'clock': 'PT08M41.00S', 'timeActual': '2020-12-24T02:01:10.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1628995, 'x': 95.22010512483574, 'y': 54.72579656862745, 'side': 'right', 'shotDistance': 2.48, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:13Z', 'orderNumber': 5560000, 'xLegacy': 24, 'yLegacy': -8, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 2, 'description': 'K. Knox II driving finger roll Layup (2 PTS) (N. Noel 1 AST)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 203457], 'assistPlayerNameInitial': 'N. Noel', 'assistPersonId': 203457, 'assistTotal': 1}, {'actionNumber': 563, 'clock': 'PT08M41.00S', 'timeActual': '2020-12-24T02:01:12.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['1freethrow'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:21Z', 'officialId': 200832, 'orderNumber': 5580000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis shooting personal FOUL (2 PF) (Knox II 1 FT)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 1628995], 'foulDrawnPlayerName': 'Knox II', 'foulDrawnPersonId': 1628995}, {'actionNumber': 565, 'clock': 'PT08M41.00S', 'timeActual': '2020-12-24T02:01:34.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:34Z', 'orderNumber': 5600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS K. Knox II Free Throw 1 of 1', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 566, 'clock': 'PT08M40.00S', 'timeActual': '2020-12-24T02:01:35.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:35Z', 'orderNumber': 5610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 565, 'reboundTotal': 10, 'reboundDefensiveTotal': 8, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:8)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 567, 'clock': 'PT08M35.00S', 'timeActual': '2020-12-24T02:01:43.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'traveling', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:01:48Z', 'officialId': 202053, 'orderNumber': 5620000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'J. Holiday traveling TURNOVER (1 TO)', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 568, 'clock': 'PT08M18.00S', 'timeActual': '2020-12-24T02:02:11.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 202692, 'x': 70.64717477003943, 'y': 12.323835784313726, 'side': 'right', 'shotDistance': 29.22, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:15Z', 'orderNumber': 5630000, 'xLegacy': -188, 'yLegacy': 223, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS A. Burks 29' 3PT\", 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 569, 'clock': 'PT08M13.00S', 'timeActual': '2020-12-24T02:02:16.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:15Z', 'orderNumber': 5640000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 568, 'reboundTotal': 7, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 1, 'description': 'J. Randle REBOUND (Off:1 Def:6)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 570, 'clock': 'PT08M08.00S', 'timeActual': '2020-12-24T02:02:20.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint', 'fromturnover', '2ndchance'], 'personId': 202692, 'x': 96.00854139290408, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 1.69, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:23Z', 'orderNumber': 5650000, 'xLegacy': 8, 'yLegacy': -15, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS A. Burks Layup - blocked', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692, 1626167], 'blockPlayerName': 'Turner', 'blockPersonId': 1626167}, {'actionNumber': 571, 'clock': 'PT08M08.00S', 'timeActual': '2020-12-24T02:02:20.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'block', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:21Z', 'orderNumber': 5660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'M. Turner BLOCK (8 BLK)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 572, 'clock': 'PT08M06.00S', 'timeActual': '2020-12-24T02:02:22.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:06:16Z', 'orderNumber': 5670000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 570, 'reboundTotal': 7, 'reboundDefensiveTotal': 6, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:6)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 573, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T02:02:30.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1628373, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '97', 'scoreAway': '90', 'edited': '2020-12-24T02:02:42Z', 'officialId': 1627541, 'orderNumber': 5680000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'F. Ntilikina shooting personal FOUL (1 PF) (Turner 2 FT)', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373, 1626167], 'foulDrawnPlayerName': 'Turner', 'foulDrawnPersonId': 1626167}, {'actionNumber': 575, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T02:03:06.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fastbreak'], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '98', 'scoreAway': '90', 'edited': '2020-12-24T02:03:06Z', 'orderNumber': 5700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 9, 'description': 'M. Turner Free Throw 1 of 2 (9 PTS)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 576, 'clock': 'PT08M02.00S', 'timeActual': '2020-12-24T02:03:17.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fastbreak'], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:17Z', 'orderNumber': 5710000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 10, 'description': 'M. Turner Free Throw 2 of 2 (10 PTS)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 577, 'clock': 'PT07M50.00S', 'timeActual': '2020-12-24T02:03:31.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'qualifiers': ['pointsinthepaint'], 'personId': 203457, 'x': 93.24901445466492, 'y': 50.06893382352941, 'side': 'right', 'shotDistance': 1.1, 'possession': 1610612752, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:35Z', 'orderNumber': 5720000, 'xLegacy': 0, 'yLegacy': 11, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS N. Noel Jump Shot', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 578, 'clock': 'PT07M48.00S', 'timeActual': '2020-12-24T02:03:33.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:35Z', 'orderNumber': 5730000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 577, 'reboundTotal': 8, 'reboundDefensiveTotal': 7, 'reboundOffensiveTotal': 1, 'description': 'M. Turner REBOUND (Off:1 Def:7)', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 579, 'clock': 'PT07M42.00S', 'timeActual': '2020-12-24T02:03:38.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1626167, 'x': 31.882391590013142, 'y': 32.176776960784316, 'side': 'left', 'shotDistance': 26.28, 'possession': 1610612754, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:43Z', 'orderNumber': 5740000, 'xLegacy': 89, 'yLegacy': 247, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS M. Turner 26' 3PT\", 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 580, 'clock': 'PT07M39.00S', 'timeActual': '2020-12-24T02:03:41.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:43Z', 'orderNumber': 5750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 579, 'reboundTotal': 3, 'reboundDefensiveTotal': 2, 'reboundOffensiveTotal': 1, 'description': 'N. Noel REBOUND (Off:1 Def:2)', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 581, 'clock': 'PT07M32.00S', 'timeActual': '2020-12-24T02:03:49.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1628373, 'x': 64.33968462549278, 'y': 42.22579656862745, 'side': 'right', 'shotDistance': 28.54, 'possession': 1610612752, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:55Z', 'orderNumber': 5760000, 'xLegacy': -39, 'yLegacy': 283, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS F. Ntilikina 28' pullup 3PT\", 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 582, 'clock': 'PT07M28.00S', 'timeActual': '2020-12-24T02:03:53.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '99', 'scoreAway': '90', 'edited': '2020-12-24T02:03:55Z', 'orderNumber': 5770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 581, 'reboundTotal': 11, 'reboundDefensiveTotal': 9, 'reboundOffensiveTotal': 2, 'description': 'D. Sabonis REBOUND (Off:2 Def:9)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 583, 'clock': 'PT07M18.00S', 'timeActual': '2020-12-24T02:04:02.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'cutting finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 5.075558475689881, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 0.81, 'possession': 1610612754, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:04:05Z', 'orderNumber': 5780000, 'xLegacy': -6, 'yLegacy': -5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 26, 'description': 'D. Sabonis cutting finger roll Layup (26 PTS) (D. McDermott 2 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203926], 'assistPlayerNameInitial': 'D. McDermott', 'assistPersonId': 203926, 'assistTotal': 2}, {'actionNumber': 585, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:04:10.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:04:10Z', 'orderNumber': 5800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'NYK Timeout', 'personIdsFilter': []}, {'actionNumber': 586, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203200, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5810000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Holiday', 'playerName': 'Holiday', 'playerNameI': 'J. Holiday', 'personIdsFilter': [203200]}, {'actionNumber': 587, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1626167, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5820000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: M. Turner', 'playerName': 'Turner', 'playerNameI': 'M. Turner', 'personIdsFilter': [1626167]}, {'actionNumber': 588, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628373, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: F. Ntilikina', 'playerName': 'Ntilikina', 'playerNameI': 'F. Ntilikina', 'personIdsFilter': [1628373]}, {'actionNumber': 589, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 590, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5850000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: V. Oladipo', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 591, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5860000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: M. Brogdon', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 592, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5870000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 593, 'clock': 'PT07M13.00S', 'timeActual': '2020-12-24T02:06:27.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '90', 'edited': '2020-12-24T02:06:47Z', 'orderNumber': 5880000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 594, 'clock': 'PT07M03.00S', 'timeActual': '2020-12-24T02:07:14.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 93.9060446780552, 'y': 52.27481617647059, 'side': 'right', 'shotDistance': 1.24, 'possession': 1610612752, 'scoreHome': '101', 'scoreAway': '92', 'edited': '2020-12-24T02:07:17Z', 'orderNumber': 5890000, 'xLegacy': 11, 'yLegacy': 5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 24, 'description': 'R. Barrett driving finger roll Layup (24 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 595, 'clock': 'PT06M57.00S', 'timeActual': '2020-12-24T02:07:29.0Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'equipment issue', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '101', 'scoreAway': '92', 'edited': '2020-12-24T02:07:29Z', 'orderNumber': 5900000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 596, 'clock': 'PT06M45.00S', 'timeActual': '2020-12-24T02:07:52.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203506, 'x': 31.488173455978973, 'y': 13.794424019607842, 'side': 'left', 'shotDistance': 30.34, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:07:57Z', 'orderNumber': 5910000, 'xLegacy': 181, 'yLegacy': 243, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 20, 'description': \"V. Oladipo 30' 3PT (20 PTS) (M. Brogdon 8 AST)\", 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627763], 'assistPlayerNameInitial': 'M. Brogdon', 'assistPersonId': 1627763, 'assistTotal': 8}, {'actionNumber': 598, 'clock': 'PT06M28.00S', 'timeActual': '2020-12-24T02:08:07.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 1628995, 'x': 94.43166885676742, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 0.77, 'possession': 1610612752, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:14Z', 'orderNumber': 5930000, 'xLegacy': 8, 'yLegacy': 0, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS K. Knox II driving DUNK', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 599, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T02:08:08.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:14Z', 'orderNumber': 5940000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 598, 'description': 'TEAM defensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 600, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T02:08:13.0Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:13Z', 'orderNumber': 5950000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 601, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T02:08:13.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203457, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:22Z', 'orderNumber': 5960000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: N. Noel', 'playerName': 'Noel', 'playerNameI': 'N. Noel', 'personIdsFilter': [203457]}, {'actionNumber': 602, 'clock': 'PT06M27.00S', 'timeActual': '2020-12-24T02:08:13.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 203493, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '104', 'scoreAway': '92', 'edited': '2020-12-24T02:08:22Z', 'orderNumber': 5970000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: R. Bullock', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 603, 'clock': 'PT06M04.00S', 'timeActual': '2020-12-24T02:08:49.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 7.30946123521682, 'y': 50.06893382352941, 'side': 'left', 'shotDistance': 1.62, 'possession': 1610612754, 'scoreHome': '106', 'scoreAway': '92', 'edited': '2020-12-24T02:08:52Z', 'orderNumber': 5980000, 'xLegacy': 0, 'yLegacy': 16, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 28, 'description': 'D. Sabonis Layup (28 PTS) (T. McConnell 5 AST)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 204456], 'assistPlayerNameInitial': 'T. McConnell', 'assistPersonId': 204456, 'assistTotal': 5}, {'actionNumber': 605, 'clock': 'PT05M52.00S', 'timeActual': '2020-12-24T02:09:02.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'lost ball', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '106', 'scoreAway': '92', 'edited': '2020-12-24T02:09:05Z', 'orderNumber': 6000000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 5, 'description': 'E. Payton lost ball TURNOVER (5 TO)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901, 204456], 'stealPlayerName': 'McConnell', 'stealPersonId': 204456}, {'actionNumber': 606, 'clock': 'PT05M52.00S', 'timeActual': '2020-12-24T02:09:02.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'steal', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '106', 'scoreAway': '92', 'edited': '2020-12-24T02:09:03Z', 'orderNumber': 6010000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'T. McConnell STEAL (1 STL)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 607, 'clock': 'PT05M47.00S', 'timeActual': '2020-12-24T02:09:08.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 203493, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '106', 'scoreAway': '92', 'edited': '2020-12-24T02:09:20Z', 'officialId': 202053, 'orderNumber': 6020000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'R. Bullock shooting personal FOUL (3 PF) (McConnell 2 FT)', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493, 204456], 'foulDrawnPlayerName': 'McConnell', 'foulDrawnPersonId': 204456}, {'actionNumber': 609, 'clock': 'PT05M47.00S', 'timeActual': '2020-12-24T02:09:34.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fromturnover', 'fastbreak'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:09:34Z', 'orderNumber': 6040000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 3, 'description': 'T. McConnell Free Throw 1 of 2 (3 PTS)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 610, 'clock': 'PT05M47.00S', 'timeActual': '2020-12-24T02:09:34.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fastbreak', 'fromturnover'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:09:51Z', 'orderNumber': 6050000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS T. McConnell Free Throw 2 of 2', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 611, 'clock': 'PT05M46.00S', 'timeActual': '2020-12-24T02:09:35.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:09:51Z', 'orderNumber': 6060000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 610, 'reboundTotal': 7, 'reboundDefensiveTotal': 7, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:7)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 612, 'clock': 'PT05M37.00S', 'timeActual': '2020-12-24T02:10:00.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'offensive', 'descriptor': 'charge', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:06Z', 'officialId': 1627541, 'orderNumber': 6070000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 5, 'foulTechnicalTotal': 0, 'description': 'J. Randle charge offensive FOUL (5 PF)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 203506], 'foulDrawnPlayerName': 'Oladipo', 'foulDrawnPersonId': 203506}, {'actionNumber': 614, 'clock': 'PT05M37.00S', 'timeActual': '2020-12-24T02:10:00.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:00Z', 'officialId': 1627541, 'orderNumber': 6090000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 5, 'description': 'J. Randle offensive foul TURNOVER (5 TO)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 615, 'clock': 'PT05M24.00S', 'timeActual': '2020-12-24T02:10:28.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': ['fromturnover'], 'personId': 203926, 'x': 32.013797634691194, 'y': 72.12775735294117, 'side': 'left', 'shotDistance': 27.19, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:32Z', 'orderNumber': 6100000, 'xLegacy': -111, 'yLegacy': 248, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 27' 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 616, 'clock': 'PT05M21.00S', 'timeActual': '2020-12-24T02:10:31.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:32Z', 'orderNumber': 6110000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 615, 'reboundTotal': 12, 'reboundDefensiveTotal': 9, 'reboundOffensiveTotal': 3, 'description': 'D. Sabonis REBOUND (Off:3 Def:9)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 617, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:10:37.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['2freethrow'], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '107', 'scoreAway': '92', 'edited': '2020-12-24T02:10:43Z', 'officialId': 200832, 'orderNumber': 6120000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 1, 'foulTechnicalTotal': 0, 'description': 'K. Knox II shooting personal FOUL (1 PF) (Brogdon 2 FT)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 1627763], 'foulDrawnPlayerName': 'Brogdon', 'foulDrawnPersonId': 1627763}, {'actionNumber': 619, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:10:57.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['fromturnover', '2ndchance'], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '108', 'scoreAway': '92', 'edited': '2020-12-24T02:10:57Z', 'orderNumber': 6140000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 17, 'description': 'M. Brogdon Free Throw 1 of 2 (17 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 620, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:11:10.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '108', 'scoreAway': '92', 'edited': '2020-12-24T02:11:14Z', 'orderNumber': 6150000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 621, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:11:10.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '108', 'scoreAway': '92', 'edited': '2020-12-24T02:11:14Z', 'orderNumber': 6160000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: A. Burks', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 622, 'clock': 'PT05M17.00S', 'timeActual': '2020-12-24T02:11:30.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['fromturnover', '2ndchance'], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '109', 'scoreAway': '92', 'edited': '2020-12-24T02:11:30Z', 'orderNumber': 6170000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 18, 'description': 'M. Brogdon Free Throw 2 of 2 (18 PTS)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 623, 'clock': 'PT05M10.00S', 'timeActual': '2020-12-24T02:11:45.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '109', 'scoreAway': '92', 'edited': '2020-12-24T02:11:58Z', 'officialId': 202053, 'orderNumber': 6180000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 4, 'foulTechnicalTotal': 0, 'description': 'T. McConnell personal FOUL (4 PF) (Burks 2 FT)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 625, 'clock': 'PT05M10.00S', 'timeActual': '2020-12-24T02:13:16.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '109', 'scoreAway': '92', 'edited': '2020-12-24T02:13:16Z', 'orderNumber': 6200000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS A. Burks Free Throw 1 of 2', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 626, 'clock': 'PT05M10.00S', 'timeActual': '2020-12-24T02:13:16.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '109', 'scoreAway': '92', 'edited': '2020-12-24T02:13:16Z', 'orderNumber': 6210000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 625, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 627, 'clock': 'PT05M10.00S', 'timeActual': '2020-12-24T02:13:33.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 202692, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '109', 'scoreAway': '93', 'edited': '2020-12-24T02:13:33Z', 'orderNumber': 6220000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 22, 'description': 'A. Burks Free Throw 2 of 2 (22 PTS)', 'playerName': 'Burks', 'playerNameI': 'A. Burks', 'personIdsFilter': [202692]}, {'actionNumber': 628, 'clock': 'PT05M00.00S', 'timeActual': '2020-12-24T02:13:43.3Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Hook', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 6.652431011826544, 'y': 46.88265931372549, 'side': 'left', 'shotDistance': 1.85, 'possession': 1610612754, 'scoreHome': '109', 'scoreAway': '93', 'edited': '2020-12-24T02:13:47Z', 'orderNumber': 6230000, 'xLegacy': 16, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. Sabonis Hook', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 629, 'clock': 'PT04M58.00S', 'timeActual': '2020-12-24T02:13:45.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '109', 'scoreAway': '93', 'edited': '2020-12-24T02:13:45Z', 'orderNumber': 6240000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 628, 'reboundTotal': 13, 'reboundDefensiveTotal': 9, 'reboundOffensiveTotal': 4, 'description': 'D. Sabonis REBOUND (Off:4 Def:9)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 630, 'clock': 'PT04M58.00S', 'timeActual': '2020-12-24T02:13:45.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'putback', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 1627734, 'x': 4.5499342969776615, 'y': 51.294424019607845, 'side': 'left', 'shotDistance': 1.17, 'possession': 1610612754, 'scoreHome': '111', 'scoreAway': '93', 'edited': '2020-12-24T02:13:50Z', 'orderNumber': 6250000, 'xLegacy': -6, 'yLegacy': -10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 30, 'description': 'D. Sabonis putback Layup (30 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 631, 'clock': 'PT04M44.00S', 'timeActual': '2020-12-24T02:13:59.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint'], 'personId': 1629628, 'x': 92.9862023653088, 'y': 49.57873774509804, 'side': 'right', 'shotDistance': 1.36, 'possession': 1610612752, 'scoreHome': '111', 'scoreAway': '93', 'edited': '2020-12-24T02:14:04Z', 'orderNumber': 6260000, 'xLegacy': -2, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Barrett driving floating Shot', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 632, 'clock': 'PT04M42.00S', 'timeActual': '2020-12-24T02:14:01.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '111', 'scoreAway': '93', 'edited': '2020-12-24T02:14:04Z', 'orderNumber': 6270000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 631, 'reboundTotal': 2, 'reboundDefensiveTotal': 1, 'reboundOffensiveTotal': 1, 'description': 'E. Payton REBOUND (Off:1 Def:1)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 633, 'clock': 'PT04M41.00S', 'timeActual': '2020-12-24T02:14:03.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'putback', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 203901, 'x': 95.87713534822602, 'y': 55.4610906862745, 'side': 'right', 'shotDistance': 3.05, 'possession': 1610612752, 'scoreHome': '111', 'scoreAway': '95', 'edited': '2020-12-24T02:14:06Z', 'orderNumber': 6280000, 'xLegacy': 27, 'yLegacy': -14, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 7, 'description': 'E. Payton putback Layup (7 PTS)', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 634, 'clock': 'PT04M31.00S', 'timeActual': '2020-12-24T02:14:13.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint'], 'personId': 204456, 'x': 6.1268068331143235, 'y': 51.53952205882353, 'side': 'left', 'shotDistance': 0.92, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '95', 'edited': '2020-12-24T02:14:15Z', 'orderNumber': 6290000, 'xLegacy': -8, 'yLegacy': 5, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 5, 'description': 'T. McConnell driving finger roll Layup (5 PTS)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 635, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T02:14:27.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '95', 'edited': '2020-12-24T02:14:32Z', 'officialId': 202053, 'orderNumber': 6300000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis personal FOUL (3 PF) (Randle 2 FT)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 637, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T02:14:53.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '95', 'edited': '2020-12-24T02:14:53Z', 'orderNumber': 6320000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS J. Randle Free Throw 1 of 2', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 638, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T02:14:53.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['deadball', 'team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '95', 'edited': '2020-12-24T02:14:53Z', 'orderNumber': 6330000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 637, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 639, 'clock': 'PT04M19.00S', 'timeActual': '2020-12-24T02:15:08.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:08Z', 'orderNumber': 6340000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 10, 'description': 'J. Randle Free Throw 2 of 2 (10 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 640, 'clock': 'PT04M06.00S', 'timeActual': '2020-12-24T02:15:22.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Hook', 'descriptor': 'turnaround', 'qualifiers': ['pointsinthepaint'], 'personId': 1627734, 'x': 6.915243101182654, 'y': 64.5297181372549, 'side': 'left', 'shotDistance': 7.37, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:26Z', 'orderNumber': 6350000, 'xLegacy': -73, 'yLegacy': 13, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. Sabonis 7' turnaround Hook\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 641, 'clock': 'PT04M04.00S', 'timeActual': '2020-12-24T02:15:24.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:26Z', 'orderNumber': 6360000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 640, 'reboundTotal': 8, 'reboundDefensiveTotal': 8, 'reboundOffensiveTotal': 0, 'description': 'R. Barrett REBOUND (Off:0 Def:8)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 642, 'clock': 'PT03M58.00S', 'timeActual': '2020-12-24T02:15:31.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving bank', 'qualifiers': ['pointsinthepaint', 'fastbreak'], 'personId': 203944, 'x': 93.77463863337714, 'y': 48.84344362745098, 'side': 'right', 'shotDistance': 0.83, 'possession': 1610612752, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:38Z', 'orderNumber': 6370000, 'xLegacy': -6, 'yLegacy': 6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS J. Randle driving bank Shot', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 643, 'clock': 'PT03M56.00S', 'timeActual': '2020-12-24T02:15:33.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203506, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:38Z', 'orderNumber': 6380000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 642, 'reboundTotal': 4, 'reboundDefensiveTotal': 4, 'reboundOffensiveTotal': 0, 'description': 'V. Oladipo REBOUND (Off:0 Def:4)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506]}, {'actionNumber': 644, 'clock': 'PT03M50.00S', 'timeActual': '2020-12-24T02:15:41.8Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:41Z', 'orderNumber': 6390000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 646, 'clock': 'PT03M50.00S', 'timeActual': '2020-12-24T02:15:42.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:49Z', 'orderNumber': 6410000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: K. Knox II', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 647, 'clock': 'PT03M50.00S', 'timeActual': '2020-12-24T02:15:42.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203901, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:15:54Z', 'orderNumber': 6420000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: E. Payton', 'playerName': 'Payton', 'playerNameI': 'E. Payton', 'personIdsFilter': [203901]}, {'actionNumber': 648, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T02:16:02.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '113', 'scoreAway': '96', 'edited': '2020-12-24T02:16:09Z', 'officialId': 200832, 'orderNumber': 6430000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'K. Knox II shooting personal FOUL (2 PF) (McDermott 2 FT)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 203926], 'foulDrawnPlayerName': 'McDermott', 'foulDrawnPersonId': 203926}, {'actionNumber': 650, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T02:16:28.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '114', 'scoreAway': '96', 'edited': '2020-12-24T02:16:28Z', 'orderNumber': 6450000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'D. McDermott Free Throw 1 of 2 (13 PTS)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 651, 'clock': 'PT03M49.00S', 'timeActual': '2020-12-24T02:16:28.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '114', 'scoreAway': '96', 'edited': '2020-12-24T02:16:44Z', 'orderNumber': 6460000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Missed', 'description': 'MISS D. McDermott Free Throw 2 of 2', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 652, 'clock': 'PT03M47.00S', 'timeActual': '2020-12-24T02:16:30.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '114', 'scoreAway': '96', 'edited': '2020-12-24T02:16:44Z', 'orderNumber': 6470000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 651, 'reboundTotal': 8, 'reboundDefensiveTotal': 7, 'reboundOffensiveTotal': 1, 'description': 'J. Randle REBOUND (Off:1 Def:7)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 653, 'clock': 'PT03M39.00S', 'timeActual': '2020-12-24T02:16:53.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 94.30026281208936, 'y': 53.990502450980394, 'side': 'right', 'shotDistance': 2.0, 'possession': 1610612752, 'scoreHome': '114', 'scoreAway': '98', 'edited': '2020-12-24T02:16:57Z', 'orderNumber': 6480000, 'xLegacy': 20, 'yLegacy': 1, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 12, 'description': 'J. Randle driving Layup (12 PTS) (A. Burks 2 AST)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 202692], 'assistPlayerNameInitial': 'A. Burks', 'assistPersonId': 202692, 'assistTotal': 2}, {'actionNumber': 655, 'clock': 'PT03M39.00S', 'timeActual': '2020-12-24T02:16:56.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '1freethrow'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '114', 'scoreAway': '98', 'edited': '2020-12-24T02:17:02Z', 'officialId': 200832, 'orderNumber': 6500000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 4, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis shooting personal FOUL (4 PF) (Randle 1 FT)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 203944], 'foulDrawnPlayerName': 'Randle', 'foulDrawnPersonId': 203944}, {'actionNumber': 657, 'clock': 'PT03M39.00S', 'timeActual': '2020-12-24T02:17:20.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'freethrow', 'subType': '1 of 1', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '114', 'scoreAway': '99', 'edited': '2020-12-24T02:17:20Z', 'orderNumber': 6520000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 13, 'description': 'J. Randle Free Throw 1 of 1 (13 PTS)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 658, 'clock': 'PT03M25.00S', 'timeActual': '2020-12-24T02:17:36.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203926, 'x': 26.363337713534822, 'y': 84.3826593137255, 'side': 'left', 'shotDistance': 26.02, 'possession': 1610612754, 'scoreHome': '114', 'scoreAway': '99', 'edited': '2020-12-24T02:17:40Z', 'orderNumber': 6530000, 'xLegacy': -172, 'yLegacy': 195, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. McDermott 26' 3PT\", 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 659, 'clock': 'PT03M20.00S', 'timeActual': '2020-12-24T02:17:41.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': [], 'personId': 204456, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '114', 'scoreAway': '99', 'edited': '2020-12-24T02:17:40Z', 'orderNumber': 6540000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 658, 'reboundTotal': 4, 'reboundDefensiveTotal': 3, 'reboundOffensiveTotal': 1, 'description': 'T. McConnell REBOUND (Off:1 Def:3)', 'playerName': 'McConnell', 'playerNameI': 'T. McConnell', 'personIdsFilter': [204456]}, {'actionNumber': 660, 'clock': 'PT03M09.00S', 'timeActual': '2020-12-24T02:17:51.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving reverse', 'qualifiers': ['pointsinthepaint', '2ndchance'], 'personId': 203506, 'x': 7.30946123521682, 'y': 50.80422794117647, 'side': 'left', 'shotDistance': 1.67, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '99', 'edited': '2020-12-24T02:17:55Z', 'orderNumber': 6550000, 'xLegacy': -4, 'yLegacy': 16, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 22, 'description': 'V. Oladipo driving reverse Layup (22 PTS) (D. Sabonis 5 AST)', 'playerName': 'Oladipo', 'playerNameI': 'V. Oladipo', 'personIdsFilter': [203506, 1627734], 'assistPlayerNameInitial': 'D. Sabonis', 'assistPersonId': 1627734, 'assistTotal': 5}, {'actionNumber': 662, 'clock': 'PT02M55.00S', 'timeActual': '2020-12-24T02:18:04.5Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'turnaround', 'qualifiers': ['pointsinthepaint'], 'personId': 203944, 'x': 87.20433639947439, 'y': 47.372855392156865, 'side': 'right', 'shotDistance': 6.91, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:09Z', 'orderNumber': 6570000, 'xLegacy': -13, 'yLegacy': 68, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 15, 'description': \"J. Randle 6' turnaround Jump Shot (15 PTS) (R. Barrett 5 AST)\", 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 1629628], 'assistPlayerNameInitial': 'R. Barrett', 'assistPersonId': 1629628, 'assistTotal': 5}, {'actionNumber': 664, 'clock': 'PT02M41.00S', 'timeActual': '2020-12-24T02:18:18.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 203926, 'x': 4.944152431011826, 'y': 49.82383578431372, 'side': 'left', 'shotDistance': 0.61, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:22Z', 'orderNumber': 6590000, 'xLegacy': 1, 'yLegacy': -6, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS D. McDermott driving Layup - blocked', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926, 1628995], 'blockPlayerName': 'Knox II', 'blockPersonId': 1628995}, {'actionNumber': 665, 'clock': 'PT02M41.00S', 'timeActual': '2020-12-24T02:18:18.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'block', 'qualifiers': [], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:20Z', 'orderNumber': 6600000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'description': 'K. Knox II BLOCK (1 BLK)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995]}, {'actionNumber': 666, 'clock': 'PT02M39.00S', 'timeActual': '2020-12-24T02:18:20.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'side': None, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:22Z', 'orderNumber': 6610000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 664, 'reboundTotal': 9, 'reboundDefensiveTotal': 8, 'reboundOffensiveTotal': 1, 'description': 'J. Randle REBOUND (Off:1 Def:8)', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 667, 'clock': 'PT02M24.00S', 'timeActual': '2020-12-24T02:18:36.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 92.85479632063075, 'y': 5.46109068627451, 'side': 'right', 'shotDistance': 22.32, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:39Z', 'orderNumber': 6620000, 'xLegacy': -223, 'yLegacy': 15, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Bullock 3PT', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 668, 'clock': 'PT02M22.00S', 'timeActual': '2020-12-24T02:18:38.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:39Z', 'orderNumber': 6630000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 667, 'reboundTotal': 7, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 2, 'description': 'M. Brogdon REBOUND (Off:2 Def:5)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 669, 'clock': 'PT02M09.00S', 'timeActual': '2020-12-24T02:18:57.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'offensive', 'qualifiers': ['inpenalty'], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:19:09Z', 'officialId': 1627541, 'orderNumber': 6640000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 2, 'foulTechnicalTotal': 0, 'description': 'M. Brogdon offensive FOUL (2 PF)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 671, 'clock': 'PT02M09.00S', 'timeActual': '2020-12-24T02:18:57.7Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 1627763, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:18:57Z', 'officialId': 1627541, 'orderNumber': 6660000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 1, 'description': 'M. Brogdon offensive foul TURNOVER (1 TO)', 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 672, 'clock': 'PT02M09.00S', 'timeActual': '2020-12-24T02:19:09.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'timeout', 'subType': 'full', 'qualifiers': ['team', 'mandatory'], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '101', 'edited': '2020-12-24T02:19:10Z', 'orderNumber': 6670000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'IND Timeout', 'personIdsFilter': []}, {'actionNumber': 673, 'clock': 'PT01M56.00S', 'timeActual': '2020-12-24T02:22:07.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Jump Shot', 'descriptor': 'driving floating', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 203944, 'x': 85.49605781865965, 'y': 51.53952205882353, 'side': 'right', 'shotDistance': 8.42, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '103', 'edited': '2020-12-24T02:22:11Z', 'orderNumber': 6680000, 'xLegacy': 8, 'yLegacy': 84, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 17, 'description': \"J. Randle 8' driving floating Jump Shot (17 PTS) (R. Bullock 2 AST)\", 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944, 203493], 'assistPlayerNameInitial': 'R. Bullock', 'assistPersonId': 203493, 'assistTotal': 2}, {'actionNumber': 675, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T02:22:30.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'foul', 'subType': 'offensive', 'qualifiers': ['inpenalty'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '103', 'edited': '2020-12-24T02:22:41Z', 'officialId': 202053, 'orderNumber': 6700000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 5, 'foulTechnicalTotal': 0, 'description': 'D. Sabonis offensive FOUL (5 PF)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734, 202692], 'foulDrawnPlayerName': 'Burks', 'foulDrawnPersonId': 202692}, {'actionNumber': 677, 'clock': 'PT01M38.00S', 'timeActual': '2020-12-24T02:22:30.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'turnover', 'subType': 'offensive foul', 'qualifiers': [], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '103', 'edited': '2020-12-24T02:22:30Z', 'officialId': 202053, 'orderNumber': 6720000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'turnoverTotal': 4, 'description': 'D. Sabonis offensive foul TURNOVER (4 TO)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 678, 'clock': 'PT01M29.00S', 'timeActual': '2020-12-24T02:22:48.0Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'Layup', 'descriptor': 'driving finger roll', 'qualifiers': ['pointsinthepaint', 'fromturnover'], 'personId': 1629628, 'x': 93.38042049934296, 'y': 52.51991421568627, 'side': 'right', 'shotDistance': 1.59, 'possession': 1610612752, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:22:51Z', 'orderNumber': 6730000, 'xLegacy': 13, 'yLegacy': 10, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 26, 'description': 'R. Barrett driving finger roll Layup (26 PTS)', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 679, 'clock': 'PT01M10.00S', 'timeActual': '2020-12-24T02:23:10.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 1627734, 'x': 28.33442838370565, 'y': 17.47089460784314, 'side': 'left', 'shotDistance': 26.86, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:23:17Z', 'orderNumber': 6740000, 'xLegacy': 163, 'yLegacy': 214, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': \"MISS D. Sabonis 26' 3PT\", 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 680, 'clock': 'PT01M07.00S', 'timeActual': '2020-12-24T02:23:13.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'offensive', 'qualifiers': ['team'], 'personId': 0, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:23:17Z', 'orderNumber': 6750000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 679, 'description': 'TEAM offensive REBOUND', 'personIdsFilter': []}, {'actionNumber': 681, 'clock': 'PT01M07.00S', 'timeActual': '2020-12-24T02:23:16.8Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'stoppage', 'subType': 'out-of-bounds', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:23:16Z', 'orderNumber': 6760000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'personIdsFilter': []}, {'actionNumber': 682, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:23:48.2Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'foul', 'subType': 'personal', 'descriptor': 'shooting', 'qualifiers': ['inpenalty', '2freethrow'], 'personId': 1628995, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '116', 'scoreAway': '105', 'edited': '2020-12-24T02:23:57Z', 'officialId': 1627541, 'orderNumber': 6770000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'foulPersonalTotal': 3, 'foulTechnicalTotal': 0, 'description': 'K. Knox II shooting personal FOUL (3 PF) (Sabonis 2 FT)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 1627734], 'foulDrawnPlayerName': 'Sabonis', 'foulDrawnPersonId': 1627734}, {'actionNumber': 684, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:15.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '1 of 2', 'qualifiers': ['2ndchance'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:15Z', 'orderNumber': 6790000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 31, 'description': 'D. Sabonis Free Throw 1 of 2 (31 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 685, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:16.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 1629628, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:23Z', 'orderNumber': 6800000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: R. Barrett', 'playerName': 'Barrett', 'playerNameI': 'R. Barrett', 'personIdsFilter': [1629628]}, {'actionNumber': 686, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:16.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'out', 'qualifiers': [], 'personId': 203944, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:23Z', 'orderNumber': 6810000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB out: J. Randle', 'playerName': 'Randle', 'playerNameI': 'J. Randle', 'personIdsFilter': [203944]}, {'actionNumber': 687, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:16.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1630167, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:23Z', 'orderNumber': 6820000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: O. Toppin', 'playerName': 'Toppin', 'playerNameI': 'O. Toppin', 'personIdsFilter': [1630167]}, {'actionNumber': 688, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:16.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': 'substitution', 'subType': 'in', 'qualifiers': [], 'personId': 1629033, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '117', 'scoreAway': '105', 'edited': '2020-12-24T02:24:23Z', 'orderNumber': 6830000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'SUB in: T. Pinson', 'playerName': 'Pinson', 'playerNameI': 'T. Pinson', 'personIdsFilter': [1629033]}, {'actionNumber': 689, 'clock': 'PT00M55.40S', 'timeActual': '2020-12-24T02:24:36.1Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'freethrow', 'subType': '2 of 2', 'qualifiers': ['2ndchance'], 'personId': 1627734, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '118', 'scoreAway': '105', 'edited': '2020-12-24T02:24:36Z', 'orderNumber': 6840000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotResult': 'Made', 'pointsTotal': 32, 'description': 'D. Sabonis Free Throw 2 of 2 (32 PTS)', 'playerName': 'Sabonis', 'playerNameI': 'D. Sabonis', 'personIdsFilter': [1627734]}, {'actionNumber': 690, 'clock': 'PT00M46.60S', 'timeActual': '2020-12-24T02:24:47.8Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '2pt', 'subType': 'DUNK', 'descriptor': 'driving', 'qualifiers': ['pointsinthepaint'], 'personId': 1628995, 'x': 93.11760840998686, 'y': 49.333639705882355, 'side': 'right', 'shotDistance': 1.26, 'possession': 1610612752, 'scoreHome': '118', 'scoreAway': '107', 'edited': '2020-12-24T02:24:50Z', 'orderNumber': 6850000, 'xLegacy': -3, 'yLegacy': 12, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 4, 'description': 'K. Knox II driving DUNK (4 PTS) (A. Burks 3 AST)', 'playerName': 'Knox II', 'playerNameI': 'K. Knox II', 'personIdsFilter': [1628995, 202692], 'assistPlayerNameInitial': 'A. Burks', 'assistPersonId': 202692, 'assistTotal': 3}, {'actionNumber': 692, 'clock': 'PT00M25.60S', 'timeActual': '2020-12-24T02:25:12.4Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': '3pt', 'subType': 'Jump Shot', 'descriptor': 'pullup', 'qualifiers': [], 'personId': 1627763, 'x': 33.327858081471746, 'y': 17.715992647058822, 'side': 'left', 'shotDistance': 30.67, 'possession': 1610612754, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:17Z', 'orderNumber': 6870000, 'xLegacy': 161, 'yLegacy': 261, 'isFieldGoal': 1, 'shotResult': 'Made', 'pointsTotal': 21, 'description': \"M. Brogdon 30' 3PT pullup (21 PTS)\", 'playerName': 'Brogdon', 'playerNameI': 'M. Brogdon', 'personIdsFilter': [1627763]}, {'actionNumber': 693, 'clock': 'PT00M08.90S', 'timeActual': '2020-12-24T02:25:31.9Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612752, 'teamTricode': 'NYK', 'actionType': '3pt', 'subType': 'Jump Shot', 'qualifiers': [], 'personId': 203493, 'x': 89.70105124835742, 'y': 3.5003063725490198, 'side': 'right', 'shotDistance': 23.67, 'possession': 1610612752, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:35Z', 'orderNumber': 6880000, 'xLegacy': -232, 'yLegacy': 44, 'isFieldGoal': 1, 'shotResult': 'Missed', 'description': 'MISS R. Bullock 3PT', 'playerName': 'Bullock', 'playerNameI': 'R. Bullock', 'personIdsFilter': [203493]}, {'actionNumber': 694, 'clock': 'PT00M06.30S', 'timeActual': '2020-12-24T02:25:34.6Z', 'period': 4, 'periodType': 'REGULAR', 'teamId': 1610612754, 'teamTricode': 'IND', 'actionType': 'rebound', 'subType': 'defensive', 'qualifiers': [], 'personId': 203926, 'x': None, 'y': None, 'side': None, 'possession': 1610612754, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:34Z', 'orderNumber': 6890000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'shotActionNumber': 693, 'reboundTotal': 6, 'reboundDefensiveTotal': 5, 'reboundOffensiveTotal': 1, 'description': 'D. McDermott REBOUND (Off:1 Def:5)', 'playerName': 'McDermott', 'playerNameI': 'D. McDermott', 'personIdsFilter': [203926]}, {'actionNumber': 695, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T02:25:41.4Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'period', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 1610612754, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:41Z', 'orderNumber': 6900000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Period End', 'personIdsFilter': []}, {'actionNumber': 696, 'clock': 'PT00M00.00S', 'timeActual': '2020-12-24T02:25:43.6Z', 'period': 4, 'periodType': 'REGULAR', 'actionType': 'game', 'subType': 'end', 'qualifiers': [], 'personId': 0, 'x': None, 'y': None, 'possession': 0, 'scoreHome': '121', 'scoreAway': '107', 'edited': '2020-12-24T02:25:43Z', 'orderNumber': 6910000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'side': None, 'description': 'Game End', 'personIdsFilter': []}]}\n" + "{'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000011/boxscore?Format=json', 'time': '2020-12-23 23:29:01.442782'}, 'game': {'gameId': '0022000011', 'gameTimeLocal': '2020-12-23T19:00:00-05:00', 'gameTimeUTC': '2020-12-24T00:00:00Z', 'gameTimeHome': '2020-12-23T19:00:00-05:00', 'gameTimeAway': '2020-12-23T19:00:00-05:00', 'gameEt': '2020-12-23T19:00:00-05:00', 'duration': 133, 'gameCode': '20201223/NYKIND', 'gameStatusText': 'Final', 'gameStatus': 3, 'regulationPeriods': 4, 'period': 4, 'gameClock': 'PT00M00.00S', 'attendance': 0, 'sellout': '0', 'arena': {'arenaId': 136, 'arenaName': 'Bankers Life Fieldhouse', 'arenaCity': 'Indianapolis', 'arenaState': 'IN', 'arenaCountry': 'US', 'arenaTimezone': 'America/New_York'}, 'officials': [{'personId': 200832, 'name': 'Curtis Blair', 'nameI': 'C. Blair', 'firstName': 'Curtis', 'familyName': 'Blair', 'jerseyNum': '74', 'assignment': 'OFFICIAL1'}, {'personId': 202053, 'name': 'Scott Twardoski', 'nameI': 'S. Twardoski', 'firstName': 'Scott', 'familyName': 'Twardoski', 'jerseyNum': '52', 'assignment': 'OFFICIAL2'}, {'personId': 1627541, 'name': 'Natalie Sago', 'nameI': 'N. Sago', 'firstName': 'Natalie', 'familyName': 'Sago', 'jerseyNum': '9', 'assignment': 'OFFICIAL3'}], 'homeTeam': {'teamId': 1610612754, 'teamName': 'Pacers', 'teamCity': 'Indiana', 'teamTricode': 'IND', 'score': 121, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 35}, {'period': 2, 'periodType': 'REGULAR', 'score': 26}, {'period': 3, 'periodType': 'REGULAR', 'score': 27}, {'period': 4, 'periodType': 'REGULAR', 'score': 33}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203933, 'jerseyNum': '1', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 8, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 1, 'freeThrowsMade': 1, 'freeThrowsPercentage': 1.0, 'minus': 53.0, 'minutes': 'PT22M58.00S', 'minutesCalculated': 'PT23M', 'plus': 59.0, 'plusMinusPoints': 6.0, 'points': 5, 'pointsFastBreak': 5, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 6, 'twoPointersMade': 2, 'twoPointersPercentage': 0.333333333333333}, 'name': 'T.J. Warren', 'nameI': 'T. Warren', 'firstName': 'T.J.', 'familyName': 'Warren'}, {'status': 'ACTIVE', 'order': 2, 'personId': 1627734, 'jerseyNum': '11', 'position': 'PF', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 5, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 18, 'fieldGoalsMade': 11, 'fieldGoalsPercentage': 0.611111111111111, 'foulsOffensive': 1, 'foulsDrawn': 10, 'foulsPersonal': 5, 'foulsTechnical': 0, 'freeThrowsAttempted': 12, 'freeThrowsMade': 8, 'freeThrowsPercentage': 0.666666666666666, 'minus': 81.0, 'minutes': 'PT36M48.05S', 'minutesCalculated': 'PT37M', 'plus': 93.0, 'plusMinusPoints': 12.0, 'points': 32, 'pointsFastBreak': 6, 'pointsInThePaint': 18, 'pointsSecondChance': 4, 'reboundsDefensive': 9, 'reboundsOffensive': 4, 'reboundsTotal': 13, 'steals': 1, 'threePointersAttempted': 4, 'threePointersMade': 2, 'threePointersPercentage': 0.5, 'turnovers': 4, 'twoPointersAttempted': 14, 'twoPointersMade': 9, 'twoPointersPercentage': 0.642857142857143}, 'name': 'Domantas Sabonis', 'nameI': 'D. Sabonis', 'firstName': 'Domantas', 'familyName': 'Sabonis'}, {'status': 'ACTIVE', 'order': 3, 'personId': 1626167, 'jerseyNum': '33', 'position': 'C', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 8, 'blocksReceived': 1, 'fieldGoalsAttempted': 9, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.444444444444444, 'foulsOffensive': 1, 'foulsDrawn': 3, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 2, 'freeThrowsPercentage': 1.0, 'minus': 61.0, 'minutes': 'PT28M48.00S', 'minutesCalculated': 'PT29M', 'plus': 81.0, 'plusMinusPoints': 20.0, 'points': 10, 'pointsFastBreak': 4, 'pointsInThePaint': 8, 'pointsSecondChance': 2, 'reboundsDefensive': 7, 'reboundsOffensive': 1, 'reboundsTotal': 8, 'steals': 0, 'threePointersAttempted': 4, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 2, 'twoPointersAttempted': 5, 'twoPointersMade': 4, 'twoPointersPercentage': 0.8}, 'name': 'Myles Turner', 'nameI': 'M. Turner', 'firstName': 'Myles', 'familyName': 'Turner'}, {'status': 'ACTIVE', 'order': 4, 'personId': 203506, 'jerseyNum': '4', 'position': 'SG', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 4, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 14, 'fieldGoalsMade': 9, 'fieldGoalsPercentage': 0.642857142857143, 'foulsOffensive': 0, 'foulsDrawn': 4, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 3, 'freeThrowsMade': 2, 'freeThrowsPercentage': 0.666666666666666, 'minus': 69.0, 'minutes': 'PT28M16.00S', 'minutesCalculated': 'PT28M', 'plus': 74.0, 'plusMinusPoints': 5.0, 'points': 22, 'pointsFastBreak': 2, 'pointsInThePaint': 10, 'pointsSecondChance': 4, 'reboundsDefensive': 4, 'reboundsOffensive': 0, 'reboundsTotal': 4, 'steals': 1, 'threePointersAttempted': 5, 'threePointersMade': 2, 'threePointersPercentage': 0.4, 'turnovers': 1, 'twoPointersAttempted': 9, 'twoPointersMade': 7, 'twoPointersPercentage': 0.777777777777778}, 'name': 'Victor Oladipo', 'nameI': 'V. Oladipo', 'firstName': 'Victor', 'familyName': 'Oladipo'}, {'status': 'ACTIVE', 'order': 5, 'personId': 1627763, 'jerseyNum': '7', 'position': 'PG', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 8, 'blocks': 0, 'blocksReceived': 4, 'fieldGoalsAttempted': 16, 'fieldGoalsMade': 8, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 1, 'foulsDrawn': 4, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 3, 'freeThrowsMade': 3, 'freeThrowsPercentage': 1.0, 'minus': 87.0, 'minutes': 'PT34M51.00S', 'minutesCalculated': 'PT35M', 'plus': 87.0, 'plusMinusPoints': 0.0, 'points': 21, 'pointsFastBreak': 4, 'pointsInThePaint': 8, 'pointsSecondChance': 4, 'reboundsDefensive': 5, 'reboundsOffensive': 2, 'reboundsTotal': 7, 'steals': 2, 'threePointersAttempted': 4, 'threePointersMade': 2, 'threePointersPercentage': 0.5, 'turnovers': 1, 'twoPointersAttempted': 12, 'twoPointersMade': 6, 'twoPointersPercentage': 0.5}, 'name': 'Malcolm Brogdon', 'nameI': 'M. Brogdon', 'firstName': 'Malcolm', 'familyName': 'Brogdon'}, {'status': 'ACTIVE', 'order': 6, 'personId': 203200, 'jerseyNum': '8', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 6, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.333333333333333, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 51.0, 'minutes': 'PT22M23.00S', 'minutesCalculated': 'PT23M', 'plus': 50.0, 'plusMinusPoints': -1.0, 'points': 6, 'pointsFastBreak': 2, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 4, 'reboundsOffensive': 0, 'reboundsTotal': 4, 'steals': 0, 'threePointersAttempted': 5, 'threePointersMade': 1, 'threePointersPercentage': 0.2, 'turnovers': 1, 'twoPointersAttempted': 1, 'twoPointersMade': 1, 'twoPointersPercentage': 1.0}, 'name': 'Justin Holiday', 'nameI': 'J. Holiday', 'firstName': 'Justin', 'familyName': 'Holiday'}, {'status': 'ACTIVE', 'order': 7, 'personId': 203926, 'jerseyNum': '20', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.416666666666667, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 4, 'freeThrowsMade': 3, 'freeThrowsPercentage': 0.75, 'minus': 60.0, 'minutes': 'PT28M17.00S', 'minutesCalculated': 'PT28M', 'plus': 66.0, 'plusMinusPoints': 6.0, 'points': 13, 'pointsFastBreak': 4, 'pointsInThePaint': 10, 'pointsSecondChance': 2, 'reboundsDefensive': 5, 'reboundsOffensive': 1, 'reboundsTotal': 6, 'steals': 1, 'threePointersAttempted': 6, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 6, 'twoPointersMade': 5, 'twoPointersPercentage': 0.833333333333334}, 'name': 'Doug McDermott', 'nameI': 'D. McDermott', 'firstName': 'Doug', 'familyName': 'McDermott'}, {'status': 'ACTIVE', 'order': 8, 'personId': 1628988, 'jerseyNum': '3', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 8, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 0.375, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 36.0, 'minutes': 'PT17M19.00S', 'minutesCalculated': 'PT17M', 'plus': 41.0, 'plusMinusPoints': 5.0, 'points': 7, 'pointsFastBreak': 2, 'pointsInThePaint': 4, 'pointsSecondChance': 3, 'reboundsDefensive': 2, 'reboundsOffensive': 1, 'reboundsTotal': 3, 'steals': 0, 'threePointersAttempted': 4, 'threePointersMade': 1, 'threePointersPercentage': 0.25, 'turnovers': 2, 'twoPointersAttempted': 4, 'twoPointersMade': 2, 'twoPointersPercentage': 0.5}, 'name': 'Aaron Holiday', 'nameI': 'A. Holiday', 'firstName': 'Aaron', 'familyName': 'Holiday'}, {'status': 'ACTIVE', 'order': 9, 'personId': 204456, 'jerseyNum': '9', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 5, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 3, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.666666666666666, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 4, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 37.0, 'minutes': 'PT20M19.95S', 'minutesCalculated': 'PT20M', 'plus': 54.0, 'plusMinusPoints': 17.0, 'points': 5, 'pointsFastBreak': 1, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 3, 'reboundsOffensive': 1, 'reboundsTotal': 4, 'steals': 1, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 3, 'twoPointersMade': 2, 'twoPointersPercentage': 0.666666666666666}, 'name': 'T.J. McConnell', 'nameI': 'T. McConnell', 'firstName': 'T.J.', 'familyName': 'McConnell'}, {'status': 'ACTIVE', 'order': 10, 'personId': 1629665, 'jerseyNum': '0', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jalen Lecque', 'nameI': 'J. Lecque', 'firstName': 'Jalen', 'familyName': 'Lecque'}, {'status': 'ACTIVE', 'order': 11, 'personId': 1629103, 'jerseyNum': '21', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Kelan Martin', 'nameI': 'K. Martin', 'firstName': 'Kelan', 'familyName': 'Martin'}, {'status': 'ACTIVE', 'order': 12, 'personId': 203960, 'jerseyNum': '14', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'JaKarr Sampson', 'nameI': 'J. Sampson', 'firstName': 'JaKarr', 'familyName': 'Sampson'}, {'status': 'ACTIVE', 'order': 13, 'personId': 1630199, 'jerseyNum': '2', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Cassius Stanley', 'nameI': 'C. Stanley', 'firstName': 'Cassius', 'familyName': 'Stanley'}, {'status': 'ACTIVE', 'order': 14, 'personId': 1628410, 'jerseyNum': '5', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Edmond Sumner', 'nameI': 'E. Sumner', 'firstName': 'Edmond', 'familyName': 'Sumner'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Ankle; Sprain', 'order': 15, 'personId': 1629048, 'jerseyNum': '88', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Goga Bitadze', 'nameI': 'G. Bitadze', 'firstName': 'Goga', 'familyName': 'Bitadze'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Groin; Partial Tear', 'order': 16, 'personId': 1628968, 'jerseyNum': '10', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Brian Bowen II', 'nameI': 'B. Bowen II', 'firstName': 'Brian', 'familyName': 'Bowen II'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Torn ACL', 'order': 17, 'personId': 203087, 'jerseyNum': '26', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jeremy Lamb', 'nameI': 'J. Lamb', 'firstName': 'Jeremy', 'familyName': 'Lamb'}], 'statistics': {'assists': 28, 'assistsTurnoverRatio': 2.15384615384615, 'benchPoints': 31, 'biggestLead': 18, 'biggestLeadScore': '93-111', 'biggestScoringRun': 9, 'biggestScoringRunScore': '77-83', 'blocks': 9, 'blocksReceived': 8, 'fastBreakPointsAttempted': 19, 'fastBreakPointsMade': 13, 'fastBreakPointsPercentage': 0.68421052631579, 'fieldGoalsAttempted': 94, 'fieldGoalsEffectiveAdjusted': 0.531914893617021, 'fieldGoalsMade': 46, 'fieldGoalsPercentage': 0.48936170212766, 'foulsOffensive': 3, 'foulsDrawn': 27, 'foulsPersonal': 24, 'foulsTeam': 21, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 29, 'freeThrowsMade': 21, 'freeThrowsPercentage': 0.724137931034483, 'leadChanges': 6, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 121, 'pointsAgainst': 107, 'pointsFastBreak': 30, 'pointsFromTurnovers': 21, 'pointsInThePaint': 68, 'pointsInThePaintAttempted': 54, 'pointsInThePaintMade': 34, 'pointsInThePaintPercentage': 0.62962962962963, 'pointsSecondChance': 19, 'reboundsDefensive': 40, 'reboundsOffensive': 10, 'reboundsPersonal': 50, 'reboundsTeam': 14, 'reboundsTeamDefensive': 4, 'reboundsTeamOffensive': 10, 'reboundsTotal': 64, 'secondChancePointsAttempted': 10, 'secondChancePointsMade': 7, 'secondChancePointsPercentage': 0.7, 'steals': 6, 'threePointersAttempted': 34, 'threePointersMade': 8, 'threePointersPercentage': 0.235294117647059, 'timeLeading': 'PT30M27.00S', 'timesTied': 9, 'trueShootingAttempts': 106.76, 'trueShootingPercentage': 0.56669164481079, 'turnovers': 13, 'turnoversTeam': 0, 'turnoversTotal': 13, 'twoPointersAttempted': 60, 'twoPointersMade': 38, 'twoPointersPercentage': 0.633333333333333}}, 'awayTeam': {'teamId': 1610612752, 'teamName': 'Knicks', 'teamCity': 'New York', 'teamTricode': 'NYK', 'score': 107, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 33}, {'period': 2, 'periodType': 'REGULAR', 'score': 33}, {'period': 3, 'periodType': 'REGULAR', 'score': 16}, {'period': 4, 'periodType': 'REGULAR', 'score': 25}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203493, 'jerseyNum': '25', 'position': 'SF', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 10, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.4, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 65.0, 'minutes': 'PT25M38.00S', 'minutesCalculated': 'PT26M', 'plus': 49.0, 'plusMinusPoints': -16.0, 'points': 11, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 1, 'threePointersAttempted': 8, 'threePointersMade': 3, 'threePointersPercentage': 0.375, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Reggie Bullock', 'nameI': 'R. Bullock', 'firstName': 'Reggie', 'familyName': 'Bullock'}, {'status': 'ACTIVE', 'order': 2, 'personId': 203944, 'jerseyNum': '30', 'position': 'PF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 9, 'blocks': 0, 'blocksReceived': 2, 'fieldGoalsAttempted': 15, 'fieldGoalsMade': 7, 'fieldGoalsPercentage': 0.466666666666667, 'foulsOffensive': 3, 'foulsDrawn': 5, 'foulsPersonal': 5, 'foulsTechnical': 0, 'freeThrowsAttempted': 4, 'freeThrowsMade': 3, 'freeThrowsPercentage': 0.75, 'minus': 92.0, 'minutes': 'PT35M27.96S', 'minutesCalculated': 'PT35M', 'plus': 87.0, 'plusMinusPoints': -5.0, 'points': 17, 'pointsFastBreak': 0, 'pointsInThePaint': 14, 'pointsSecondChance': 0, 'reboundsDefensive': 8, 'reboundsOffensive': 1, 'reboundsTotal': 9, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 5, 'twoPointersAttempted': 13, 'twoPointersMade': 7, 'twoPointersPercentage': 0.538461538461538}, 'name': 'Julius Randle', 'nameI': 'J. Randle', 'firstName': 'Julius', 'familyName': 'Randle'}, {'status': 'ACTIVE', 'order': 3, 'personId': 1629011, 'jerseyNum': '23', 'position': 'C', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 3, 'blocksReceived': 1, 'fieldGoalsAttempted': 2, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 51.0, 'minutes': 'PT21M10.00S', 'minutesCalculated': 'PT21M', 'plus': 34.0, 'plusMinusPoints': -17.0, 'points': 3, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 2, 'reboundsDefensive': 4, 'reboundsOffensive': 2, 'reboundsTotal': 6, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Mitchell Robinson', 'nameI': 'M. Robinson', 'firstName': 'Mitchell', 'familyName': 'Robinson'}, {'status': 'ACTIVE', 'order': 4, 'personId': 1629628, 'jerseyNum': '9', 'position': 'SG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 5, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 15, 'fieldGoalsMade': 11, 'fieldGoalsPercentage': 0.733333333333333, 'foulsOffensive': 1, 'foulsDrawn': 4, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 89.0, 'minutes': 'PT34M21.96S', 'minutesCalculated': 'PT34M', 'plus': 79.0, 'plusMinusPoints': -10.0, 'points': 26, 'pointsFastBreak': 4, 'pointsInThePaint': 16, 'pointsSecondChance': 0, 'reboundsDefensive': 8, 'reboundsOffensive': 0, 'reboundsTotal': 8, 'steals': 0, 'threePointersAttempted': 3, 'threePointersMade': 3, 'threePointersPercentage': 1.0, 'turnovers': 1, 'twoPointersAttempted': 12, 'twoPointersMade': 8, 'twoPointersPercentage': 0.666666666666666}, 'name': 'RJ Barrett', 'nameI': 'R. Barrett', 'firstName': 'RJ', 'familyName': 'Barrett'}, {'status': 'ACTIVE', 'order': 5, 'personId': 203901, 'jerseyNum': '6', 'position': 'PG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 3, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 7, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 0.428571428571429, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 65.0, 'minutes': 'PT22M10.00S', 'minutesCalculated': 'PT22M', 'plus': 50.0, 'plusMinusPoints': -15.0, 'points': 7, 'pointsFastBreak': 2, 'pointsInThePaint': 4, 'pointsSecondChance': 2, 'reboundsDefensive': 1, 'reboundsOffensive': 1, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 1, 'threePointersMade': 1, 'threePointersPercentage': 1.0, 'turnovers': 5, 'twoPointersAttempted': 6, 'twoPointersMade': 2, 'twoPointersPercentage': 0.333333333333333}, 'name': 'Elfrid Payton', 'nameI': 'E. Payton', 'firstName': 'Elfrid', 'familyName': 'Payton'}, {'status': 'ACTIVE', 'order': 6, 'personId': 203457, 'jerseyNum': '3', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 2, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 1, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 26.0, 'minutes': 'PT09M22.00S', 'minutesCalculated': 'PT09M', 'plus': 26.0, 'plusMinusPoints': 0.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 2, 'reboundsDefensive': 2, 'reboundsOffensive': 1, 'reboundsTotal': 3, 'steals': 1, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 2, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Nerlens Noel', 'nameI': 'N. Noel', 'firstName': 'Nerlens', 'familyName': 'Noel'}, {'status': 'ACTIVE', 'order': 7, 'personId': 202692, 'jerseyNum': '18', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 3, 'blocks': 1, 'blocksReceived': 3, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 7, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 9, 'freeThrowsMade': 8, 'freeThrowsPercentage': 0.888888888888889, 'minus': 72.0, 'minutes': 'PT31M40.00S', 'minutesCalculated': 'PT32M', 'plus': 76.0, 'plusMinusPoints': 4.0, 'points': 22, 'pointsFastBreak': 2, 'pointsInThePaint': 8, 'pointsSecondChance': 0, 'reboundsDefensive': 4, 'reboundsOffensive': 0, 'reboundsTotal': 4, 'steals': 1, 'threePointersAttempted': 4, 'threePointersMade': 2, 'threePointersPercentage': 0.5, 'turnovers': 1, 'twoPointersAttempted': 8, 'twoPointersMade': 4, 'twoPointersPercentage': 0.5}, 'name': 'Alec Burks', 'nameI': 'A. Burks', 'firstName': 'Alec', 'familyName': 'Burks'}, {'status': 'ACTIVE', 'order': 8, 'personId': 1630193, 'jerseyNum': '5', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 3, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.333333333333333, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 3, 'freeThrowsMade': 3, 'freeThrowsPercentage': 1.0, 'minus': 28.0, 'minutes': 'PT12M26.00S', 'minutesCalculated': 'PT12M', 'plus': 33.0, 'plusMinusPoints': 5.0, 'points': 5, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 1, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Immanuel Quickley', 'nameI': 'I. Quickley', 'firstName': 'Immanuel', 'familyName': 'Quickley'}, {'status': 'ACTIVE', 'order': 9, 'personId': 1630167, 'jerseyNum': '1', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 1, 'blocks': 2, 'blocksReceived': 1, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 56.0, 'minutes': 'PT23M33.04S', 'minutesCalculated': 'PT24M', 'plus': 52.0, 'plusMinusPoints': -4.0, 'points': 9, 'pointsFastBreak': 3, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 3, 'reboundsOffensive': 0, 'reboundsTotal': 3, 'steals': 0, 'threePointersAttempted': 7, 'threePointersMade': 3, 'threePointersPercentage': 0.428571428571429, 'turnovers': 0, 'twoPointersAttempted': 5, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Obi Toppin', 'nameI': 'O. Toppin', 'firstName': 'Obi', 'familyName': 'Toppin'}, {'status': 'ACTIVE', 'order': 10, 'personId': 1628995, 'jerseyNum': '20', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 5, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.4, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 1, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 45.0, 'minutes': 'PT18M29.00S', 'minutesCalculated': 'PT19M', 'plus': 39.0, 'plusMinusPoints': -6.0, 'points': 4, 'pointsFastBreak': 0, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 3, 'reboundsOffensive': 0, 'reboundsTotal': 3, 'steals': 2, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 2, 'twoPointersAttempted': 4, 'twoPointersMade': 2, 'twoPointersPercentage': 0.5}, 'name': 'Kevin Knox II', 'nameI': 'K. Knox II', 'firstName': 'Kevin', 'familyName': 'Knox II'}, {'status': 'ACTIVE', 'order': 11, 'personId': 1628373, 'jerseyNum': '11', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 2, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 13.0, 'minutes': 'PT04M47.00S', 'minutesCalculated': 'PT05M', 'plus': 8.0, 'plusMinusPoints': -5.0, 'points': 1, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 1, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 1, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Frank Ntilikina', 'nameI': 'F. Ntilikina', 'firstName': 'Frank', 'familyName': 'Ntilikina'}, {'status': 'ACTIVE', 'order': 12, 'personId': 1629033, 'jerseyNum': '21', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 3.0, 'minutes': 'PT00M55.04S', 'minutesCalculated': 'PT01M', 'plus': 2.0, 'plusMinusPoints': -1.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Theo Pinson', 'nameI': 'T. Pinson', 'firstName': 'Theo', 'familyName': 'Pinson'}, {'status': 'ACTIVE', 'order': 13, 'personId': 1629649, 'jerseyNum': '17', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Ignas Brazdeikis', 'nameI': 'I. Brazdeikis', 'firstName': 'Ignas', 'familyName': 'Brazdeikis'}, {'status': 'ACTIVE', 'order': 14, 'personId': 1629607, 'jerseyNum': '0', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jared Harper', 'nameI': 'J. Harper', 'firstName': 'Jared', 'familyName': 'Harper'}, {'status': 'ACTIVE', 'order': 15, 'personId': 1628372, 'jerseyNum': '4', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Dennis Smith Jr.', 'nameI': 'D. Smith Jr.', 'firstName': 'Dennis', 'familyName': 'Smith Jr.'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Groin; sore', 'order': 16, 'personId': 203085, 'jerseyNum': '8', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Austin Rivers', 'nameI': 'A. Rivers', 'firstName': 'Austin', 'familyName': 'Rivers'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Knee; sore', 'order': 17, 'personId': 1629016, 'jerseyNum': '2', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Omari Spellman', 'nameI': 'O. Spellman', 'firstName': 'Omari', 'familyName': 'Spellman'}], 'statistics': {'assists': 25, 'assistsTurnoverRatio': 1.5625, 'benchPoints': 43, 'biggestLead': 6, 'biggestLeadScore': '59-53', 'biggestScoringRun': 8, 'biggestScoringRunScore': '30-27', 'blocks': 8, 'blocksReceived': 9, 'fastBreakPointsAttempted': 11, 'fastBreakPointsMade': 5, 'fastBreakPointsPercentage': 0.45454545454545503, 'fieldGoalsAttempted': 85, 'fieldGoalsEffectiveAdjusted': 0.529411764705882, 'fieldGoalsMade': 39, 'fieldGoalsPercentage': 0.458823529411765, 'foulsOffensive': 5, 'foulsDrawn': 24, 'foulsPersonal': 27, 'foulsTeam': 22, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 23, 'freeThrowsMade': 17, 'freeThrowsPercentage': 0.739130434782609, 'leadChanges': 6, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 107, 'pointsAgainst': 121, 'pointsFastBreak': 11, 'pointsFromTurnovers': 12, 'pointsInThePaint': 52, 'pointsInThePaintAttempted': 47, 'pointsInThePaintMade': 26, 'pointsInThePaintPercentage': 0.553191489361702, 'pointsSecondChance': 6, 'reboundsDefensive': 35, 'reboundsOffensive': 5, 'reboundsPersonal': 40, 'reboundsTeam': 4, 'reboundsTeamDefensive': 1, 'reboundsTeamOffensive': 3, 'reboundsTotal': 44, 'secondChancePointsAttempted': 5, 'secondChancePointsMade': 3, 'secondChancePointsPercentage': 0.6, 'steals': 8, 'threePointersAttempted': 28, 'threePointersMade': 12, 'threePointersPercentage': 0.428571428571429, 'timeLeading': 'PT12M53.00S', 'timesTied': 9, 'trueShootingAttempts': 95.12, 'trueShootingPercentage': 0.562447434819176, 'turnovers': 16, 'turnoversTeam': 0, 'turnoversTotal': 16, 'twoPointersAttempted': 57, 'twoPointersMade': 27, 'twoPointersPercentage': 0.473684210526316}}}}\n" ] } ], "source": [ - "#The second block contains the game & play by play data\n", - "print(json['game'])" + "# Query nba.live.endpoints for the box score of GameID 002200011 = IND vs NYK\n", + "from nba_api.live.endpoints import boxscore\n", + "data = boxscore.BoxScore('0022000011').get_dict()\n", + "print(data)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "ename": "TypeError", + "evalue": "get_dict() missing 1 required positional argument: 'self'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;31m# Query nba.live.endpoints for the score board of GameID 002200011 = IND vs NYK\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;32mfrom\u001b[0m \u001b[0mnba_api\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mlive\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mendpoints\u001b[0m \u001b[1;32mimport\u001b[0m \u001b[0mscoreboard\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[0mdata\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mscoreboard\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mScoreBoard\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_dict\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 4\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mTypeError\u001b[0m: get_dict() missing 1 required positional argument: 'self'" + ] + } + ], + "source": [ + "# Query nba.live.endpoints for the score board of GameID 002200011 = IND vs NYK\n", + "from nba_api.live.endpoints import scoreboard\n", + "data = scoreboard.ScoreBoard().get_dict()\n", + "print(data)" + ] } ], "metadata": { diff --git a/nba_api/live/endpoints/_base.py b/nba_api/live/endpoints/_base.py new file mode 100644 index 00000000..4ee6f0ce --- /dev/null +++ b/nba_api/live/endpoints/_base.py @@ -0,0 +1,52 @@ +import json + +try: + from pandas import DataFrame + PANDAS = True +except ImportError: + PANDAS = False + + +class Endpoint: + + class DataSet: + key = None + data = {} + + def __init__(self, data): + self.data = data + + def get_json(self): + return json.dumps(self.data) + + def get_dict(self): + return self.data + + def get_data_frame(self): + if not PANDAS: + raise Exception('Import Missing - Failed to import DataFrame from pandas.') + return DataFrame(self.data['data'], columns=self.data['headers']) + + def get_request_url(self): + return self.nba_response.get_url() + + def get_available_data(self): + return self.get_normalized_dict().keys() + + def get_response(self): + return self.nba_response.get_response() + + def get_dict(self): + return self.nba_response.get_dict() + + def get_json(self): + return self.nba_response.get_json() + + def get_normalized_dict(self): + return self.nba_response.get_normalized_dict() + + def get_normalized_json(self): + return self.nba_response.get_normalized_json() + + def get_data_frames(self): + return [data_set.get_data_frame() for data_set in self.data_sets] diff --git a/nba_api/live/endpoints/boxscore.py b/nba_api/live/endpoints/boxscore.py index 97581c12..d629a198 100644 --- a/nba_api/live/endpoints/boxscore.py +++ b/nba_api/live/endpoints/boxscore.py @@ -1,8 +1,7 @@ from nba_api.stats.endpoints._base import Endpoint from nba_api.live.library.http import NBAStatsHTTP -from nba_api.stats.library.parameters import EndPeriod, StartPeriod -class PlayByPlay(Endpoint): +class BoxScore(Endpoint): endpoint_url = 'boxscore/boxscore_{game_id}.json' #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} @@ -28,8 +27,8 @@ def __init__(self, def get_request(self): self.nba_response = NBAStatsHTTP().send_api_request( - endpoint=self.endpoint_url.format(self.game_id), - parameters=None, + endpoint=self.endpoint_url.format(game_id=self.game_id), + parameters = {}, proxy=self.proxy, headers=self.headers, timeout=self.timeout diff --git a/nba_api/live/endpoints/gameodds.py b/nba_api/live/endpoints/gameodds.py index 0ee0f2b5..29a0acea 100644 --- a/nba_api/live/endpoints/gameodds.py +++ b/nba_api/live/endpoints/gameodds.py @@ -1,9 +1,8 @@ from nba_api.stats.endpoints._base import Endpoint from nba_api.live.library.http import NBAStatsHTTP -from nba_api.stats.library.parameters import EndPeriod, StartPeriod -class PlayByPlay(Endpoint): - endpoint_url = 'gameodds/{game_id}.json' +class GameOdds(Endpoint): + endpoint_url = 'gameOdds/{game_id}.json' #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} nba_response = None @@ -28,8 +27,8 @@ def __init__(self, def get_request(self): self.nba_response = NBAStatsHTTP().send_api_request( - endpoint=self.endpoint_url.format(self.game_id), - parameters=None, + endpoint=self.endpoint_url.format(game_id=self.game_id), + parameters = {}, proxy=self.proxy, headers=self.headers, timeout=self.timeout diff --git a/nba_api/live/endpoints/playbyplay.py b/nba_api/live/endpoints/playbyplay.py index 9f1944f0..f7b2cf29 100644 --- a/nba_api/live/endpoints/playbyplay.py +++ b/nba_api/live/endpoints/playbyplay.py @@ -1,7 +1,5 @@ from nba_api.stats.endpoints._base import Endpoint from nba_api.live.library.http import NBAStatsHTTP -from nba_api.stats.library.parameters import EndPeriod, StartPeriod - class PlayByPlay(Endpoint): endpoint_url = 'playbyplay/playbyplay_{game_id}.json' #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} @@ -28,8 +26,8 @@ def __init__(self, def get_request(self): self.nba_response = NBAStatsHTTP().send_api_request( - endpoint=self.endpoint_url.format(self.game_id), - parameters=None, + endpoint=self.endpoint_url.format(game_id=self.game_id), + parameters = {}, proxy=self.proxy, headers=self.headers, timeout=self.timeout diff --git a/nba_api/live/endpoints/scoreboard.py b/nba_api/live/endpoints/scoreboard.py index 8e509eaa..e796304c 100644 --- a/nba_api/live/endpoints/scoreboard.py +++ b/nba_api/live/endpoints/scoreboard.py @@ -1,8 +1,6 @@ from nba_api.stats.endpoints._base import Endpoint from nba_api.live.library.http import NBAStatsHTTP -from nba_api.stats.library.parameters import EndPeriod, StartPeriod - -class PlayByPlay(Endpoint): +class ScoreBoard(Endpoint): endpoint_url = 'scoreboard/todaysScoreboard_00.json' #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} @@ -27,7 +25,7 @@ def __init__(self, def get_request(self): self.nba_response = NBAStatsHTTP().send_api_request( endpoint=self.endpoint_url, - parameters=None, + parameters = {}, proxy=self.proxy, headers=self.headers, timeout=self.timeout From 8facdee77e33e5863f7213740d920e83e5a12258 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sat, 26 Dec 2020 13:39:42 -0500 Subject: [PATCH 08/20] further separated stats from live by moving over _base.py and having live endpoints reference that --- docs/examples/PlayByPlay_Live.ipynb | 19 ++++++---- nba_api/live/endpoints/boxscore.py | 2 +- nba_api/live/endpoints/gameodds.py | 2 +- nba_api/live/endpoints/playbyplay.py | 2 +- nba_api/live/endpoints/scoreboard.py | 2 +- nba_api/live/library/actiontype.py | 55 ---------------------------- 6 files changed, 15 insertions(+), 67 deletions(-) delete mode 100644 nba_api/live/library/actiontype.py diff --git a/docs/examples/PlayByPlay_Live.ipynb b/docs/examples/PlayByPlay_Live.ipynb index 880b958b..39aebcbb 100644 --- a/docs/examples/PlayByPlay_Live.ipynb +++ b/docs/examples/PlayByPlay_Live.ipynb @@ -81,14 +81,10 @@ "metadata": {}, "outputs": [ { - "ename": "TypeError", - "evalue": "get_dict() missing 1 required positional argument: 'self'", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;31m# Query nba.live.endpoints for the score board of GameID 002200011 = IND vs NYK\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;32mfrom\u001b[0m \u001b[0mnba_api\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mlive\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mendpoints\u001b[0m \u001b[1;32mimport\u001b[0m \u001b[0mscoreboard\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[0mdata\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mscoreboard\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mScoreBoard\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_dict\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 4\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", - "\u001b[1;31mTypeError\u001b[0m: get_dict() missing 1 required positional argument: 'self'" + "name": "stdout", + "output_type": "stream", + "text": [ + "{'meta': {'version': 1, 'request': 'https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json', 'time': '2020-12-26 01:19:25.1925', 'code': 200}, 'scoreboard': {'gameDate': '2020-12-26', 'leagueId': '00', 'leagueName': 'National Basketball Association', 'games': [{'gameId': '0022000021', 'gameCode': '20201226/ATLMEM', 'gameStatus': 1, 'gameStatusText': '5:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-26T22:00:00Z', 'gameEt': '2020-12-26T17:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612763, 'teamName': 'Grizzlies', 'teamCity': 'Memphis', 'teamTricode': 'MEM', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612737, 'teamName': 'Hawks', 'teamCity': 'Atlanta', 'teamTricode': 'ATL', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'MEM', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'ATL', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000022', 'gameCode': '20201226/OKCCHA', 'gameStatus': 1, 'gameStatusText': '7:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T00:00:00Z', 'gameEt': '2020-12-26T19:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612766, 'teamName': 'Hornets', 'teamCity': 'Charlotte', 'teamTricode': 'CHA', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612760, 'teamName': 'Thunder', 'teamCity': 'Oklahoma City', 'teamTricode': 'OKC', 'wins': 0, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'CHA', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'OKC', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000023', 'gameCode': '20201226/CLEDET', 'gameStatus': 1, 'gameStatusText': '7:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T00:00:00Z', 'gameEt': '2020-12-26T19:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612765, 'teamName': 'Pistons', 'teamCity': 'Detroit', 'teamTricode': 'DET', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612739, 'teamName': 'Cavaliers', 'teamCity': 'Cleveland', 'teamTricode': 'CLE', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'DET', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'CLE', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000024', 'gameCode': '20201226/ORLWAS', 'gameStatus': 1, 'gameStatusText': '7:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T00:00:00Z', 'gameEt': '2020-12-26T19:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612764, 'teamName': 'Wizards', 'teamCity': 'Washington', 'teamTricode': 'WAS', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'WAS', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'ORL', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000025', 'gameCode': '20201226/PHINYK', 'gameStatus': 1, 'gameStatusText': '7:30 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T00:30:00Z', 'gameEt': '2020-12-26T19:30:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612752, 'teamName': 'Knicks', 'teamCity': 'New York', 'teamTricode': 'NYK', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612755, 'teamName': '76ers', 'teamCity': 'Philadelphia', 'teamTricode': 'PHI', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'NYK', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'PHI', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000026', 'gameCode': '20201226/INDCHI', 'gameStatus': 1, 'gameStatusText': '8:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T01:00:00Z', 'gameEt': '2020-12-26T20:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612741, 'teamName': 'Bulls', 'teamCity': 'Chicago', 'teamTricode': 'CHI', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612754, 'teamName': 'Pacers', 'teamCity': 'Indiana', 'teamTricode': 'IND', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'CHI', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'IND', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000027', 'gameCode': '20201226/TORSAS', 'gameStatus': 1, 'gameStatusText': '8:30 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T01:30:00Z', 'gameEt': '2020-12-26T20:30:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612759, 'teamName': 'Spurs', 'teamCity': 'San Antonio', 'teamTricode': 'SAS', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612761, 'teamName': 'Raptors', 'teamCity': 'Toronto', 'teamTricode': 'TOR', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'SAS', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'TOR', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000028', 'gameCode': '20201226/MINUTA', 'gameStatus': 1, 'gameStatusText': '9:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T02:00:00Z', 'gameEt': '2020-12-26T21:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612762, 'teamName': 'Jazz', 'teamCity': 'Utah', 'teamTricode': 'UTA', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612750, 'teamName': 'Timberwolves', 'teamCity': 'Minnesota', 'teamTricode': 'MIN', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'UTA', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'MIN', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000029', 'gameCode': '20201226/HOUPOR', 'gameStatus': 1, 'gameStatusText': '10:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T03:00:00Z', 'gameEt': '2020-12-26T22:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612757, 'teamName': 'Trail Blazers', 'teamCity': 'Portland', 'teamTricode': 'POR', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612745, 'teamName': 'Rockets', 'teamCity': 'Houston', 'teamTricode': 'HOU', 'wins': 0, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'POR', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'HOU', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000030', 'gameCode': '20201226/PHXSAC', 'gameStatus': 1, 'gameStatusText': '10:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T03:00:00Z', 'gameEt': '2020-12-26T22:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612758, 'teamName': 'Kings', 'teamCity': 'Sacramento', 'teamTricode': 'SAC', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612756, 'teamName': 'Suns', 'teamCity': 'Phoenix', 'teamTricode': 'PHX', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'SAC', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'PHX', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}]}}\n" ] } ], @@ -98,6 +94,13 @@ "data = scoreboard.ScoreBoard().get_dict()\n", "print(data)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { diff --git a/nba_api/live/endpoints/boxscore.py b/nba_api/live/endpoints/boxscore.py index d629a198..ce07a73e 100644 --- a/nba_api/live/endpoints/boxscore.py +++ b/nba_api/live/endpoints/boxscore.py @@ -1,4 +1,4 @@ -from nba_api.stats.endpoints._base import Endpoint +from nba_api.live.endpoints._base import Endpoint from nba_api.live.library.http import NBAStatsHTTP class BoxScore(Endpoint): diff --git a/nba_api/live/endpoints/gameodds.py b/nba_api/live/endpoints/gameodds.py index 29a0acea..59f9e92c 100644 --- a/nba_api/live/endpoints/gameodds.py +++ b/nba_api/live/endpoints/gameodds.py @@ -1,4 +1,4 @@ -from nba_api.stats.endpoints._base import Endpoint +from nba_api.live.endpoints._base import Endpoint from nba_api.live.library.http import NBAStatsHTTP class GameOdds(Endpoint): diff --git a/nba_api/live/endpoints/playbyplay.py b/nba_api/live/endpoints/playbyplay.py index f7b2cf29..55da2d4d 100644 --- a/nba_api/live/endpoints/playbyplay.py +++ b/nba_api/live/endpoints/playbyplay.py @@ -1,4 +1,4 @@ -from nba_api.stats.endpoints._base import Endpoint +from nba_api.live.endpoints._base import Endpoint from nba_api.live.library.http import NBAStatsHTTP class PlayByPlay(Endpoint): endpoint_url = 'playbyplay/playbyplay_{game_id}.json' diff --git a/nba_api/live/endpoints/scoreboard.py b/nba_api/live/endpoints/scoreboard.py index e796304c..01339d3c 100644 --- a/nba_api/live/endpoints/scoreboard.py +++ b/nba_api/live/endpoints/scoreboard.py @@ -1,4 +1,4 @@ -from nba_api.stats.endpoints._base import Endpoint +from nba_api.live.endpoints._base import Endpoint from nba_api.live.library.http import NBAStatsHTTP class ScoreBoard(Endpoint): endpoint_url = 'scoreboard/todaysScoreboard_00.json' diff --git a/nba_api/live/library/actiontype.py b/nba_api/live/library/actiontype.py deleted file mode 100644 index 533f4460..00000000 --- a/nba_api/live/library/actiontype.py +++ /dev/null @@ -1,55 +0,0 @@ -from enum import Enum - -class EventMsgType(Enum): - FIELD_GOAL_MADE = 1 - FIELD_GOAL_MISSED = 2 - FREE_THROW = 3 - REBOUND = 4 - TURNOVER = 5 - FOUL = 6 - VIOLATION = 7 - SUBSTITUTION = 8 - TIMEOUT = 9 - JUMP_BALL = 10 - EJECTION = 11 - PERIOD_BEGIN = 12 - PERIOD_END = 13 - UNKNOWN = 18 - - -# period : start -# jumpball : recovered -# 3pt : Jump Shot -# 2pt : Hook -# rebound : defensive -# turnover : bad pass -# steal : None -# 2pt : Jump Shot -# 2pt : Layup -# rebound : offensive -# timeout : full -# substitution : out -# substitution : in -# turnover : out-of-bounds -# foul : personal -# freethrow : 1 of 1 -# 2pt : DUNK -# freethrow : 1 of 2 -# freethrow : 2 of 2 -# block : None -# stoppage : out-of-bounds -# foul : offensive -# turnover : offensive foul -# stoppage : blood rule -# stoppage : equipment issue -# freethrow : 1 of 3 -# freethrow : 2 of 3 -# freethrow : 3 of 3 -# period : end -# turnover : lost ball -# violation : kicked ball -# turnover : discontinued dribble -# turnover : traveling -# foul : technical -# instantreplay : request -# game : end \ No newline at end of file From bf6619f402c028719099d17f3fde7e1bcd2dc0c6 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sat, 9 Jan 2021 16:58:53 -0500 Subject: [PATCH 09/20] Updated data.py with current player data --- nba_api/stats/library/data.py | 316 ++++++++++++++++++++++------------ 1 file changed, 202 insertions(+), 114 deletions(-) diff --git a/nba_api/stats/library/data.py b/nba_api/stats/library/data.py index c23abf3a..b2e6daa2 100644 --- a/nba_api/stats/library/data.py +++ b/nba_api/stats/library/data.py @@ -4,7 +4,7 @@ player_index_full_name = 3 player_index_is_active = 4 -# Data last updated: Jan, 27 2020 +# Data last updated: Jan, 09 2021 players = [ [76001, "Abdelnaby", "Alaa", "Alaa Abdelnaby", False], @@ -17,6 +17,7 @@ [76006, "Able", "Forest", "Forest Able", False], [76007, "Abramovic", "John", "John Abramovic", False], [203518, "Abrines", "Alex", "Alex Abrines", False], + [1630173, "Achiuwa", "Precious", "Precious Achiuwa", True], [101165, "Acker", "Alex", "Alex Acker", False], [76008, "Ackerman", "Donald", "Donald Ackerman", False], [76009, "Acres", "Mark", "Mark Acres", False], @@ -25,7 +26,7 @@ [76011, "Adams", "Alvan", "Alvan Adams", False], [76012, "Adams", "Don", "Don Adams", False], [200801, "Adams", "Hassan", "Hassan Adams", False], - [1629121, "Adams", "Jaylen", "Jaylen Adams", False], + [1629121, "Adams", "Jaylen", "Jaylen Adams", True], [203919, "Adams", "Jordan", "Jordan Adams", False], [149, "Adams", "Michael", "Michael Adams", False], [203500, "Adams", "Steven", "Steven Adams", True], @@ -55,7 +56,8 @@ [2042, "Alexander", "Courtney", "Courtney Alexander", False], [76022, "Alexander", "Gary", "Gary Alexander", False], [201570, "Alexander", "Joe", "Joe Alexander", False], - [1629734, "Alexander", "Kyle", "Kyle Alexander", True], + [1629734, "Alexander", "Kyle", "Kyle Alexander", False], + [1630234, "Alexander", "Ty-Shon", "Ty-Shon Alexander", True], [2349, "Alexander", "Victor", "Victor Alexander", False], [1629638, "Alexander-Walker", "Nickeil", "Nickeil Alexander-Walker", True], [76024, "Alford", "Steve", "Steve Alford", False], @@ -64,7 +66,7 @@ [1628960, "Allen", "Grayson", "Grayson Allen", True], [1628386, "Allen", "Jarrett", "Jarrett Allen", True], [706, "Allen", "Jerome", "Jerome Allen", False], - [1628443, "Allen", "Kadeem", "Kadeem Allen", True], + [1628443, "Allen", "Kadeem", "Kadeem Allen", False], [202730, "Allen", "Lavoy", "Lavoy Allen", False], [76027, "Allen", "Lucius", "Lucius Allen", False], [2124, "Allen", "Malik", "Malik Allen", False], @@ -95,7 +97,7 @@ [246, "Anderson", "Greg", "Greg Anderson", False], [202341, "Anderson", "James", "James Anderson", False], [76040, "Anderson", "Jerome", "Jerome Anderson", False], - [1626147, "Anderson", "Justin", "Justin Anderson", True], + [1626147, "Anderson", "Justin", "Justin Anderson", False], [72, "Anderson", "Kenny", "Kenny Anderson", False], [76041, "Anderson", "Kim", "Kim Anderson", False], [203937, "Anderson", "Kyle", "Kyle Anderson", True], @@ -104,7 +106,7 @@ [98, "Anderson", "Nick", "Nick Anderson", False], [76045, "Anderson", "Richard", "Richard Anderson", False], [76046, "Anderson", "Ron", "Ron Anderson", False], - [201583, "Anderson", "Ryan", "Ryan Anderson", True], + [201583, "Anderson", "Ryan", "Ryan Anderson", False], [1000, "Anderson", "Shandon", "Shandon Anderson", False], [335, "Anderson", "Willie", "Willie Anderson", False], [76048, "Anderzunas", "Wally", "Wally Anderzunas", False], @@ -117,6 +119,7 @@ [1628961, "Antetokounmpo", "Kostas", "Kostas Antetokounmpo", True], [203648, "Antetokounmpo", "Thanasis", "Thanasis Antetokounmpo", True], [2546, "Anthony", "Carmelo", "Carmelo Anthony", True], + [1630175, "Anthony", "Cole", "Cole Anthony", True], [21, "Anthony", "Greg", "Greg Anthony", False], [201202, "Anthony", "Joel", "Joel Anthony", False], [203544, "Antic", "Pero", "Pero Antic", False], @@ -160,6 +163,7 @@ [1134, "Austin", "Ike", "Ike Austin", False], [76073, "Austin", "John", "John Austin", False], [76074, "Austin", "Ken", "Ken Austin", False], + [1630166, "Avdija", "Deni", "Deni Avdija", True], [138, "Avent", "Anthony", "Anthony Avent", False], [76076, "Averitt", "William", "William Averitt", False], [1895, "Avery", "William", "William Avery", False], @@ -168,6 +172,7 @@ [201965, "Ayres", "Jeff", "Jeff Ayres", False], [1629028, "Ayton", "Deandre", "Deandre Ayton", True], [101235, "Azubuike", "Kelenna", "Kelenna Azubuike", False], + [1628962, "Azubuike", "Udoka", "Udoka Azubuike", True], [203569, "Babb", "Chris", "Chris Babb", False], [202337, "Babbitt", "Luke", "Luke Babbitt", False], [76079, "Babic", "Milos", "Milos Babic", False], @@ -191,10 +196,12 @@ [1627735, "Baldwin IV", "Wade", "Wade Baldwin IV", False], [200764, "Balkman", "Renaldo", "Renaldo Balkman", False], [76090, "Ball", "Cedric", "Cedric Ball", False], + [1630163, "Ball", "LaMelo", "LaMelo Ball", True], [1628366, "Ball", "Lonzo", "Lonzo Ball", True], [76091, "Ballard", "Greg", "Greg Ballard", False], [76092, "Baltimore", "Herschel", "Herschel Baltimore", False], [1628964, "Bamba", "Mo", "Mo Bamba", True], + [1630217, "Bane", "Desmond", "Desmond Bane", True], [76093, "Banks", "Gene", "Gene Banks", False], [2556, "Banks", "Marcus", "Marcus Banks", False], [76094, "Bannister", "Ken", "Ken Bannister", False], @@ -202,7 +209,7 @@ [76096, "Barber", "John", "John Barber", False], [2571, "Barbosa", "Leandro", "Leandro Barbosa", False], [76097, "Bardo", "Stephen", "Stephen Bardo", False], - [200826, "Barea", "J.J.", "J.J. Barea", True], + [200826, "Barea", "J.J.", "J.J. Barea", False], [200745, "Bargnani", "Andrea", "Andrea Bargnani", False], [76098, "Barker", "Cliff", "Cliff Barker", False], [76099, "Barker", "Tom", "Tom Barker", False], @@ -276,10 +283,10 @@ [76139, "Beenders", "Hank", "Hank Beenders", False], [76140, "Behagen", "Ron", "Ron Behagen", False], [76141, "Behnke", "Elmer", "Elmer Behnke", False], - [201158, "Belinelli", "Marco", "Marco Belinelli", True], + [201158, "Belinelli", "Marco", "Marco Belinelli", False], [2294, "Bell", "Charlie", "Charlie Bell", False], [76142, "Bell", "Dennis", "Dennis Bell", False], - [1628395, "Bell", "Jordan", "Jordan Bell", True], + [1628395, "Bell", "Jordan", "Jordan Bell", False], [1952, "Bell", "Raja", "Raja Bell", False], [2559, "Bell", "Troy", "Troy Bell", False], [76143, "Bell", "William", "William Bell", False], @@ -287,7 +294,7 @@ [1627761, "Bembry", "DeAndre'", "DeAndre' Bembry", True], [76145, "Bemoras", "Irv", "Irv Bemoras", False], [76146, "Benbow", "Leon", "Leon Benbow", False], - [1627733, "Bender", "Dragan", "Dragan Bender", True], + [1627733, "Bender", "Dragan", "Dragan Bender", False], [1886, "Bender", "Jonathan", "Jonathan Bender", False], [203968, "Benimon", "Jerrelle", "Jerrelle Benimon", False], [104, "Benjamin", "Benoit", "Benoit Benjamin", False], @@ -311,6 +318,8 @@ [76159, "Beshore", "Del", "Del Beshore", False], [696, "Best", "Travis", "Travis Best", False], [201976, "Beverley", "Patrick", "Patrick Beverley", True], + [1630180, "Bey", "Saddiq", "Saddiq Bey", True], + [1630189, "Bey", "Tyler", "Tyler Bey", True], [204021, "Bhullar", "Sim", "Sim Bhullar", False], [76160, "Bianchi", "Al", "Al Bianchi", False], [76161, "Biasatti", "Hank", "Hank Biasatti", False], @@ -353,6 +362,7 @@ [101154, "Blatche", "Andray", "Andray Blatche", False], [302, "Blaylock", "Mookie", "Mookie Blaylock", False], [202339, "Bledsoe", "Eric", "Eric Bledsoe", True], + [1629833, "Blevins", "Keljin", "Keljin Blevins", True], [76186, "Blevins", "Leon", "Leon Blevins", False], [76187, "Block", "John", "John Block", False], [76188, "Bloom", "Mike", "Mike Bloom", False], @@ -374,7 +384,8 @@ [1564, "Bohannon", "Etdrick", "Etdrick Bohannon", False], [1629626, "Bol", "Bol", "Bol Bol", True], [76195, "Bol", "Manute", "Manute Bol", False], - [1628413, "Bolden", "Jonah", "Jonah Bolden", True], + [1628413, "Bolden", "Jonah", "Jonah Bolden", False], + [1629716, "Bolden", "Marques", "Marques Bolden", True], [76196, "Bolger", "Bill", "Bill Bolger", False], [1627762, "Bolomboy", "Joel", "Joel Bolomboy", False], [76197, "Bolstorff", "Doug", "Doug Bolstorff", False], @@ -415,7 +426,7 @@ [194, "Bowie", "Anthony", "Anthony Bowie", False], [76217, "Bowie", "Sam", "Sam Bowie", False], [1085, "Bowman", "Ira", "Ira Bowman", False], - [1629065, "Bowman", "Ky", "Ky Bowman", True], + [1629065, "Bowman", "Ky", "Ky Bowman", False], [76219, "Bowman", "Nate", "Nate Bowman", False], [671, "Boyce", "Donnie", "Donnie Boyce", False], [76221, "Boyd", "Dennis", "Dennis Boyd", False], @@ -474,14 +485,14 @@ [76255, "Brindley", "Audley", "Audley Brindley", False], [1628515, "Briscoe", "Isaiah", "Isaiah Briscoe", False], [76256, "Brisker", "John", "John Brisker", False], - [1629052, "Brissett", "Oshae", "Oshae Brissett", True], + [1629052, "Brissett", "Oshae", "Oshae Brissett", False], [76257, "Bristow", "Allan", "Allan Bristow", False], [76258, "Britt", "Tyrone", "Tyrone Britt", False], [76259, "Britt", "Wayman", "Wayman Britt", False], [76260, "Brittain", "Mike", "Mike Brittain", False], [76261, "Britton", "David", "David Britton", False], [201972, "Brockman", "Jon", "Jon Brockman", False], - [1629151, "Broekhoff", "Ryan", "Ryan Broekhoff", True], + [1629151, "Broekhoff", "Ryan", "Ryan Broekhoff", False], [76262, "Brogan", "Jim", "Jim Brogan", False], [1627763, "Brogdon", "Malcolm", "Malcolm Brogdon", True], [76263, "Brokaw", "Gary", "Gary Brokaw", False], @@ -532,7 +543,7 @@ [1628425, "Brown", "Sterling", "Sterling Brown", True], [2357, "Brown", "Tierre", "Tierre Brown", False], [76268, "Brown", "Tony", "Tony Brown", False], - [1629718, "Brown Jr.", "Charles", "Charles Brown Jr.", True], + [1629718, "Brown Jr.", "Charlie", "Charlie Brown Jr.", False], [1628972, "Brown Jr.", "Troy", "Troy Brown Jr.", True], [76287, "Browne", "Jim", "Jim Browne", False], [76288, "Brundy", "Stanley", "Stanley Brundy", False], @@ -577,7 +588,7 @@ [76311, "Burris", "Art", "Art Burris", False], [675, "Burrough", "Junior", "Junior Burrough", False], [76313, "Burrow", "Bob", "Bob Burrow", False], - [1629126, "Burton", "Deonte", "Deonte Burton", True], + [1629126, "Burton", "Deonte", "Deonte Burton", False], [76314, "Burton", "Ed", "Ed Burton", False], [416, "Burton", "Willie", "Willie Burton", False], [76316, "Burtt", "Steve", "Steve Burtt", False], @@ -621,6 +632,7 @@ [76336, "Calvin", "Mack", "Mack Calvin", False], [76337, "Cambridge", "Dexter", "Dexter Cambridge", False], [948, "Camby", "Marcus", "Marcus Camby", False], + [1630267, "Campazzo", "Facundo", "Facundo Campazzo", True], [922, "Campbell", "Elden", "Elden Campbell", False], [76338, "Campbell", "Tony", "Tony Campbell", False], [203477, "Canaan", "Isaiah", "Isaiah Canaan", False], @@ -629,6 +641,7 @@ [203991, "Capela", "Clint", "Clint Capela", True], [202382, "Caracter", "Derrick", "Derrick Caracter", False], [2073, "Cardinal", "Brian", "Brian Cardinal", False], + [1630176, "Carey Jr.", "Vernon", "Vernon Carey Jr.", True], [76340, "Carl", "Howie", "Howie Carl", False], [76341, "Carlisle", "Chet", "Chet Carlisle", False], [2367, "Carlisle", "Geno", "Geno Carlisle", False], @@ -645,7 +658,7 @@ [76350, "Carr", "Kenny", "Kenny Carr", False], [76351, "Carr", "M.L.", "M.L. Carr", False], [76352, "Carrington", "Bob", "Bob Carrington", False], - [201960, "Carroll", "DeMarre", "DeMarre Carroll", True], + [201960, "Carroll", "DeMarre", "DeMarre Carroll", False], [76353, "Carroll", "Joe Barry", "Joe Barry Carroll", False], [2679, "Carroll", "Matt", "Matt Carroll", False], [1131, "Carruth", "Jimmy", "Jimmy Carruth", False], @@ -659,7 +672,7 @@ [2466, "Carter", "Maurice", "Maurice Carter", False], [76360, "Carter", "Reggie", "Reggie Carter", False], [76361, "Carter", "Ron", "Ron Carter", False], - [1713, "Carter", "Vince", "Vince Carter", True], + [1713, "Carter", "Vince", "Vince Carter", False], [1628976, "Carter Jr.", "Wendell", "Wendell Carter Jr.", True], [203487, "Carter-Williams", "Michael", "Michael Carter-Williams", True], [76362, "Cartwright", "Bill", "Bill Cartwright", False], @@ -688,8 +701,8 @@ [76376, "Chambers", "Jerry", "Jerry Chambers", False], [1472, "Chambers", "Tom", "Tom Chambers", False], [76378, "Champion", "Mike", "Mike Champion", False], - [2199, "Chandler", "Tyson", "Tyson Chandler", True], - [201163, "Chandler", "Wilson", "Wilson Chandler", True], + [2199, "Chandler", "Tyson", "Tyson Chandler", False], + [201163, "Chandler", "Wilson", "Wilson Chandler", False], [76379, "Chaney", "Don", "Don Chaney", False], [76380, "Chaney", "John", "John Chaney", False], [364, "Chapman", "Rex", "Rex Chapman", False], @@ -698,7 +711,7 @@ [76384, "Charles", "Lorenzo", "Lorenzo Charles", False], [1629147, "Chealey", "Joe", "Joe Chealey", False], [384, "Cheaney", "Calbert", "Calbert Cheaney", False], - [1629597, "Cheatham", "Zylan", "Zylan Cheatham", True], + [1629597, "Cheatham", "Zylan", "Zylan Cheatham", False], [76385, "Cheeks", "Maurice", "Maurice Cheeks", False], [76386, "Chenier", "Phil", "Phil Chenier", False], [203805, "Cherry", "Will", "Will Cherry", False], @@ -738,7 +751,7 @@ [2043, "Cleaves", "Mateen", "Mateen Cleaves", False], [76403, "Clemens", "John", "John Clemens", False], [1629598, "Clemons", "Chris", "Chris Clemons", True], - [1628499, "Cleveland", "Antonius", "Antonius Cleveland", True], + [1628499, "Cleveland", "Antonius", "Antonius Cleveland", False], [76404, "Clifton", "Nat", "Nat Clifton", False], [76406, "Closs", "Bill", "Bill Closs", False], [1569, "Closs", "Keith", "Keith Closs", False], @@ -796,7 +809,7 @@ [76437, "Cook", "Norm", "Norm Cook", False], [2241, "Cook", "Omar", "Omar Cook", False], [1626188, "Cook", "Quinn", "Quinn Cook", True], - [1629076, "Cook", "Tyler", "Tyler Cook", True], + [1629076, "Cook", "Tyler", "Tyler Cook", False], [1628429, "Cooke", "Charles", "Charles Cooke", False], [76439, "Cooke", "David", "David Cooke", False], [76440, "Cooke", "Joe", "Joe Cooke", False], @@ -832,7 +845,7 @@ [76463, "Cox", "John", "John Cox", False], [76464, "Cox", "Johnny", "Johnny Cox", False], [76465, "Cox", "Wesley", "Wesley Cox", False], - [203459, "Crabbe", "Allen", "Allen Crabbe", True], + [203459, "Crabbe", "Allen", "Allen Crabbe", False], [1628470, "Craig", "Torrey", "Torrey Craig", True], [1544, "Crawford", "Chris", "Chris Crawford", False], [76466, "Crawford", "Freddie", "Freddie Crawford", False], @@ -893,13 +906,14 @@ [1380, "Daniels", "Lloyd", "Lloyd Daniels", False], [2605, "Daniels", "Marquis", "Marquis Daniels", False], [76502, "Daniels", "Mel", "Mel Daniels", False], - [203584, "Daniels", "Troy", "Troy Daniels", True], + [203584, "Daniels", "Troy", "Troy Daniels", False], [390, "Danilovic", "Sasha", "Sasha Danilovic", False], [76504, "Dantley", "Adrian", "Adrian Dantley", False], [76506, "Darcey", "Henry", "Henry Darcey", False], [76507, "Darden", "Jimmy", "Jimmy Darden", False], [212, "Dare", "Yinka", "Yinka Dare", False], [76509, "Dark", "Jesse", "Jesse Dark", False], + [1630268, "Darling", "Nate", "Nate Darling", True], [76511, "Darrow", "Jimmy", "Jimmy Darrow", False], [203540, "Datome", "Gigi", "Gigi Datome", False], [921, "Daugherty", "Brad", "Brad Daugherty", False], @@ -963,7 +977,7 @@ [201942, "DeRozan", "DeMar", "DeMar DeRozan", True], [76562, "DeZonie", "Hank", "Hank DeZonie", False], [76544, "Deane", "Greg", "Greg Deane", False], - [203473, "Dedmon", "Dewayne", "Dewayne Dedmon", True], + [203473, "Dedmon", "Dewayne", "Dewayne Dedmon", False], [76546, "Dees", "Archie", "Archie Dees", False], [143, "Dehere", "Terry", "Terry Dehere", False], [76548, "Dehnert", "Red", "Red Dehnert", False], @@ -991,8 +1005,9 @@ [76561, "Devlin", "Walter", "Walter Devlin", False], [76568, "DiGregorio", "Ernie", "Ernie DiGregorio", False], [1628978, "DiVincenzo", "Donte", "Donte DiVincenzo", True], + [1629603, "Diakite", "Mamadi", "Mamadi Diakite", True], [1760, "Dial", "Derrick", "Derrick Dial", False], - [1627767, "Diallo", "Cheick", "Cheick Diallo", True], + [1627767, "Diallo", "Cheick", "Cheick Diallo", False], [1628977, "Diallo", "Hamidou", "Hamidou Diallo", True], [2564, "Diaw", "Boris", "Boris Diaw", False], [200821, "Diawara", "Yakhouba", "Yakhouba Diawara", False], @@ -1036,6 +1051,7 @@ [1628416, "Dorsey", "Tyler", "Tyler Dorsey", False], [1629652, "Dort", "Luguentz", "Luguentz Dort", True], [1628422, "Dotson", "Damyean", "Damyean Dotson", True], + [1629653, "Dotson", "Devon", "Devon Dotson", True], [200763, "Douby", "Quincy", "Quincy Douby", False], [76588, "Douglas", "Bruce", "Bruce Douglas", False], [76589, "Douglas", "John", "John Douglas", False], @@ -1115,6 +1131,7 @@ [76637, "Edelin", "Kent", "Kent Edelin", False], [76638, "Edmonson", "Keith", "Keith Edmonson", False], [721, "Edney", "Tyus", "Tyus Edney", False], + [1630162, "Edwards", "Anthony", "Anthony Edwards", True], [76646, "Edwards", "Bill", "Bill Edwards", False], [898, "Edwards", "Blue", "Blue Edwards", False], [1629035, "Edwards", "Carsen", "Carsen Edwards", True], @@ -1137,8 +1154,9 @@ [2064, "El-Amin", "Khalid", "Khalid El-Amin", False], [76653, "Eliason", "Don", "Don Eliason", False], [53, "Elie", "Mario", "Mario Elie", False], + [1629604, "Elleby", "CJ", "CJ Elleby", True], [76655, "Ellefson", "Ray", "Ray Ellefson", False], - [1627740, "Ellenson", "Henry", "Henry Ellenson", True], + [1627740, "Ellenson", "Henry", "Henry Ellenson", False], [201961, "Ellington", "Wayne", "Wayne Ellington", True], [76656, "Elliott", "Bob", "Bob Elliott", False], [251, "Elliott", "Sean", "Sean Elliott", False], @@ -1183,7 +1201,7 @@ [76687, "Evans", "Bob", "Bob Evans", False], [967, "Evans", "Brian", "Brian Evans", False], [76685, "Evans", "Earl", "Earl Evans", False], - [1628980, "Evans", "Jacob", "Jacob Evans", True], + [1628980, "Evans", "Jacob", "Jacob Evans", False], [1628393, "Evans", "Jawun", "Jawun Evans", False], [202379, "Evans", "Jeremy", "Jeremy Evans", False], [2230, "Evans", "Maurice", "Maurice Evans", False], @@ -1235,7 +1253,7 @@ [76708, "Ferrari", "Al", "Al Ferrari", False], [76709, "Ferreira", "Rolando", "Rolando Ferreira", False], [273, "Ferrell", "Duane", "Duane Ferrell", False], - [1627812, "Ferrell", "Yogi", "Yogi Ferrell", True], + [1627812, "Ferrell", "Yogi", "Yogi Ferrell", False], [76711, "Ferrin", "Arnie", "Arnie Ferrin", False], [76712, "Ferry", "Bob", "Bob Ferry", False], [198, "Ferry", "Danny", "Danny Ferry", False], @@ -1262,6 +1280,7 @@ [76725, "Flowers", "Bruce", "Bruce Flowers", False], [76726, "Floyd", "Sleepy", "Sleepy Floyd", False], [201938, "Flynn", "Jonny", "Jonny Flynn", False], + [1630201, "Flynn", "Malachi", "Malachi Flynn", True], [76727, "Flynn", "Mike", "Mike Flynn", False], [76728, "Fogle", "Larry", "Larry Fogle", False], [76729, "Foley", "Jack", "Jack Foley", False], @@ -1281,6 +1300,7 @@ [2551, "Ford", "T.J.", "T.J. Ford", False], [76738, "Forman", "Donnie", "Donnie Forman", False], [76739, "Forrest", "Bayard", "Bayard Forrest", False], + [1630235, "Forrest", "Trent", "Trent Forrest", True], [2218, "Forte", "Joseph", "Joseph Forte", False], [202622, "Fortson", "Courtney", "Courtney Fortson", False], [1504, "Fortson", "Danny", "Danny Fortson", False], @@ -1304,11 +1324,11 @@ [76748, "Frank", "Tellis", "Tellis Frank", False], [76749, "Frankel", "Nat", "Nat Frankel", False], [203479, "Franklin", "Jamaal", "Jamaal Franklin", False], - [1626187, "Frazier", "Michael", "Michael Frazier", True], [204025, "Frazier", "Tim", "Tim Frazier", True], [76750, "Frazier", "Walt", "Walt Frazier", False], [76751, "Frazier", "Will", "Will Frazier", False], - [1628982, "Frazier Jr.", "Melvin", "Melvin Frazier Jr.", True], + [1626187, "Frazier II", "Michael", "Michael Frazier II", False], + [1628982, "Frazier Jr.", "Melvin", "Melvin Frazier Jr.", False], [76752, "Frederick", "Anthony", "Anthony Frederick", False], [202690, "Fredette", "Jimmer", "Jimmer Fredette", False], [76753, "Free", "World", "World Free", False], @@ -1413,6 +1433,7 @@ [201821, "Gilder", "Trey", "Trey Gilder", False], [1628385, "Giles III", "Harry", "Harry Giles III", True], [1628983, "Gilgeous-Alexander", "Shai", "Shai Gilgeous-Alexander", True], + [1630264, "Gill", "Anthony", "Anthony Gill", True], [2109, "Gill", "Eddie", "Eddie Gill", False], [383, "Gill", "Kendall", "Kendall Gill", False], [76812, "Gillery", "Ben", "Ben Gillery", False], @@ -1468,7 +1489,7 @@ [76841, "Graham", "Orlando", "Orlando Graham", False], [76842, "Graham", "Paul", "Paul Graham", False], [101211, "Graham", "Stephen", "Stephen Graham", False], - [1626203, "Graham", "Treveon", "Treveon Graham", True], + [1626203, "Graham", "Treveon", "Treveon Graham", False], [76844, "Grandholm", "Jim", "Jim Grandholm", False], [97, "Grandison", "Ronnie", "Ronnie Grandison", False], [101122, "Granger", "Danny", "Danny Granger", False], @@ -1492,7 +1513,7 @@ [1516, "Gray", "Ed", "Ed Gray", False], [1026, "Gray", "Evric", "Evric Gray", False], [76859, "Gray", "Gary", "Gary Gray", False], - [1627982, "Gray", "Josh", "Josh Gray", True], + [1627982, "Gray", "Josh", "Josh Gray", False], [76860, "Gray", "Leonard", "Leonard Gray", False], [76861, "Gray", "Stuart", "Stuart Gray", False], [76862, "Gray", "Sylvester", "Sylvester Gray", False], @@ -1504,11 +1525,12 @@ [101209, "Green", "Devin", "Devin Green", False], [203110, "Green", "Draymond", "Draymond Green", True], [203475, "Green", "Erick", "Erick Green", False], - [101123, "Green", "Gerald", "Gerald Green", True], + [101123, "Green", "Gerald", "Gerald Green", False], [203210, "Green", "JaMychal", "JaMychal Green", True], [1629750, "Green", "Javonte", "Javonte Green", True], [201145, "Green", "Jeff", "Jeff Green", True], [76867, "Green", "Johnny", "Johnny Green", False], + [1630182, "Green", "Josh", "Josh Green", True], [76868, "Green", "Ken", "Ken Green", False], [76869, "Green", "Kenny", "Kenny Green", False], [600011, "Green", "Lamar", "Lamar Green", False], @@ -1552,7 +1574,7 @@ [76899, "Grunfeld", "Ernie", "Ernie Grunfeld", False], [76900, "Guarilia", "Gene", "Gene Guarilia", False], [76901, "Gudmundsson", "Petur", "Petur Gudmundsson", False], - [1629741, "Guduric", "Marko", "Marko Guduric", True], + [1629741, "Guduric", "Marko", "Marko Guduric", False], [76902, "Guerin", "Richie", "Richie Guerin", False], [339, "Gugliotta", "Tom", "Tom Gugliotta", False], [76903, "Guibert", "Andres", "Andres Guibert", False], @@ -1572,6 +1594,7 @@ [76911, "Haffner", "Scott", "Scott Haffner", False], [76912, "Hagan", "Cliff", "Cliff Hagan", False], [76913, "Hagan", "Glenn", "Glenn Hagan", False], + [1630204, "Hagans", "Ashton", "Ashton Hagans", True], [76914, "Hahn", "Bob", "Bob Hahn", False], [76915, "Hairston", "Al", "Al Hairston", False], [76916, "Hairston", "Happy", "Happy Hairston", False], @@ -1583,8 +1606,11 @@ [76919, "Halbrook", "Harvey", "Harvey Halbrook", False], [76920, "Hale", "Bruce", "Bruce Hale", False], [917, "Haley", "Jack", "Jack Haley", False], + [1630169, "Haliburton", "Tyrese", "Tyrese Haliburton", True], [76922, "Halimon", "Shaler", "Shaler Halimon", False], - [1628985, "Hall", "Devon", "Devon Hall", True], + [1628985, "Hall", "Devon", "Devon Hall", False], + [1629743, "Hall", "Donta", "Donta Hall", False], + [1630221, "Hall", "Josh", "Josh Hall", True], [200837, "Hall", "Mike", "Mike Hall", False], [76923, "Halliburton", "Jeff", "Jeff Halliburton", False], [1032, "Ham", "Darvin", "Darvin Ham", False], @@ -1604,6 +1630,7 @@ [903, "Hammink", "Geert", "Geert Hammink", False], [67, "Hammonds", "Tom", "Tom Hammonds", False], [1627773, "Hammons", "AJ", "AJ Hammons", False], + [1630181, "Hampton", "R.J.", "R.J. Hampton", True], [241, "Hancock", "Darrin", "Darrin Hancock", False], [1052, "Handlogten", "Ben", "Ben Handlogten", False], [76935, "Hankins", "Cecil", "Cecil Hankins", False], @@ -1653,6 +1680,7 @@ [2734, "Harris", "Devin", "Devin Harris", False], [203548, "Harris", "Elias", "Elias Harris", False], [203914, "Harris", "Gary", "Gary Harris", True], + [1630223, "Harris", "Jalen", "Jalen Harris", True], [203925, "Harris", "Joe", "Joe Harris", True], [446, "Harris", "Lucious", "Lucious Harris", False], [202412, "Harris", "Manny", "Manny Harris", False], @@ -1696,6 +1724,7 @@ [76979, "Hayes", "Elvin", "Elvin Hayes", False], [2553, "Hayes", "Jarvis", "Jarvis Hayes", False], [1629637, "Hayes", "Jaxson", "Jaxson Hayes", True], + [1630165, "Hayes", "Killian", "Killian Hayes", True], [1628502, "Hayes", "Nigel", "Nigel Hayes", False], [76980, "Hayes", "Steve", "Steve Hayes", False], [202330, "Hayward", "Gordon", "Gordon Hayward", True], @@ -1733,11 +1762,11 @@ [1627988, "Henry", "Myke", "Myke Henry", False], [77003, "Henry", "Skeeter", "Skeeter Henry", False], [202333, "Henry", "Xavier", "Xavier Henry", False], - [203089, "Henson", "John", "John Henson", True], + [203089, "Henson", "John", "John Henson", False], [1667, "Henson", "Steve", "Steve Henson", False], [77006, "Herman", "Bill", "Bill Herman", False], [77007, "Hermsen", "Clarence", "Clarence Hermsen", False], - [1629608, "Hernandez", "Dewan", "Dewan Hernandez", True], + [1629608, "Hernandez", "Dewan", "Dewan Hernandez", False], [1627823, "Hernangomez", "Juancho", "Juancho Hernangomez", True], [1626195, "Hernangomez", "Willy", "Willy Hernangomez", True], [1914, "Herren", "Chris", "Chris Herren", False], @@ -1746,12 +1775,12 @@ [1629639, "Herro", "Tyler", "Tyler Herro", True], [77010, "Herron", "Keith", "Keith Herron", False], [77011, "Hertzberg", "Sidney", "Sidney Hertzberg", False], - [1628987, "Hervey", "Kevin", "Kevin Hervey", True], + [1628987, "Hervey", "Kevin", "Kevin Hervey", False], [77012, "Hetzel", "Fred", "Fred Hetzel", False], [77013, "Hewitt", "Bill", "Bill Hewitt", False], [77014, "Hewson", "Jack", "Jack Hewson", False], [77015, "Heyman", "Art", "Art Heyman", False], - [1626209, "Hezonja", "Mario", "Mario Hezonja", True], + [1626209, "Hezonja", "Mario", "Mario Hezonja", False], [201579, "Hibbert", "Roy", "Roy Hibbert", False], [77016, "Hickey", "Matthew", "Matthew Hickey", False], [1628439, "Hicks", "Isaiah", "Isaiah Hicks", False], @@ -1782,10 +1811,11 @@ [77029, "Hilton", "Fred", "Fred Hilton", False], [2550, "Hinrich", "Kirk", "Kirk Hinrich", False], [77030, "Hinson", "Roy", "Roy Hinson", False], + [1630207, "Hinton", "Nate", "Nate Hinton", True], [77031, "Hirsch", "Mel", "Mel Hirsch", False], [77032, "Hitch", "Lew", "Lew Hitch", False], [200823, "Hite", "Robert", "Robert Hite", False], - [1629658, "Hoard", "Jaylen", "Jaylen Hoard", True], + [1629658, "Hoard", "Jaylen", "Jaylen Hoard", False], [202359, "Hobson", "Darington", "Darington Hobson", False], [1106, "Hodge", "Donald", "Donald Hodge", False], [101125, "Hodge", "Julius", "Julius Hodge", False], @@ -1807,7 +1837,7 @@ [77043, "Hollins", "Lionel", "Lionel Hollins", False], [200797, "Hollins", "Ryan", "Ryan Hollins", False], [77044, "Hollis", "Essie", "Essie Hollis", False], - [1626178, "Hollis-Jefferson", "Rondae", "Rondae Hollis-Jefferson", True], + [1626178, "Hollis-Jefferson", "Rondae", "Rondae Hollis-Jefferson", False], [1626158, "Holmes", "Richaun", "Richaun Holmes", True], [77045, "Holstein", "Jim", "Jim Holstein", False], [77046, "Holt", "Alvin", "Alvin Holt", False], @@ -1846,10 +1876,11 @@ [77066, "Howard", "Greg", "Greg Howard", False], [2572, "Howard", "Josh", "Josh Howard", False], [436, "Howard", "Juwan", "Juwan Howard", False], + [1630210, "Howard", "Markus", "Markus Howard", True], [77067, "Howard", "Mo", "Mo Howard", False], [77069, "Howard", "Otis", "Otis Howard", False], [1128, "Howard", "Stephen", "Stephen Howard", False], - [1629739, "Howard", "William", "William Howard", True], + [1629739, "Howard", "William", "William Howard", False], [77070, "Howell", "Bailey", "Bailey Howell", False], [77072, "Hubbard", "Bob", "Bob Hubbard", False], [77071, "Hubbard", "Phil", "Phil Hubbard", False], @@ -1862,6 +1893,7 @@ [1572, "Huffman", "Nate", "Nate Huffman", False], [77076, "Hughes", "Alfredrick", "Alfredrick Hughes", False], [77077, "Hughes", "Eddie", "Eddie Hughes", False], + [1630190, "Hughes", "Elijah", "Elijah Hughes", True], [77078, "Hughes", "Kim", "Kim Hughes", False], [1716, "Hughes", "Larry", "Larry Hughes", False], [1965, "Hughes", "Rick", "Rick Hughes", False], @@ -1895,7 +1927,7 @@ [2738, "Iguodala", "Andre", "Andre Iguodala", True], [980, "Ilgauskas", "Zydrunas", "Zydrunas Ilgauskas", False], [101148, "Ilic", "Mile", "Mile Ilic", False], - [101141, "Ilyasova", "Ersan", "Ersan Ilyasova", True], + [101141, "Ilyasova", "Ersan", "Ersan Ilyasova", False], [77093, "Imhoff", "Darrall", "Darrall Imhoff", False], [77094, "Ingelsby", "Tom", "Tom Ingelsby", False], [204060, "Ingles", "Joe", "Joe Ingles", True], @@ -1970,7 +2002,7 @@ [2423, "Jefferies", "Chris", "Chris Jefferies", False], [201785, "Jeffers", "Othyus", "Othyus Jeffers", False], [2744, "Jefferson", "Al", "Al Jefferson", False], - [1628518, "Jefferson", "Amile", "Amile Jefferson", True], + [1628518, "Jefferson", "Amile", "Amile Jefferson", False], [203928, "Jefferson", "Cory", "Cory Jefferson", False], [200971, "Jefferson", "Dontell", "Dontell Jefferson", False], [2210, "Jefferson", "Richard", "Richard Jefferson", False], @@ -1988,16 +2020,17 @@ [201998, "Jerrells", "Curtis", "Curtis Jerrells", False], [203511, "Jerrett", "Grant", "Grant Jerrett", False], [200817, "Jeter", "Pooh", "Pooh Jeter", False], + [1630198, "Joe", "Isaiah", "Isaiah Joe", True], [2639, "Johnsen", "Britton", "Britton Johnsen", False], [200792, "Johnson", "Alexander", "Alexander Johnson", False], - [1628993, "Johnson", "Alize", "Alize Johnson", True], + [1628993, "Johnson", "Alize", "Alize Johnson", False], [101161, "Johnson", "Amir", "Amir Johnson", False], [77131, "Johnson", "Andy", "Andy Johnson", False], [1533, "Johnson", "Anthony", "Anthony Johnson", False], [202356, "Johnson", "Armon", "Armon Johnson", False], [77132, "Johnson", "Arnie", "Arnie Johnson", False], [422, "Johnson", "Avery", "Avery Johnson", False], - [1629168, "Johnson", "BJ", "BJ Johnson", True], + [1629168, "Johnson", "BJ", "BJ Johnson", False], [1627744, "Johnson", "Brice", "Brice Johnson", False], [77130, "Johnson", "Buck", "Buck Johnson", False], [1629661, "Johnson", "Cameron", "Cameron Johnson", True], @@ -2098,6 +2131,7 @@ [77189, "Jones", "Major", "Major Jones", False], [2891, "Jones", "Mark", "Mark Jones", False], [90000, "Jones", "Mark", "Mark Jones", False], + [1630222, "Jones", "Mason", "Mason Jones", True], [77195, "Jones", "Nick", "Nick Jones", False], [77191, "Jones", "Ozell", "Ozell Jones", False], [461, "Jones", "Popeye", "Popeye Jones", False], @@ -2108,6 +2142,7 @@ [200780, "Jones", "Solomon", "Solomon Jones", False], [77197, "Jones", "Steve", "Steve Jones", False], [203093, "Jones", "Terrence", "Terrence Jones", False], + [1630200, "Jones", "Tre", "Tre Jones", True], [1626145, "Jones", "Tyus", "Tyus Jones", True], [77198, "Jones", "Wali", "Wali Jones", False], [77199, "Jones", "Wallace", "Wallace Jones", False], @@ -2185,9 +2220,9 @@ [705, "Keys", "Randolph", "Randolph Keys", False], [2751, "Khryapa", "Viktor", "Viktor Khryapa", False], [467, "Kidd", "Jason", "Jason Kidd", False], - [1629742, "Kidd", "Stanton", "Stanton Kidd", True], + [1629742, "Kidd", "Stanton", "Stanton Kidd", False], [77254, "Kidd", "Warren", "Warren Kidd", False], - [203077, "Kidd-Gilchrist", "Michael", "Michael Kidd-Gilchrist", True], + [203077, "Kidd-Gilchrist", "Michael", "Michael Kidd-Gilchrist", False], [77255, "Kiffin", "Irv", "Irv Kiffin", False], [77256, "Kiley", "Jack", "Jack Kiley", False], [77257, "Killum", "Ernie", "Ernie Killum", False], @@ -2207,7 +2242,7 @@ [1562, "King", "Gerard", "Gerard King", False], [77270, "King", "Jim", "Jim King", False], [728, "King", "Jimmy", "Jimmy King", False], - [1629663, "King", "Louis", "Louis King", True], + [1629663, "King", "Louis", "Louis King", False], [77272, "King", "Maury", "Maury King", False], [77273, "King", "Reggie", "Reggie King", False], [1101, "King", "Rich", "Rich King", False], @@ -2231,8 +2266,9 @@ [77290, "Knight", "Billy", "Billy Knight", False], [77287, "Knight", "Bob", "Bob Knight", False], [2688, "Knight", "Brandin", "Brandin Knight", False], - [202688, "Knight", "Brandon", "Brandon Knight", True], + [202688, "Knight", "Brandon", "Brandon Knight", False], [1510, "Knight", "Brevin", "Brevin Knight", False], + [1630233, "Knight", "Nathan", "Nathan Knight", True], [1861, "Knight", "Negele", "Negele Knight", False], [77288, "Knight", "Ron", "Ron Knight", False], [77289, "Knight", "Toby", "Toby Knight", False], @@ -2253,7 +2289,7 @@ [77301, "Kornet", "Frank", "Frank Kornet", False], [1628436, "Kornet", "Luke", "Luke Kornet", True], [101117, "Korolev", "Yaroslav", "Yaroslav Korolev", False], - [2594, "Korver", "Kyle", "Kyle Korver", True], + [2594, "Korver", "Kyle", "Kyle Korver", False], [77302, "Kosmalski", "Len", "Len Kosmalski", False], [77303, "Kostecka", "Andy", "Andy Kostecka", False], [77304, "Kottman", "Harold", "Harold Kottman", False], @@ -2293,7 +2329,7 @@ [1601, "LaRue", "Rusty", "Rusty LaRue", False], [77340, "LaRusso", "Rudy", "Rudy LaRusso", False], [203897, "LaVine", "Zach", "Zach LaVine", True], - [1627746, "Labissiere", "Skal", "Skal Labissiere", True], + [1627746, "Labissiere", "Skal", "Skal Labissiere", False], [77326, "Lacey", "Sam", "Sam Lacey", False], [363, "Laettner", "Christian", "Christian Laettner", False], [201802, "Lafayette", "Oliver", "Oliver Lafayette", False], @@ -2333,7 +2369,7 @@ [77346, "Lavelli", "Tony", "Tony Lavelli", False], [77347, "Lavoy", "Bob", "Bob Lavoy", False], [201151, "Law", "Acie", "Acie Law", False], - [1629724, "Law", "Vic", "Vic Law", True], + [1629724, "Law", "Vic", "Vic Law", False], [202371, "Lawal", "Gani", "Gani Lawal", False], [77348, "Lawrence", "Ed", "Ed Lawrence", False], [1535, "Lawson", "Jason", "Jason Lawson", False], @@ -2341,7 +2377,7 @@ [1627774, "Layman", "Jake", "Jake Layman", True], [77350, "Layton", "Dennis", "Dennis Layton", False], [1627747, "LeVert", "Caris", "Caris LeVert", True], - [1628388, "Leaf", "TJ", "TJ Leaf", True], + [1628388, "Leaf", "T.J.", "T.J. Leaf", False], [77351, "Leaks", "Emanuel", "Emanuel Leaks", False], [77352, "Lear", "Hal", "Hal Lear", False], [77353, "Leavell", "Allen", "Allen Leavell", False], @@ -2351,7 +2387,7 @@ [203495, "Ledo", "Ricky", "Ricky Ledo", False], [77356, "Lee", "Butch", "Butch Lee", False], [77357, "Lee", "Clyde", "Clyde Lee", False], - [201584, "Lee", "Courtney", "Courtney Lee", True], + [201584, "Lee", "Courtney", "Courtney Lee", False], [1627814, "Lee", "Damion", "Damion Lee", True], [101135, "Lee", "David", "David Lee", False], [77358, "Lee", "Doug", "Doug Lee", False], @@ -2363,6 +2399,7 @@ [77363, "Lee", "Rock", "Rock Lee", False], [77364, "Lee", "Ron", "Ron Lee", False], [77365, "Lee", "Russell", "Russell Lee", False], + [1630240, "Lee", "Saben", "Saben Lee", True], [77366, "Leede", "Ed", "Ed Leede", False], [77367, "Lefkowitz", "Hank", "Hank Lefkowitz", False], [100, "Legler", "Tim", "Tim Legler", False], @@ -2392,6 +2429,7 @@ [77383, "Lewis", "Ralph", "Ralph Lewis", False], [1740, "Lewis", "Rashard", "Rashard Lewis", False], [77384, "Lewis", "Reggie", "Reggie Lewis", False], + [1630184, "Lewis Jr.", "Kira", "Kira Lewis Jr.", True], [77386, "Liberty", "Marcus", "Marcus Liberty", False], [77387, "Lichti", "Todd", "Todd Lichti", False], [202732, "Liggins", "DeAndre", "DeAndre Liggins", False], @@ -2473,7 +2511,7 @@ [77435, "Macklin", "Rudy", "Rudy Macklin", False], [202731, "Macklin", "Vernon", "Vernon Macklin", False], [77436, "Macknowski", "Johnny", "Johnny Macknowski", False], - [1629133, "Macon", "Daryl", "Daryl Macon", True], + [1629133, "Macon", "Daryl", "Daryl Macon", False], [1855, "Macon", "Mark", "Mark Macon", False], [1629122, "Macura", "J.P.", "J.P. Macura", False], [77438, "Macy", "Kyle", "Kyle Macy", False], @@ -2482,11 +2520,12 @@ [1666, "Madkins", "Gerald", "Gerald Madkins", False], [2058, "Madsen", "Mark", "Mark Madsen", False], [77441, "Mager", "Norm", "Norm Mager", False], - [203705, "Magette", "Josh", "Josh Magette", True], + [203705, "Magette", "Josh", "Josh Magette", False], [1894, "Maggette", "Corey", "Corey Maggette", False], [77442, "Magley", "Dave", "Dave Magley", False], [2048, "Magloire", "Jamaal", "Jamaal Magloire", False], - [101133, "Mahinmi", "Ian", "Ian Mahinmi", True], + [1630266, "Magnay", "Will", "Will Magnay", True], + [101133, "Mahinmi", "Ian", "Ian Mahinmi", False], [77443, "Mahnken", "John", "John Mahnken", False], [77444, "Mahoney", "Francis", "Francis Mahoney", False], [328, "Mahorn", "Rick", "Rick Mahorn", False], @@ -2494,6 +2533,7 @@ [200970, "Major", "Renaldo", "Renaldo Major", False], [1627748, "Maker", "Thon", "Thon Maker", True], [77447, "Malamed", "Lionel", "Lionel Malamed", False], + [1630177, "Maledon", "Theo", "Theo Maledon", True], [117, "Malone", "Jeff", "Jeff Malone", False], [252, "Malone", "Karl", "Karl Malone", False], [77449, "Malone", "Moses", "Moses Malone", False], @@ -2501,12 +2541,14 @@ [77450, "Malovic", "Steve", "Steve Malovic", False], [77451, "Manakas", "Ted", "Ted Manakas", False], [77452, "Mandic", "John", "John Mandic", False], + [1630211, "Mane", "Karim", "Karim Mane", True], [77453, "Mangiapane", "Frank", "Frank Mangiapane", False], [986, "Mann", "Marcus", "Marcus Mann", False], [1629611, "Mann", "Terance", "Terance Mann", True], [330, "Manning", "Danny", "Danny Manning", False], [77454, "Manning", "Ed", "Ed Manning", False], [316, "Manning", "Richard", "Richard Manning", False], + [1630185, "Mannion", "Nico", "Nico Mannion", True], [77456, "Mannion", "Pace", "Pace Mannion", False], [77457, "Mantis", "Nick", "Nick Mantis", False], [77459, "Maravich", "Pete", "Pete Maravich", False], @@ -2528,6 +2570,7 @@ [681, "Marshall", "Donny", "Donny Marshall", False], [923, "Marshall", "Donyell", "Donyell Marshall", False], [203088, "Marshall", "Kendall", "Kendall Marshall", False], + [1630230, "Marshall", "Naji", "Naji Marshall", True], [101185, "Marshall", "Rawle", "Rawle Marshall", False], [77467, "Marshall", "Tom", "Tom Marshall", False], [77468, "Marshall", "Vester", "Vester Marshall", False], @@ -2544,7 +2587,7 @@ [77472, "Martin", "Fernando", "Fernando Martin", False], [1626185, "Martin", "Jarell", "Jarell Martin", False], [77474, "Martin", "Jeff", "Jeff Martin", False], - [1629725, "Martin", "Jeremiah", "Jeremiah Martin", True], + [1629725, "Martin", "Jeremiah", "Jeremiah Martin", False], [1629103, "Martin", "Kelan", "Kelan Martin", True], [2030, "Martin", "Kenyon", "Kenyon Martin", False], [2755, "Martin", "Kevin", "Kevin Martin", False], @@ -2553,21 +2596,24 @@ [77477, "Martin", "Phil", "Phil Martin", False], [77479, "Martin", "Ronald", "Ronald Martin", False], [77480, "Martin", "Slater", "Slater Martin", False], + [1630231, "Martin Jr.", "Kenyon", "Kenyon Martin Jr.", True], [469, "Mashburn", "Jamal", "Jamal Mashburn", False], [77482, "Masino", "Al", "Al Masino", False], [193, "Mason", "Anthony", "Anthony Mason", False], [2046, "Mason", "Desmond", "Desmond Mason", False], - [1628412, "Mason", "Frank", "Frank Mason", True], + [1628412, "Mason", "Frank", "Frank Mason", False], [2427, "Mason Jr.", "Roger", "Roger Mason Jr.", False], [763, "Massenburg", "Tony", "Tony Massenburg", False], [77483, "Mast", "Eddie", "Eddie Mast", False], [1628999, "Maten", "Yante", "Yante Maten", False], [1629726, "Mathews", "Garrison", "Garrison Mathews", True], [1628493, "Mathiang", "Mangok", "Mangok Mathiang", False], + [1629751, "Mathias", "Dakota", "Dakota Mathias", True], [77484, "Matthews", "Wes", "Wes Matthews", False], [202083, "Matthews", "Wesley", "Wesley Matthews", True], [77485, "Maughan", "Ariel", "Ariel Maughan", False], [77486, "Maxey", "Marlon", "Marlon Maxey", False], + [1630178, "Maxey", "Tyrese", "Tyrese Maxey", True], [101131, "Maxiell", "Jason", "Jason Maxiell", False], [77487, "Maxwell", "Cedric", "Cedric Maxwell", False], [137, "Maxwell", "Vernon", "Vernon Maxwell", False], @@ -2581,6 +2627,7 @@ [77494, "Mayfield", "Ken", "Ken Mayfield", False], [201953, "Maynor", "Eric", "Eric Maynor", False], [201564, "Mayo", "O.J.", "O.J. Mayo", False], + [1630219, "Mays", "Skylar", "Skylar Mays", True], [77496, "Mays", "Travis", "Travis Mays", False], [77497, "Mazza", "Matt", "Matt Mazza", False], [201601, "Mbah a Moute", "Luc", "Luc Mbah a Moute", False], @@ -2624,10 +2671,12 @@ [77520, "McCullough", "John", "John McCullough", False], [723, "McDaniel", "Clint", "Clint McDaniel", False], [1365, "McDaniel", "Xavier", "Xavier McDaniel", False], + [1630183, "McDaniels", "Jaden", "Jaden McDaniels", True], [1629667, "McDaniels", "Jalen", "Jalen McDaniels", True], [77523, "McDaniels", "Jim", "Jim McDaniels", False], [203909, "McDaniels", "KJ", "KJ McDaniels", False], [203926, "McDermott", "Doug", "Doug McDermott", True], + [1630253, "McDermott", "Sean", "Sean McDermott", True], [77524, "McDonald", "Ben", "Ben McDonald", False], [77525, "McDonald", "Glenn", "Glenn McDonald", False], [1075, "McDonald", "Michael", "Michael McDonald", False], @@ -2685,7 +2734,7 @@ [77563, "McNulty", "Carl", "Carl McNulty", False], [2101, "McPherson", "Paul", "Paul McPherson", False], [77565, "McQueen", "Cozell", "Cozell McQueen", False], - [203895, "McRae", "Jordan", "Jordan McRae", True], + [203895, "McRae", "Jordan", "Jordan McRae", False], [77566, "McReynolds", "Thales", "Thales McReynolds", False], [201177, "McRoberts", "Josh", "Josh McRoberts", False], [77567, "McWilliams", "Eric", "Eric McWilliams", False], @@ -2714,6 +2763,7 @@ [1500, "Mercer", "Ron", "Ron Mercer", False], [77582, "Meriweather", "Joe", "Joe Meriweather", False], [77583, "Meriwether", "Porter", "Porter Meriwether", False], + [1630241, "Merrill", "Sam", "Sam Merrill", True], [77584, "Meschery", "Tom", "Tom Meschery", False], [1629002, "Metu", "Chimezie", "Chimezie Metu", True], [684, "Meyer", "Loren", "Loren Meyer", False], @@ -2724,13 +2774,14 @@ [203114, "Middleton", "Khris", "Khris Middleton", True], [77589, "Mihalik", "Zigmund", "Zigmund Mihalik", False], [2036, "Mihm", "Chris", "Chris Mihm", False], + [1628450, "Mika", "Eric", "Eric Mika", False], [77590, "Mikan", "Ed", "Ed Mikan", False], [600012, "Mikan", "George", "George Mikan", False], [77591, "Mikan", "Larry", "Larry Mikan", False], [77593, "Mikkelsen", "Vern", "Vern Mikkelsen", False], [77594, "Miksis", "Al", "Al Miksis", False], [101223, "Miles", "Aaron", "Aaron Miles", False], - [101139, "Miles", "CJ", "CJ Miles", True], + [101139, "Miles", "CJ", "CJ Miles", False], [2032, "Miles", "Darius", "Darius Miles", False], [77596, "Miles", "Eddie", "Eddie Miles", False], [1527, "Milic", "Marko", "Marko Milic", False], @@ -2746,7 +2797,7 @@ [77599, "Miller", "Eddie", "Eddie Miller", False], [77600, "Miller", "Harry", "Harry Miller", False], [77601, "Miller", "Jay", "Jay Miller", False], - [1626259, "Miller", "Malcolm", "Malcolm Miller", True], + [1626259, "Miller", "Malcolm", "Malcolm Miller", False], [2034, "Miller", "Mike", "Mike Miller", False], [932, "Miller", "Oliver", "Oliver Miller", False], [203113, "Miller", "Quincy", "Quincy Miller", False], @@ -2774,7 +2825,7 @@ [77614, "Mitchell", "Todd", "Todd Mitchell", False], [203183, "Mitchell", "Tony", "Tony Mitchell", False], [203502, "Mitchell", "Tony", "Tony Mitchell", False], - [1628513, "Mitrou-Long", "Naz", "Naz Mitrou-Long", True], + [1628513, "Mitrou-Long", "Naz", "Naz Mitrou-Long", False], [77618, "Mix", "Steve", "Steve Mix", False], [77619, "Mlkvy", "Bill", "Bill Mlkvy", False], [1749, "Mobley", "Cuttino", "Cuttino Mobley", False], @@ -2799,7 +2850,7 @@ [376, "Montross", "Eric", "Eric Montross", False], [200081, "Moon", "Jamario", "Jamario Moon", False], [77631, "Mooney", "Jim", "Jim Mooney", False], - [1629760, "Mooney", "Matt", "Matt Mooney", True], + [1629760, "Mooney", "Matt", "Matt Mooney", False], [77632, "Moore", "Andre", "Andre Moore", False], [1628500, "Moore", "Ben", "Ben Moore", False], [202734, "Moore", "E'Twaun", "E'Twaun Moore", True], @@ -2839,15 +2890,16 @@ [77654, "Moss", "Perry", "Perry Moss", False], [734, "Moten", "Lawrence", "Lawrence Moten", False], [202700, "Motiejunas", "Donatas", "Donatas Motiejunas", False], - [1628405, "Motley", "Johnathan", "Johnathan Motley", True], + [1628405, "Motley", "Johnathan", "Johnathan Motley", False], [2069, "Mottola", "Hanno", "Hanno Mottola", False], [203102, "Moultrie", "Arnett", "Arnett Moultrie", False], [297, "Mourning", "Alonzo", "Alonzo Mourning", False], [202389, "Mozgov", "Timofey", "Timofey Mozgov", False], [77657, "Mrazovich", "Chuck", "Chuck Mrazovich", False], - [1626144, "Mudiay", "Emmanuel", "Emmanuel Mudiay", True], + [1626144, "Mudiay", "Emmanuel", "Emmanuel Mudiay", False], [77658, "Mueller", "Erwin", "Erwin Mueller", False], [203498, "Muhammad", "Shabazz", "Shabazz Muhammad", False], + [1628539, "Mulder", "Mychal", "Mychal Mulder", True], [77659, "Mullaney", "Joe", "Joe Mullaney", False], [77660, "Mullens", "Bob", "Bob Mullens", False], [201957, "Mullens", "Byron", "Byron Mullens", False], @@ -2877,7 +2929,7 @@ [145, "Murray", "Tracy", "Tracy Murray", False], [77676, "Murrey", "Dorie", "Dorie Murrey", False], [203315, "Murry", "Toure'", "Toure' Murry", False], - [1629058, "Musa", "Dzanan", "Dzanan Musa", True], + [1629058, "Musa", "Dzanan", "Dzanan Musa", False], [203488, "Muscala", "Mike", "Mike Muscala", True], [77677, "Musi", "Angelo", "Angelo Musi", False], [1054, "Mustaf", "Jerrod", "Jerrod Mustaf", False], @@ -2885,7 +2937,7 @@ [982, "Muursepp", "Martin", "Martin Muursepp", False], [939, "Myers", "Pete", "Pete Myers", False], [1629004, "Mykhailiuk", "Svi", "Svi Mykhailiuk", True], - [1626122, "N'diaye", "Makhtar", "Makhtar N'diaye", False], + [1823, "N'diaye", "Makhtar", "Makhtar N'diaye", False], [2055, "N'diaye", "Mamadou", "Mamadou N'diaye", False], [77681, "Naber", "Bob", "Bob Naber", False], [77682, "Nachamkin", "Boris", "Boris Nachamkin", False], @@ -2897,7 +2949,7 @@ [2059, "Najera", "Eduardo", "Eduardo Najera", False], [77685, "Nance", "Larry", "Larry Nance", False], [1626204, "Nance Jr.", "Larry", "Larry Nance Jr.", True], - [203894, "Napier", "Shabazz", "Shabazz Napier", True], + [203894, "Napier", "Shabazz", "Shabazz Napier", False], [77686, "Napolitano", "Paul", "Paul Napolitano", False], [77688, "Nash", "Bob", "Bob Nash", False], [77687, "Nash", "Charles", "Charles Nash", False], @@ -2924,8 +2976,9 @@ [2749, "Nelson", "Jameer", "Jameer Nelson", False], [77701, "Nelson", "Louie", "Louie Nelson", False], [1129, "Nembhard", "Ruben", "Ruben Nembhard", False], - [2403, "Nene", "", "Nene", True], + [2403, "Nene", "", "Nene", False], [1838, "Nesby", "Tyrone", "Tyrone Nesby", False], + [1630174, "Nesmith", "Aaron", "Aaron Nesmith", True], [77704, "Nessley", "Martin", "Martin Nessley", False], [1725, "Nesterovic", "Rasho", "Rasho Nesterovic", False], [203526, "Neto", "Raul", "Raul Neto", True], @@ -2937,6 +2990,7 @@ [1956, "Newble", "Ira", "Ira Newble", False], [77710, "Newlin", "Mike", "Mike Newlin", False], [271, "Newman", "Johnny", "Johnny Newman", False], + [1629005, "Newman", "Malik", "Malik Newman", False], [77712, "Newmark", "Dave", "Dave Newmark", False], [1627777, "Niang", "Georges", "Georges Niang", True], [201193, "Nichols", "Demetris", "Demetris Nichols", False], @@ -2950,6 +3004,7 @@ [77719, "Nimphius", "Kurt", "Kurt Nimphius", False], [77720, "Nix", "Dyron", "Dyron Nix", False], [77721, "Nixon", "Norm", "Norm Nixon", False], + [1630192, "Nnaji", "Zeke", "Zeke Nnaji", True], [201149, "Noah", "Joakim", "Joakim Noah", False], [77722, "Noble", "Chuck", "Chuck Noble", False], [2804, "Nocioni", "Andres", "Andres Nocioni", False], @@ -2967,7 +3022,7 @@ [77731, "Norris", "Audie", "Audie Norris", False], [983, "Norris", "Moochie", "Moochie Norris", False], [77732, "Norris", "Sylvester", "Sylvester Norris", False], - [1629668, "Norvell Jr.", "Zach", "Zach Norvell Jr.", True], + [1629668, "Norvell Jr.", "Zach", "Zach Norvell Jr.", False], [77733, "Norwood", "Willie", "Willie Norwood", False], [77734, "Nostrand", "George", "George Nostrand", False], [77735, "Noszka", "Stan", "Stan Noszka", False], @@ -2982,6 +3037,7 @@ [203994, "Nurkic", "Jusuf", "Jusuf Nurkic", True], [77738, "Nutt", "Dennis", "Dennis Nutt", False], [1628021, "Nwaba", "David", "David Nwaba", True], + [1629670, "Nwora", "Jordan", "Jordan Nwora", True], [1022, "Nwosu", "Julius", "Julius Nwosu", False], [1525, "O'Bannon", "Charles", "Charles O'Bannon", False], [709, "O'Bannon", "Ed", "Ed O'Bannon", False], @@ -3002,7 +3058,7 @@ [406, "O'Neal", "Shaquille", "Shaquille O'Neal", False], [1626220, "O'Neale", "Royce", "Royce O'Neale", True], [77767, "O'Neill", "Mike", "Mike O'Neill", False], - [203124, "O'Quinn", "Kyle", "Kyle O'Quinn", True], + [203124, "O'Quinn", "Kyle", "Kyle O'Quinn", False], [77773, "O'Shea", "Kevin", "Kevin O'Shea", False], [77774, "O'Shields", "Garland", "Garland O'Shields", False], [77776, "O'Sullivan", "Dan", "Dan O'Sullivan", False], @@ -3019,8 +3075,11 @@ [1628400, "Ojeleye", "Semi", "Semi Ojeleye", True], [2731, "Okafor", "Emeka", "Emeka Okafor", False], [1626143, "Okafor", "Jahlil", "Jahlil Okafor", True], - [1629059, "Okobo", "Elie", "Elie Okobo", True], + [1629643, "Okeke", "Chuma", "Chuma Okeke", True], + [1629059, "Okobo", "Elie", "Elie Okobo", False], [1629006, "Okogie", "Josh", "Josh Okogie", True], + [1630168, "Okongwu", "Onyeka", "Onyeka Okongwu", True], + [1630171, "Okoro", "Isaac", "Isaac Okoro", True], [1629644, "Okpala", "KZ", "KZ Okpala", True], [2246, "Okur", "Mehmet", "Mehmet Okur", False], [203506, "Oladipo", "Victor", "Victor Oladipo", True], @@ -3053,6 +3112,7 @@ [77777, "Othick", "Matt", "Matt Othick", False], [77778, "Otten", "Don", "Don Otten", False], [77779, "Otten", "Mac", "Mac Otten", False], + [1630187, "Oturu", "Daniel", "Daniel Oturu", True], [1626162, "Oubre Jr.", "Kelly", "Kelly Oubre Jr.", True], [448, "Outlaw", "Bo", "Bo Outlaw", False], [2566, "Outlaw", "Travis", "Travis Outlaw", False], @@ -3066,7 +3126,7 @@ [77784, "Owens", "Jim", "Jim Owens", False], [77785, "Owens", "Keith", "Keith Owens", False], [202082, "Owens", "Larry", "Larry Owens", False], - [1629745, "Owens", "Tariq", "Tariq Owens", True], + [1629745, "Owens", "Tariq", "Tariq Owens", False], [77786, "Owens", "Tom", "Tom Owens", False], [1077, "Owes", "Ray", "Ray Owes", False], [2071, "Oyedeji", "Olumide", "Olumide Oyedeji", False], @@ -3100,7 +3160,7 @@ [77802, "Parr", "Jack", "Jack Parr", False], [77803, "Parrack", "Doyle", "Doyle Parrack", False], [77804, "Parsley", "Charlie", "Charlie Parsley", False], - [202718, "Parsons", "Chandler", "Chandler Parsons", True], + [202718, "Parsons", "Chandler", "Chandler Parsons", False], [1629672, "Paschall", "Eric", "Eric Paschall", True], [1628394, "Pasecniks", "Anzejs", "Anzejs Pasecniks", True], [1097, "Paspalj", "Zarko", "Zarko Paspalj", False], @@ -3116,7 +3176,7 @@ [77812, "Patterson", "Steve", "Steve Patterson", False], [77813, "Patterson", "Tommy", "Tommy Patterson", False], [77814, "Patterson", "Worthy", "Worthy Patterson", False], - [1628383, "Patton", "Justin", "Justin Patton", True], + [1628383, "Patton", "Justin", "Justin Patton", False], [203464, "Paul", "Brandon", "Brandon Paul", False], [101108, "Paul", "Chris", "Chris Paul", True], [77815, "Paulk", "Charlie", "Charlie Paulk", False], @@ -3128,13 +3188,13 @@ [77820, "Paxson", "John", "John Paxson", False], [77821, "Payak", "Johnny", "Johnny Payak", False], [203940, "Payne", "Adreian", "Adreian Payne", False], - [1626166, "Payne", "Cameron", "Cameron Payne", False], + [1626166, "Payne", "Cameron", "Cameron Payne", True], [77822, "Payne", "Kenny", "Kenny Payne", False], [77823, "Payne", "Tom", "Tom Payne", False], [203901, "Payton", "Elfrid", "Elfrid Payton", True], [56, "Payton", "Gary", "Gary Payton", False], [77824, "Payton", "Mel", "Mel Payton", False], - [1627780, "Payton II", "Gary", "Gary Payton II", True], + [1627780, "Payton II", "Gary", "Gary Payton II", False], [77825, "Pearcy", "George", "George Pearcy", False], [77826, "Pearcy", "Henry", "Henry Pearcy", False], [200762, "Pecherov", "Oleksiy", "Oleksiy Pecherov", False], @@ -3142,7 +3202,7 @@ [324, "Peeler", "Anthony", "Anthony Peeler", False], [201593, "Pekovic", "Nikola", "Nikola Pekovic", False], [77828, "Pelkington", "Jake", "Jake Pelkington", False], - [203658, "Pelle", "Norvel", "Norvel Pelle", True], + [203658, "Pelle", "Norvel", "Norvel Pelle", False], [77829, "Pellom", "Sam", "Sam Pellom", False], [2130, "Penberthy", "Mike", "Mike Penberthy", False], [2667, "Penigar", "Desmond", "Desmond Penigar", False], @@ -3156,6 +3216,7 @@ [1628506, "Perrantes", "London", "London Perrantes", False], [77835, "Perry", "Curtis", "Curtis Perry", False], [386, "Perry", "Elliot", "Elliot Perry", False], + [1629617, "Perry", "Reggie", "Reggie Perry", True], [897, "Perry", "Tim", "Tim Perry", False], [456, "Person", "Chuck", "Chuck Person", False], [445, "Person", "Wesley", "Wesley Person", False], @@ -3205,6 +3266,7 @@ [2750, "Podkolzin", "Pavel", "Pavel Podkolzin", False], [1627751, "Poeltl", "Jakob", "Jakob Poeltl", True], [1629738, "Poirier", "Vincent", "Vincent Poirier", True], + [1630197, "Pokusevski", "Aleksej", "Aleksej Pokusevski", True], [77866, "Polee", "Dwayne", "Dwayne Polee", False], [77867, "Pollard", "Jim", "Jim Pollard", False], [1513, "Pollard", "Scot", "Scot Pollard", False], @@ -3212,7 +3274,7 @@ [178, "Polynice", "Olden", "Olden Polynice", False], [77869, "Pondexter", "Cliff", "Cliff Pondexter", False], [202347, "Pondexter", "Quincy", "Quincy Pondexter", False], - [1629044, "Ponds", "Shamorie", "Shamorie Ponds", True], + [1629044, "Ponds", "Shamorie", "Shamorie Ponds", False], [1629673, "Poole", "Jordan", "Jordan Poole", True], [77870, "Pope", "David", "David Pope", False], [998, "Pope", "Mark", "Mark Pope", False], @@ -3220,6 +3282,7 @@ [77873, "Poquette", "Ben", "Ben Poquette", False], [2084, "Porter", "Chris", "Chris Porter", False], [77875, "Porter", "Howard", "Howard Porter", False], + [1629007, "Porter", "Jontay", "Jontay Porter", True], [77876, "Porter", "Kevin", "Kevin Porter", False], [345, "Porter", "Terry", "Terry Porter", False], [1629645, "Porter Jr.", "Kevin", "Kevin Porter Jr.", True], @@ -3255,6 +3318,7 @@ [2419, "Prince", "Tayshaun", "Tayshaun Prince", False], [77887, "Pritchard", "John", "John Pritchard", False], [340, "Pritchard", "Kevin", "Kevin Pritchard", False], + [1630202, "Pritchard", "Payton", "Payton Pritchard", True], [1919, "Profit", "Laron", "Laron Profit", False], [201172, "Pruitt", "Gabe", "Gabe Pruitt", False], [2038, "Przybilla", "Joel", "Joel Przybilla", False], @@ -3266,6 +3330,7 @@ [77891, "Putman", "Don", "Don Putman", False], [1627817, "Quarterman", "Tim", "Tim Quarterman", False], [77892, "Quick", "Bob", "Bob Quick", False], + [1630193, "Quickley", "Immanuel", "Immanuel Quickley", True], [200809, "Quinn", "Chris", "Chris Quinn", False], [77893, "Quinnett", "Brian", "Brian Quinnett", False], [1628397, "Rabb", "Ivan", "Ivan Rabb", False], @@ -3288,6 +3353,7 @@ [2762, "Ramos", "Peter John", "Peter John Ramos", False], [77906, "Ramsey", "Cal", "Cal Ramsey", False], [77907, "Ramsey", "Frank", "Frank Ramsey", False], + [1630186, "Ramsey", "Jahmi'us", "Jahmi'us Ramsey", True], [77908, "Ramsey", "Ray", "Ray Ramsey", False], [1821, "Randall", "Mark", "Mark Randall", False], [1626184, "Randle", "Chasson", "Chasson Randle", False], @@ -3314,7 +3380,7 @@ [77921, "Raymond", "Craig", "Craig Raymond", False], [77922, "Rea", "Connie", "Connie Rea", False], [77923, "Reaves", "Joe", "Joe Reaves", False], - [1629729, "Reaves", "Josh", "Josh Reaves", True], + [1629729, "Reaves", "Josh", "Josh Reaves", False], [1442, "Rebraca", "Zeljko", "Zeljko Rebraca", False], [695, "Recasner", "Eldridge", "Eldridge Recasner", False], [2072, "Redd", "Michael", "Michael Redd", False], @@ -3325,6 +3391,7 @@ [1628432, "Reed", "Davon", "Davon Reed", False], [77927, "Reed", "Hub", "Hub Reed", False], [2770, "Reed", "Justin", "Justin Reed", False], + [1630194, "Reed", "Paul", "Paul Reed", True], [77928, "Reed", "Ron", "Ron Reed", False], [203186, "Reed", "Willie", "Willie Reed", False], [77929, "Reed", "Willis", "Willis Reed", False], @@ -3348,7 +3415,7 @@ [981, "Rentzias", "Efthimios", "Efthimios Rentzias", False], [704, "Respert", "Shawn", "Shawn Respert", False], [77944, "Restani", "Kevin", "Kevin Restani", False], - [1629244, "Reynolds", "Cameron", "Cameron Reynolds", True], + [1629244, "Reynolds", "Cameron", "Cameron Reynolds", False], [77945, "Reynolds", "George", "George Reynolds", False], [77946, "Reynolds", "Jerry", "Jerry Reynolds", False], [77947, "Rhodes", "Gene", "Gene Rhodes", False], @@ -3356,6 +3423,7 @@ [779, "Rice", "Glen", "Glen Rice", False], [203318, "Rice", "Glen", "Glen Rice", False], [201181, "Richard", "Chris", "Chris Richard", False], + [1630208, "Richards", "Nick", "Nick Richards", True], [77950, "Richardson", "Clint", "Clint Richardson", False], [2202, "Richardson", "Jason", "Jason Richardson", False], [200978, "Richardson", "Jeremy", "Jeremy Richardson", False], @@ -3379,6 +3447,7 @@ [35, "Riley", "Eric", "Eric Riley", False], [77962, "Riley", "Pat", "Pat Riley", False], [77964, "Riley", "Ron", "Ron Riley", False], + [1630203, "Riller", "Grant", "Grant Riller", True], [77965, "Rinaldi", "Rich", "Rich Rinaldi", False], [77966, "Riordan", "Mike", "Mike Riordan", False], [77967, "Risen", "Arnie", "Arnie Risen", False], @@ -3388,7 +3457,7 @@ [77970, "Rivers", "David", "David Rivers", False], [470, "Rivers", "Doc", "Doc Rivers", False], [77972, "Robbins", "Lee", "Lee Robbins", False], - [203460, "Roberson", "Andre", "Andre Roberson", True], + [203460, "Roberson", "Andre", "Andre Roberson", False], [101194, "Roberson", "Anthony", "Anthony Roberson", False], [77973, "Roberson", "Rick", "Rick Roberson", False], [2121, "Roberson", "Terrance", "Terrance Roberson", False], @@ -3419,7 +3488,7 @@ [1554, "Robinson", "Jamal", "Jamal Robinson", False], [381, "Robinson", "James", "James Robinson", False], [1629010, "Robinson", "Jerome", "Jerome Robinson", True], - [1629620, "Robinson", "Justin", "Justin Robinson", True], + [1629620, "Robinson", "Justin", "Justin Robinson", False], [1683, "Robinson", "Larry", "Larry Robinson", False], [1629011, "Robinson", "Mitchell", "Mitchell Robinson", True], [101126, "Robinson", "Nate", "Nate Robinson", False], @@ -3564,7 +3633,7 @@ [78085, "Schnellbacher", "Otto", "Otto Schnellbacher", False], [78086, "Schnittker", "Dick", "Dick Schnittker", False], [78087, "Schoene", "Russ", "Russ Schoene", False], - [1629678, "Schofield", "Admiral", "Admiral Schofield", True], + [1629678, "Schofield", "Admiral", "Admiral Schofield", False], [78088, "Scholz", "Dave", "Dave Scholz", False], [78089, "Schoon", "Milt", "Milt Schoon", False], [96, "Schrempf", "Detlef", "Detlef Schrempf", False], @@ -3583,6 +3652,7 @@ [203118, "Scott", "Mike", "Mike Scott", True], [78100, "Scott", "Ray", "Ray Scott", False], [1035, "Scott", "Shawnelle", "Shawnelle Scott", False], + [1630206, "Scrubb", "Jay", "Jay Scrubb", True], [78102, "Scurry", "Carey", "Carey Scurry", False], [78103, "Seals", "Bruce", "Bruce Seals", False], [1578, "Seals", "Shea", "Shea Seals", False], @@ -3590,7 +3660,7 @@ [78105, "Searcy", "Ed", "Ed Searcy", False], [78106, "Sears", "Ken", "Ken Sears", False], [78107, "See", "Wayne", "Wayne See", False], - [200757, "Sefolosha", "Thabo", "Thabo Sefolosha", True], + [200757, "Sefolosha", "Thabo", "Thabo Sefolosha", False], [938, "Seikaly", "Rony", "Rony Seikaly", False], [78109, "Selbo", "Glen", "Glen Selbo", False], [202729, "Selby", "Josh", "Josh Selby", False], @@ -3624,7 +3694,7 @@ [78128, "Shavlik", "Ron", "Ron Shavlik", False], [216, "Shaw", "Brian", "Brian Shaw", False], [1745, "Shaw", "Casey", "Casey Shaw", False], - [1629621, "Shayok", "Marial", "Marial Shayok", True], + [1629621, "Shayok", "Marial", "Marial Shayok", False], [78130, "Shea", "Bob", "Bob Shea", False], [78131, "Sheffield", "Fred", "Fred Sheffield", False], [78132, "Shelton", "Craig", "Craig Shelton", False], @@ -3641,7 +3711,7 @@ [78141, "Shrider", "Dick", "Dick Shrider", False], [78142, "Shue", "Gene", "Gene Shue", False], [78143, "Shumate", "John", "John Shumate", False], - [202697, "Shumpert", "Iman", "Iman Shumpert", True], + [202697, "Shumpert", "Iman", "Iman Shumpert", False], [203144, "Shved", "Alexey", "Alexey Shved", False], [1627783, "Siakam", "Pascal", "Pascal Siakam", True], [1626296, "Sibert", "Jordan", "Jordan Sibert", False], @@ -3664,7 +3734,7 @@ [78153, "Simmons", "Connie", "Connie Simmons", False], [78154, "Simmons", "Johnny", "Johnny Simmons", False], [203613, "Simmons", "Jonathon", "Jonathon Simmons", False], - [1628424, "Simmons", "Kobi", "Kobi Simmons", True], + [1628424, "Simmons", "Kobi", "Kobi Simmons", False], [1489, "Simmons", "Lionel", "Lionel Simmons", False], [1750, "Simon", "Miles", "Miles Simon", False], [1629014, "Simons", "Anfernee", "Anfernee Simons", True], @@ -3683,6 +3753,7 @@ [101189, "Singleton", "James", "James Singleton", False], [78162, "Singleton", "Mckinley", "Mckinley Singleton", False], [78163, "Sinicola", "Zeke", "Zeke Sinicola", False], + [1629686, "Sirvydis", "Deividas", "Deividas Sirvydis", True], [78164, "Sitton", "Charlie", "Charlie Sitton", False], [203491, "Siva", "Peyton", "Peyton Siva", False], [101, "Skiles", "Scott", "Scott Skiles", False], @@ -3730,6 +3801,7 @@ [202397, "Smith", "Ish", "Ish Smith", True], [2747, "Smith", "JR", "JR Smith", False], [2074, "Smith", "Jabari", "Jabari Smith", False], + [1630188, "Smith", "Jalen", "Jalen Smith", True], [201160, "Smith", "Jason", "Jason Smith", False], [202536, "Smith", "Jerry", "Jerry Smith", False], [78191, "Smith", "Jim", "Jim Smith", False], @@ -3757,7 +3829,7 @@ [2604, "Smith", "Theron", "Theron Smith", False], [380, "Smith", "Tony", "Tony Smith", False], [78208, "Smith", "Willie", "Willie Smith", False], - [1629015, "Smith", "Zhaire", "Zhaire Smith", True], + [1629015, "Smith", "Zhaire", "Zhaire Smith", False], [1628372, "Smith Jr.", "Dennis", "Dennis Smith Jr.", True], [22, "Smits", "Rik", "Rik Smits", False], [1091, "Smrek", "Mike", "Mike Smrek", False], @@ -3777,7 +3849,7 @@ [203480, "Southerland", "James", "James Southerland", False], [78221, "Sovran", "Gino", "Gino Sovran", False], [2776, "Sow", "Pape", "Pape Sow", False], - [1629034, "Spalding", "Ray", "Ray Spalding", True], + [1629034, "Spalding", "Ray", "Ray Spalding", False], [78222, "Spanarkel", "Jim", "Jim Spanarkel", False], [2779, "Spanoulis", "Vassilis", "Vassilis Spanoulis", False], [78223, "Sparrow", "Guy", "Guy Sparrow", False], @@ -3785,7 +3857,7 @@ [78225, "Spears", "Odie", "Odie Spears", False], [78226, "Spector", "Art", "Art Spector", False], [201578, "Speights", "Marreese", "Marreese Speights", False], - [1629016, "Spellman", "Omari", "Omari Spellman", True], + [1629016, "Spellman", "Omari", "Omari Spellman", False], [78227, "Spencer", "Andre", "Andre Spencer", False], [771, "Spencer", "Elmore", "Elmore Spencer", False], [280, "Spencer", "Felton", "Felton Spencer", False], @@ -3803,6 +3875,7 @@ [78238, "Stallworth", "Dave", "Dave Stallworth", False], [78239, "Stallworth", "Isaac", "Isaac Stallworth", False], [78240, "Stanczak", "Ed", "Ed Stanczak", False], + [1630199, "Stanley", "Cassius", "Cassius Stanley", True], [78241, "Stansbury", "Terence", "Terence Stansbury", False], [317, "Starks", "John", "John Starks", False], [78243, "Starr", "Keith", "Keith Starr", False], @@ -3819,9 +3892,11 @@ [1627293, "Stepheson", "Alex", "Alex Stepheson", False], [78250, "Steppe", "Brook", "Brook Steppe", False], [78251, "Stevens", "Barry", "Barry Stevens", False], + [1630205, "Stevens", "Lamar", "Lamar Stevens", True], [78252, "Stevens", "Wayne", "Wayne Stevens", False], [2052, "Stevenson", "DeShawn", "DeShawn Stevenson", False], [78253, "Stewart", "Dennis", "Dennis Stewart", False], + [1630191, "Stewart", "Isaiah", "Isaiah Stewart", True], [1529, "Stewart", "Kebu", "Kebu Stewart", False], [1125, "Stewart", "Larry", "Larry Stewart", False], [1565, "Stewart", "Michael", "Michael Stewart", False], @@ -3876,7 +3951,7 @@ [78281, "Suttle", "Dane", "Dane Suttle", False], [357, "Sutton", "Greg", "Greg Sutton", False], [78283, "Swain", "Bennie", "Bennie Swain", False], - [1628403, "Swanigan", "Caleb", "Caleb Swanigan", True], + [1628403, "Swanigan", "Caleb", "Caleb Swanigan", False], [78284, "Swanson", "Norm", "Norm Swanson", False], [78285, "Swartz", "Dan", "Dan Swartz", False], [2552, "Sweetney", "Michael", "Michael Sweetney", False], @@ -3894,6 +3969,7 @@ [78291, "Tannenbaum", "Sid", "Sid Tannenbaum", False], [1434, "Tarlac", "Dragan", "Dragan Tarlac", False], [78293, "Tarpley", "Roy", "Roy Tarpley", False], + [1630256, "Tate", "Jae'Sean", "Jae'Sean Tate", True], [78294, "Tatum", "Earl", "Earl Tatum", False], [1628369, "Tatum", "Jayson", "Jayson Tatum", True], [204002, "Tavares", "Edy", "Edy Tavares", False], @@ -3927,6 +4003,7 @@ [78308, "Terry", "Claude", "Claude Terry", False], [1629150, "Terry", "Emanuel", "Emanuel Terry", False], [1891, "Terry", "Jason", "Jason Terry", False], + [1630179, "Terry", "Tyrell", "Tyrell Terry", True], [201934, "Thabeet", "Hasheem", "Hasheem Thabeet", False], [78309, "Thacker", "Tom", "Tom Thacker", False], [1628464, "Theis", "Daniel", "Daniel Theis", True], @@ -3937,11 +4014,12 @@ [78314, "Thirdkill", "David", "David Thirdkill", False], [203519, "Thomas", "Adonis", "Adonis Thomas", False], [2873, "Thomas", "Billy", "Billy Thomas", False], + [1630271, "Thomas", "Brodric", "Brodric Thomas", True], [1063, "Thomas", "Carl", "Carl Thomas", False], [78316, "Thomas", "Charles", "Charles Thomas", False], [2041, "Thomas", "Etan", "Etan Thomas", False], [78317, "Thomas", "Irving", "Irving Thomas", False], - [202738, "Thomas", "Isaiah", "Isaiah Thomas", True], + [202738, "Thomas", "Isaiah", "Isaiah Thomas", False], [78318, "Thomas", "Isiah", "Isiah Thomas", False], [1975, "Thomas", "Jamel", "Jamel Thomas", False], [2839, "Thomas", "James", "James Thomas", False], @@ -3949,7 +4027,7 @@ [78321, "Thomas", "Joe", "Joe Thomas", False], [1519, "Thomas", "John", "John Thomas", False], [1903, "Thomas", "Kenny", "Kenny Thomas", False], - [1629017, "Thomas", "Khyri", "Khyri Thomas", True], + [1629017, "Thomas", "Khyri", "Khyri Thomas", False], [703, "Thomas", "Kurt", "Kurt Thomas", False], [202498, "Thomas", "Lance", "Lance Thomas", False], [202952, "Thomas", "Malcolm", "Malcolm Thomas", False], @@ -3980,7 +4058,7 @@ [201154, "Thornton", "Al", "Al Thornton", False], [738, "Thornton", "Bob", "Bob Thornton", False], [201977, "Thornton", "Marcus", "Marcus Thornton", False], - [1628414, "Thornwell", "Sindarius", "Sindarius Thornwell", False], + [1628414, "Thornwell", "Sindarius", "Sindarius Thornwell", True], [901, "Thorpe", "Otis", "Otis Thorpe", False], [9, "Threatt", "Sedale", "Sedale Threatt", False], [600001, "Thurmond", "Nate", "Nate Thurmond", False], @@ -3988,7 +4066,9 @@ [1629680, "Thybulle", "Matisse", "Matisse Thybulle", True], [78341, "Tidrick", "Howard", "Howard Tidrick", False], [78342, "Tieman", "Dan", "Dan Tieman", False], + [1629681, "Tillie", "Killian", "Killian Tillie", True], [78343, "Tillis", "Darren", "Darren Tillis", False], + [1630214, "Tillman", "Xavier", "Xavier Tillman", True], [78344, "Tingle", "Jack", "Jack Tingle", False], [2224, "Tinsley", "Jamaal", "Jamaal Tinsley", False], [47, "Tisdale", "Wayman", "Wayman Tisdale", False], @@ -3996,7 +4076,7 @@ [78346, "Todorovich", "Marko", "Marko Todorovich", False], [78348, "Tolbert", "Ray", "Ray Tolbert", False], [78347, "Tolbert", "Tom", "Tom Tolbert", False], - [201229, "Tolliver", "Anthony", "Anthony Tolliver", True], + [201229, "Tolliver", "Anthony", "Anthony Tolliver", False], [78349, "Tolson", "Dean", "Dean Tolson", False], [78350, "Tomjanovich", "Rudy", "Rudy Tomjanovich", False], [78351, "Toney", "Andrew", "Andrew Toney", False], @@ -4005,9 +4085,11 @@ [342, "Toolson", "Andy", "Andy Toolson", False], [78355, "Toomay", "Jack", "Jack Toomay", False], [78356, "Toone", "Bernard", "Bernard Toone", False], + [1630167, "Toppin", "Obi", "Obi Toppin", True], [78357, "Torgoff", "Irv", "Irv Torgoff", False], [78358, "Tormohlen", "Gene", "Gene Tormohlen", False], [2351, "Torres", "Oscar", "Oscar Torres", False], + [1629308, "Toscano-Anderson", "Juan", "Juan Toscano-Anderson", True], [78359, "Tosheff", "Bill", "Bill Tosheff", False], [78360, "Tough", "Bob", "Bob Tough", False], [1626253, "Toupane", "Axel", "Axel Toupane", False], @@ -4024,7 +4106,7 @@ [1629018, "Trent Jr.", "Gary", "Gary Trent Jr.", True], [2244, "Trepagnier", "Jeff", "Jeff Trepagnier", False], [78651, "Tresvant", "John", "John Tresvant", False], - [1629019, "Trier", "Allonzo", "Allonzo Trier", True], + [1629019, "Trier", "Allonzo", "Allonzo Trier", False], [78368, "Triptow", "Dick", "Dick Triptow", False], [78369, "Tripucka", "Kelly", "Kelly Tripucka", False], [2456, "Trybanski", "Cezary", "Cezary Trybanski", False], @@ -4037,7 +4119,7 @@ [141, "Tucker", "Anthony", "Anthony Tucker", False], [78374, "Tucker", "Jim", "Jim Tucker", False], [200782, "Tucker", "P.J.", "P.J. Tucker", True], - [1629730, "Tucker", "Rayjon", "Rayjon Tucker", True], + [1629730, "Tucker", "Rayjon", "Rayjon Tucker", False], [78375, "Tucker", "Trent", "Trent Tucker", False], [101142, "Turiaf", "Ronny", "Ronny Turiaf", False], [1726, "Turkcan", "Mirsad", "Mirsad Turkcan", False], @@ -4045,7 +4127,7 @@ [78377, "Turner", "Andre", "Andre Turner", False], [78385, "Turner", "Bill", "Bill Turner", False], [78378, "Turner", "Elston", "Elston Turner", False], - [202323, "Turner", "Evan", "Evan Turner", True], + [202323, "Turner", "Evan", "Evan Turner", False], [78379, "Turner", "Henry", "Henry Turner", False], [78380, "Turner", "Jack", "Jack Turner", False], [78382, "Turner", "Jack", "Jack Turner", False], @@ -4096,6 +4178,7 @@ [2760, "Varejao", "Anderson", "Anderson Varejao", False], [202363, "Varnado", "Jarvis", "Jarvis Varnado", False], [202349, "Vasquez", "Greivis", "Greivis Vasquez", False], + [1630170, "Vassell", "Devin", "Devin Vassell", True], [78409, "Vaughn", "Charles", "Charles Vaughn", False], [710, "Vaughn", "David", "David Vaughn", False], [1521, "Vaughn", "Jacque", "Jacque Vaughn", False], @@ -4117,7 +4200,7 @@ [78420, "Volker", "Floyd", "Floyd Volker", False], [78421, "Volkov", "Alexander", "Alexander Volkov", False], [78422, "Von Nieda", "Whitey", "Whitey Von Nieda", False], - [203943, "Vonleh", "Noah", "Noah Vonleh", True], + [203943, "Vonleh", "Noah", "Noah Vonleh", False], [2063, "Voskuhl", "Jake", "Jake Voskuhl", False], [78423, "Vranes", "Danny", "Danny Vranes", False], [2582, "Vranes", "Slavko", "Slavko Vranes", False], @@ -4135,7 +4218,7 @@ [78428, "Wagner", "Danny", "Danny Wagner", False], [78429, "Wagner", "Milt", "Milt Wagner", False], [1629021, "Wagner", "Moritz", "Moritz Wagner", True], - [203079, "Waiters", "Dion", "Dion Waiters", True], + [203079, "Waiters", "Dion", "Dion Waiters", False], [78430, "Waiters", "Granville", "Granville Waiters", False], [78431, "Wakefield", "Andre", "Andre Wakefield", False], [78432, "Walk", "Neal", "Neal Walk", False], @@ -4160,7 +4243,7 @@ [961, "Wallace", "John", "John Wallace", False], [78443, "Wallace", "Michael", "Michael Wallace", False], [739, "Wallace", "Rasheed", "Rasheed Wallace", False], - [1627820, "Wallace", "Tyrone", "Tyrone Wallace", True], + [1627820, "Wallace", "Tyrone", "Tyrone Wallace", False], [78444, "Waller", "Dwight", "Dwight Waller", False], [78445, "Waller", "Jamie", "Jamie Waller", False], [78446, "Walsh", "Jim", "Jim Walsh", False], @@ -4171,7 +4254,7 @@ [78450, "Walton", "Bill", "Bill Walton", False], [78449, "Walton", "Lloyd", "Lloyd Walton", False], [2575, "Walton", "Luke", "Luke Walton", False], - [1628476, "Walton Jr.", "Derrick", "Derrick Walton Jr.", True], + [1628476, "Walton Jr.", "Derrick", "Derrick Walton Jr.", False], [202954, "Wanamaker", "Brad", "Brad Wanamaker", True], [78453, "Wanzer", "Bobby", "Bobby Wanzer", False], [78454, "Warbington", "Perry", "Perry Warbington", False], @@ -4289,6 +4372,7 @@ [730, "Whitfield", "Dwayne", "Dwayne Whitfield", False], [78519, "Whitney", "Charles", "Charles Whitney", False], [43, "Whitney", "Chris", "Chris Whitney", False], + [204222, "Whittington", "Greg", "Greg Whittington", True], [203963, "Whittington", "Shayne", "Shayne Whittington", False], [78520, "Wicks", "Sidney", "Sidney Wicks", False], [78521, "Wier", "Murray", "Murray Wier", False], @@ -4347,7 +4431,7 @@ [420, "Williams", "Jayson", "Jayson Williams", False], [966, "Williams", "Jerome", "Jerome Williams", False], [78554, "Williams", "John", "John Williams", False], - [1629140, "Williams", "Johnathan", "Johnathan Williams", True], + [1629140, "Williams", "Johnathan", "Johnathan Williams", False], [202716, "Williams", "Jordan", "Jordan Williams", False], [200818, "Williams", "Justin", "Justin Williams", False], [78555, "Williams", "Kenny", "Kenny Williams", False], @@ -4357,13 +4441,14 @@ [101150, "Williams", "Lou", "Lou Williams", True], [200766, "Williams", "Marcus", "Marcus Williams", False], [201173, "Williams", "Marcus", "Marcus Williams", False], - [101107, "Williams", "Marvin", "Marvin Williams", True], + [101107, "Williams", "Marvin", "Marvin Williams", False], [52, "Williams", "Micheal", "Micheal Williams", False], [78558, "Williams", "Mike", "Mike Williams", False], [78560, "Williams", "Milt", "Milt Williams", False], [2590, "Williams", "Mo", "Mo Williams", False], [42, "Williams", "Monty", "Monty Williams", False], [78561, "Williams", "Nate", "Nate Williams", False], + [1630172, "Williams", "Patrick", "Patrick Williams", True], [78566, "Williams", "Pete", "Pete Williams", False], [78571, "Williams", "Ray", "Ray Williams", False], [199, "Williams", "Reggie", "Reggie Williams", False], @@ -4387,7 +4472,7 @@ [78574, "Williams", "Willie", "Willie Williams", False], [1629057, "Williams III", "Robert", "Robert Williams III", True], [1628475, "Williams Jr.", "Matt", "Matt Williams Jr.", False], - [1628430, "Williams-Goss", "Nigel", "Nigel Williams-Goss", True], + [1628430, "Williams-Goss", "Nigel", "Nigel Williams-Goss", False], [722, "Williamson", "Corliss", "Corliss Williamson", False], [78575, "Williamson", "John", "John Williamson", False], [1629627, "Williamson", "Zion", "Zion Williamson", True], @@ -4419,10 +4504,12 @@ [78597, "Winkler", "Marv", "Marv Winkler", False], [1626159, "Winslow", "Justise", "Justise Winslow", True], [1984, "Winslow", "Rickie", "Rickie Winslow", False], + [1630216, "Winston", "Cassius", "Cassius Winston", True], [1868, "Winter", "Trevor", "Trevor Winter", False], [78600, "Winters", "Brian", "Brian Winters", False], [78601, "Winters", "Voise", "Voise Winters", False], [78602, "Wise", "Willie", "Willie Wise", False], + [1630164, "Wiseman", "James", "James Wiseman", True], [203481, "Withey", "Jeff", "Jeff Withey", False], [78603, "Witte", "Luke", "Luke Witte", False], [1456, "Wittman", "Randy", "Randy Wittman", False], @@ -4437,12 +4524,13 @@ [116, "Wood", "David", "David Wood", False], [78609, "Wood", "Howard", "Howard Wood", False], [78611, "Wood", "Leon", "Leon Wood", False], + [1630218, "Woodard II", "Robert", "Robert Woodard II", True], [2254, "Woods", "Loren", "Loren Woods", False], [2417, "Woods", "Qyntel", "Qyntel Woods", False], [1010, "Woods", "Randy", "Randy Woods", False], [78614, "Woodson", "Mike", "Mike Woodson", False], [78615, "Woolridge", "Orlando", "Orlando Woolridge", False], - [1629624, "Wooten", "Kenny", "Kenny Wooten", True], + [1629624, "Wooten", "Kenny", "Kenny Wooten", False], [906, "Workman", "Haywoode", "Haywoode Workman", False], [78616, "Workman", "Mark", "Mark Workman", False], [78617, "Workman", "Tom", "Tom Workman", False], @@ -4464,7 +4552,7 @@ [953, "Wright", "Lorenzen", "Lorenzen Wright", False], [1007, "Wright", "Luther", "Luther Wright", False], [412, "Wright", "Sharone", "Sharone Wright", False], - [1629625, "Wright-Foreman", "Justin", "Justin Wright-Foreman", True], + [1629625, "Wright-Foreman", "Justin", "Justin Wright-Foreman", False], [203100, "Wroten", "Tony", "Tony Wroten", False], [78627, "Wynder", "A.J.", "A.J. Wynder", False], [1627824, "Yabusele", "Guerschon", "Guerschon Yabusele", False], @@ -4503,7 +4591,7 @@ [2583, "Zimmerman", "Derrick", "Derrick Zimmerman", False], [1627757, "Zimmerman", "Stephen", "Stephen Zimmerman", False], [1627835, "Zipser", "Paul", "Paul Zipser", False], - [1627790, "Zizic", "Ante", "Ante Zizic", True], + [1627790, "Zizic", "Ante", "Ante Zizic", False], [78647, "Zoet", "Jim", "Jim Zoet", False], [78648, "Zopf", "Bill", "Bill Zopf", False], [1627826, "Zubac", "Ivica", "Ivica Zubac", True], @@ -4550,4 +4638,4 @@ [1610612764, 'WAS', 'Wizards', 1961, 'Washington', 'Washington Wizards', 'District of Columbia'], [1610612765, 'DET', 'Pistons', 1948, 'Detroit', 'Detroit Pistons', 'Michigan'], [1610612766, 'CHA', 'Hornets', 1988, 'Charlotte', 'Charlotte Hornets', 'North Carolina'] -] +] \ No newline at end of file From dca12be9a642c920026c2e5a2e5361f8f60e0caa Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sun, 17 Jan 2021 22:18:09 -0500 Subject: [PATCH 10/20] major updates for live data (playbyplay, boxscore, and scoreboard) --- .circleci/config.yml | 2 + docs/examples/Basics.ipynb | 6 +- docs/examples/Finding Games.ipynb | 6 +- docs/examples/PlayByPlay.ipynb | 6 +- docs/examples/PlayByPlay_Live.ipynb | 413 ++++++++++++++++++- docs/nba_api/live/endpoints/boxscore.md | 343 +++++++++++++++ docs/nba_api/live/endpoints/playbyplay.md | 81 ++-- docs/nba_api/live/endpoints/scoreboard.md | 124 ++++++ nba_api/live/__init__.py | 2 +- nba_api/live/endpoints/_base.py | 52 --- nba_api/live/endpoints/boxscore.py | 42 -- nba_api/live/endpoints/gameodds.py | 42 -- nba_api/live/endpoints/playbyplay.py | 41 -- nba_api/live/endpoints/scoreboard.py | 39 -- nba_api/live/library/http.py | 98 ----- nba_api/live/{library => nba}/__init__.py | 0 nba_api/live/{ => nba}/endpoints/__init__.py | 4 +- nba_api/live/nba/endpoints/_base.py | 29 ++ nba_api/live/nba/endpoints/boxscore.py | 53 +++ nba_api/live/nba/endpoints/playbyplay.py | 44 ++ nba_api/live/nba/endpoints/scoreboard.py | 45 ++ nba_api/live/nba/library/__init__.py | 0 nba_api/live/nba/library/http.py | 27 ++ tests/live/endpoints/test_boxscore.py | 57 +++ tests/live/endpoints/test_playbyplay.py | 41 ++ tests/live/endpoints/test_scoreboard.py | 44 ++ 26 files changed, 1260 insertions(+), 381 deletions(-) create mode 100644 docs/nba_api/live/endpoints/boxscore.md create mode 100644 docs/nba_api/live/endpoints/scoreboard.md delete mode 100644 nba_api/live/endpoints/_base.py delete mode 100644 nba_api/live/endpoints/boxscore.py delete mode 100644 nba_api/live/endpoints/gameodds.py delete mode 100644 nba_api/live/endpoints/playbyplay.py delete mode 100644 nba_api/live/endpoints/scoreboard.py delete mode 100644 nba_api/live/library/http.py rename nba_api/live/{library => nba}/__init__.py (100%) rename nba_api/live/{ => nba}/endpoints/__init__.py (60%) create mode 100644 nba_api/live/nba/endpoints/_base.py create mode 100644 nba_api/live/nba/endpoints/boxscore.py create mode 100644 nba_api/live/nba/endpoints/playbyplay.py create mode 100644 nba_api/live/nba/endpoints/scoreboard.py create mode 100644 nba_api/live/nba/library/__init__.py create mode 100644 nba_api/live/nba/library/http.py create mode 100644 tests/live/endpoints/test_boxscore.py create mode 100644 tests/live/endpoints/test_playbyplay.py create mode 100644 tests/live/endpoints/test_scoreboard.py diff --git a/.circleci/config.yml b/.circleci/config.yml index 5391a9d2..1c445bae 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,6 +12,8 @@ flake8-steps: &steps #- run: pytest - run: pip install --user pytest - run: python -m pytest tests/stats/library/playbyplay/test_play_by_play_regex.py + - run: python -m pytest tests/live/endpoints + jobs: Python34: diff --git a/docs/examples/Basics.ipynb b/docs/examples/Basics.ipynb index c58b05c8..cf60dad3 100644 --- a/docs/examples/Basics.ipynb +++ b/docs/examples/Basics.ipynb @@ -472,9 +472,9 @@ ], "metadata": { "kernelspec": { - "display_name": "nba", + "display_name": "Python 3", "language": "python", - "name": "nba" + "name": "python3" }, "language_info": { "codemirror_mode": { @@ -486,7 +486,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.1" + "version": "3.9.1" } }, "nbformat": 4, diff --git a/docs/examples/Finding Games.ipynb b/docs/examples/Finding Games.ipynb index 1fadf4b2..ae7228ed 100644 --- a/docs/examples/Finding Games.ipynb +++ b/docs/examples/Finding Games.ipynb @@ -1388,9 +1388,9 @@ ], "metadata": { "kernelspec": { - "display_name": "nba", + "display_name": "Python 3", "language": "python", - "name": "nba" + "name": "python3" }, "language_info": { "codemirror_mode": { @@ -1402,7 +1402,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.1" + "version": "3.9.1" } }, "nbformat": 4, diff --git a/docs/examples/PlayByPlay.ipynb b/docs/examples/PlayByPlay.ipynb index ac4435a1..5547933c 100644 --- a/docs/examples/PlayByPlay.ipynb +++ b/docs/examples/PlayByPlay.ipynb @@ -69,14 +69,14 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Searching through 63 game(s) for the game_id of 0021800854 where IND vs. MIL\n" + "Searching through 12 game(s) for the game_id of 0022000178 where IND @ POR\n" ] } ], @@ -827,7 +827,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.1" + "version": "3.9.1" } }, "nbformat": 4, diff --git a/docs/examples/PlayByPlay_Live.ipynb b/docs/examples/PlayByPlay_Live.ipynb index 39aebcbb..9eb563d6 100644 --- a/docs/examples/PlayByPlay_Live.ipynb +++ b/docs/examples/PlayByPlay_Live.ipynb @@ -7,92 +7,461 @@ "# Working with live PlayByPlay data...\n", "\n", "In order to work with live data, you'll need to use a combination of data from nba_api.live and nba_api.stats.\n", - " \n" + " \n", + "Live Data does not include any support for Pandas as the data is not structured in a way that is useful\n" ] }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from nba_api.stats.static import teams\n", + "\n", + "nba_teams = teams.get_teams()\n", + "# Select the dictionary for the Celtics, which contains their team ID\n", + "celtics = [team for team in nba_teams if team['abbreviation'] == 'BOS'][0]\n", + "celtics_id = celtics['id']" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'https://stats.nba.com/stats/assisttracker?College=&Conference=&Country=&DateFrom=&DateTo=&Division=&DraftPick=&DraftYear=&GameScope=&Height=&LastNGames=&LeagueID=&Location=&Month=&OpponentTeamID=&Outcome=&PORound=&PerMode=&PlayerExperience=&PlayerPosition=&Season=&SeasonSegment=&SeasonType=&StarterBench=&TeamID=&VsConference=&VsDivision=&Weight='" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nba_api.stats.endpoints import assisttracker\n", + "\n", + "assisttracker.AssistTracker().get_request_url()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "dict_keys(['AssistTracker'])" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "assisttracker.AssistTracker().get_available_data()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'{\"resource\":\"assisttracker\",\"parameters\":{\"PerMode\":null,\"LeagueID\":null,\"Season\":null,\"SeasonType\":null,\"PORound\":null,\"Outcome\":null,\"Location\":null,\"Month\":null,\"SeasonSegment\":null,\"DateFrom\":null,\"DateTo\":null,\"OpponentTeamID\":null,\"VsConference\":null,\"VsDivision\":null,\"TeamID\":null,\"Conference\":null,\"Division\":null,\"LastNGames\":null,\"GameScope\":null,\"PlayerExperience\":null,\"PlayerPosition\":null,\"StarterBench\":null,\"DraftYear\":null,\"DraftPick\":null,\"College\":null,\"Country\":null,\"Height\":null,\"Weight\":null},\"resultSets\":[{\"name\":\"AssistTracker\",\"headers\":[\"ASSISTS\"],\"rowSet\":[[54202]]}]}'" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "assisttracker.AssistTracker().get_response()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'resource': 'assisttracker',\n", + " 'parameters': {'PerMode': None,\n", + " 'LeagueID': None,\n", + " 'Season': None,\n", + " 'SeasonType': None,\n", + " 'PORound': None,\n", + " 'Outcome': None,\n", + " 'Location': None,\n", + " 'Month': None,\n", + " 'SeasonSegment': None,\n", + " 'DateFrom': None,\n", + " 'DateTo': None,\n", + " 'OpponentTeamID': None,\n", + " 'VsConference': None,\n", + " 'VsDivision': None,\n", + " 'TeamID': None,\n", + " 'Conference': None,\n", + " 'Division': None,\n", + " 'LastNGames': None,\n", + " 'GameScope': None,\n", + " 'PlayerExperience': None,\n", + " 'PlayerPosition': None,\n", + " 'StarterBench': None,\n", + " 'DraftYear': None,\n", + " 'DraftPick': None,\n", + " 'College': None,\n", + " 'Country': None,\n", + " 'Height': None,\n", + " 'Weight': None},\n", + " 'resultSets': [{'name': 'AssistTracker',\n", + " 'headers': ['ASSISTS'],\n", + " 'rowSet': [[54202]]}]}" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "assisttracker.AssistTracker().get_dict()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'{\"resource\": \"assisttracker\", \"parameters\": {\"PerMode\": null, \"LeagueID\": null, \"Season\": null, \"SeasonType\": null, \"PORound\": null, \"Outcome\": null, \"Location\": null, \"Month\": null, \"SeasonSegment\": null, \"DateFrom\": null, \"DateTo\": null, \"OpponentTeamID\": null, \"VsConference\": null, \"VsDivision\": null, \"TeamID\": null, \"Conference\": null, \"Division\": null, \"LastNGames\": null, \"GameScope\": null, \"PlayerExperience\": null, \"PlayerPosition\": null, \"StarterBench\": null, \"DraftYear\": null, \"DraftPick\": null, \"College\": null, \"Country\": null, \"Height\": null, \"Weight\": null}, \"resultSets\": [{\"name\": \"AssistTracker\", \"headers\": [\"ASSISTS\"], \"rowSet\": [[54202]]}]}'" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "assisttracker.AssistTracker().get_json()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'ASSISTS': 54202}]" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "assisttracker.AssistTracker().get_normalized_dict()['AssistTracker']" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'{\"AssistTracker\": [{\"ASSISTS\": 54202}]}'" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "assisttracker.AssistTracker().get_normalized_json()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'https://cdn.nba.com/static/json/liveData/scoreboard/todaysScoreboard_00.json'" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Query nba.live.endpoints for the score board of GameID 002200011 = IND vs NYK\n", + "from nba_api.live.nba.endpoints import scoreboard\n", + "scoreboard.ScoreBoard().get_request_url()" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'{\\r\\n \"meta\": {\\r\\n \"version\": 1,\\r\\n \"request\": \"https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json\",\\r\\n \"time\": \"2021-01-17 05:30:36.3036\",\\r\\n \"code\": 200\\r\\n },\\r\\n \"scoreboard\": {\\r\\n \"gameDate\": \"2021-01-17\",\\r\\n \"leagueId\": \"00\",\\r\\n \"leagueName\": \"National Basketball Association\",\\r\\n \"games\": [\\r\\n {\\r\\n \"gameId\": \"0022000196\",\\r\\n \"gameCode\": \"20210117/NYKBOS\",\\r\\n \"gameStatus\": 3,\\r\\n \"gameStatusText\": \"Final\",\\r\\n \"period\": 4,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-17T18:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T13:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612738,\\r\\n \"teamName\": \"Celtics\",\\r\\n \"teamCity\": \"Boston\",\\r\\n \"teamTricode\": \"BOS\",\\r\\n \"wins\": 8,\\r\\n \"losses\": 4,\\r\\n \"score\": 75,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 1,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 17\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 18\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 15\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 25\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612752,\\r\\n \"teamName\": \"Knicks\",\\r\\n \"teamCity\": \"New York\",\\r\\n \"teamTricode\": \"NYK\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 8,\\r\\n \"score\": 105,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 1,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 28\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 20\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 27\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 30\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 1627759,\\r\\n \"name\": \"Jaylen Brown\",\\r\\n \"jerseyNum\": \"7\",\\r\\n \"position\": \"G-F\",\\r\\n \"teamTricode\": \"BOS\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 25,\\r\\n \"rebounds\": 6,\\r\\n \"assists\": 3\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 203944,\\r\\n \"name\": \"Julius Randle\",\\r\\n \"jerseyNum\": \"30\",\\r\\n \"position\": \"F-C\",\\r\\n \"teamTricode\": \"NYK\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 20,\\r\\n \"rebounds\": 12,\\r\\n \"assists\": 4\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000197\",\\r\\n \"gameCode\": \"20210117/CLEWAS\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"PPD\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-17T19:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T14:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612764,\\r\\n \"teamName\": \"Wizards\",\\r\\n \"teamCity\": \"Washington\",\\r\\n \"teamTricode\": \"WAS\",\\r\\n \"wins\": 3,\\r\\n \"losses\": 8,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612739,\\r\\n \"teamName\": \"Cavaliers\",\\r\\n \"teamCity\": \"Cleveland\",\\r\\n \"teamTricode\": \"CLE\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 7,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"WAS\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"CLE\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000198\",\\r\\n \"gameCode\": \"20210117/CHIDAL\",\\r\\n \"gameStatus\": 3,\\r\\n \"gameStatusText\": \"Final\",\\r\\n \"period\": 4,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-17T20:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T15:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612742,\\r\\n \"teamName\": \"Mavericks\",\\r\\n \"teamCity\": \"Dallas\",\\r\\n \"teamTricode\": \"DAL\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 6,\\r\\n \"score\": 101,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 23\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 29\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 23\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 26\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612741,\\r\\n \"teamName\": \"Bulls\",\\r\\n \"teamCity\": \"Chicago\",\\r\\n \"teamTricode\": \"CHI\",\\r\\n \"wins\": 5,\\r\\n \"losses\": 8,\\r\\n \"score\": 117,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 27\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 40\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 22\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 28\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 1629029,\\r\\n \"name\": \"Luka Doncic\",\\r\\n \"jerseyNum\": \"77\",\\r\\n \"position\": \"F-G\",\\r\\n \"teamTricode\": \"DAL\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 36,\\r\\n \"rebounds\": 16,\\r\\n \"assists\": 15\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 1628374,\\r\\n \"name\": \"Lauri Markkanen\",\\r\\n \"jerseyNum\": \"24\",\\r\\n \"position\": \"F-C\",\\r\\n \"teamTricode\": \"CHI\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 29,\\r\\n \"rebounds\": 10,\\r\\n \"assists\": 3\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000199\",\\r\\n \"gameCode\": \"20210117/PHIOKC\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"7:00 pm ET\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-18T00:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T19:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612760,\\r\\n \"teamName\": \"Thunder\",\\r\\n \"teamCity\": \"Oklahoma City\",\\r\\n \"teamTricode\": \"OKC\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 6,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612755,\\r\\n \"teamName\": \"76ers\",\\r\\n \"teamCity\": \"Philadelphia\",\\r\\n \"teamTricode\": \"PHI\",\\r\\n \"wins\": 9,\\r\\n \"losses\": 5,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"OKC\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"PHI\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000200\",\\r\\n \"gameCode\": \"20210117/UTADEN\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"8:00 pm ET\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-18T01:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T20:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612743,\\r\\n \"teamName\": \"Nuggets\",\\r\\n \"teamCity\": \"Denver\",\\r\\n \"teamTricode\": \"DEN\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 6,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612762,\\r\\n \"teamName\": \"Jazz\",\\r\\n \"teamCity\": \"Utah\",\\r\\n \"teamTricode\": \"UTA\",\\r\\n \"wins\": 8,\\r\\n \"losses\": 4,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"DEN\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"UTA\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000201\",\\r\\n \"gameCode\": \"20210117/NOPSAC\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"9:00 pm ET\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-18T02:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T21:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612758,\\r\\n \"teamName\": \"Kings\",\\r\\n \"teamCity\": \"Sacramento\",\\r\\n \"teamTricode\": \"SAC\",\\r\\n \"wins\": 5,\\r\\n \"losses\": 8,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612740,\\r\\n \"teamName\": \"Pelicans\",\\r\\n \"teamCity\": \"New Orleans\",\\r\\n \"teamTricode\": \"NOP\",\\r\\n \"wins\": 4,\\r\\n \"losses\": 7,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"SAC\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"NOP\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000202\",\\r\\n \"gameCode\": \"20210117/INDLAC\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"10:00 pm ET\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-18T03:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T22:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612746,\\r\\n \"teamName\": \"Clippers\",\\r\\n \"teamCity\": \"LA\",\\r\\n \"teamTricode\": \"LAC\",\\r\\n \"wins\": 9,\\r\\n \"losses\": 4,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612754,\\r\\n \"teamName\": \"Pacers\",\\r\\n \"teamCity\": \"Indiana\",\\r\\n \"teamTricode\": \"IND\",\\r\\n \"wins\": 8,\\r\\n \"losses\": 4,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"LAC\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"IND\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n }\\r\\n ]\\r\\n }\\r\\n}'" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "scoreboard.ScoreBoard().get_response()" + ] + }, + { + "cell_type": "code", + "execution_count": 31, "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "scoreboard.ScoreBoard().games.get" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'{\"meta\": {\"version\": 1, \"request\": \"https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json\", \"time\": \"2021-01-17 05:31:11.3111\", \"code\": 200}, \"scoreboard\": {\"gameDate\": \"2021-01-17\", \"leagueId\": \"00\", \"leagueName\": \"National Basketball Association\", \"games\": [{\"gameId\": \"0022000196\", \"gameCode\": \"20210117/NYKBOS\", \"gameStatus\": 3, \"gameStatusText\": \"Final\", \"period\": 4, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T18:00:00Z\", \"gameEt\": \"2021-01-17T13:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612738, \"teamName\": \"Celtics\", \"teamCity\": \"Boston\", \"teamTricode\": \"BOS\", \"wins\": 8, \"losses\": 4, \"score\": 75, \"inBonus\": null, \"timeoutsRemaining\": 1, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 17}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 18}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 15}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 25}]}, \"awayTeam\": {\"teamId\": 1610612752, \"teamName\": \"Knicks\", \"teamCity\": \"New York\", \"teamTricode\": \"NYK\", \"wins\": 6, \"losses\": 8, \"score\": 105, \"inBonus\": null, \"timeoutsRemaining\": 1, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 28}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 20}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 27}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 30}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 1627759, \"name\": \"Jaylen Brown\", \"jerseyNum\": \"7\", \"position\": \"G-F\", \"teamTricode\": \"BOS\", \"playerSlug\": null, \"points\": 25, \"rebounds\": 6, \"assists\": 3}, \"awayLeaders\": {\"personId\": 203944, \"name\": \"Julius Randle\", \"jerseyNum\": \"30\", \"position\": \"F-C\", \"teamTricode\": \"NYK\", \"playerSlug\": null, \"points\": 20, \"rebounds\": 12, \"assists\": 4}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000197\", \"gameCode\": \"20210117/CLEWAS\", \"gameStatus\": 1, \"gameStatusText\": \"PPD\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T19:00:00Z\", \"gameEt\": \"2021-01-17T14:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612764, \"teamName\": \"Wizards\", \"teamCity\": \"Washington\", \"teamTricode\": \"WAS\", \"wins\": 3, \"losses\": 8, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612739, \"teamName\": \"Cavaliers\", \"teamCity\": \"Cleveland\", \"teamTricode\": \"CLE\", \"wins\": 6, \"losses\": 7, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"WAS\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"CLE\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000198\", \"gameCode\": \"20210117/CHIDAL\", \"gameStatus\": 3, \"gameStatusText\": \"Final\", \"period\": 4, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T20:00:00Z\", \"gameEt\": \"2021-01-17T15:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612742, \"teamName\": \"Mavericks\", \"teamCity\": \"Dallas\", \"teamTricode\": \"DAL\", \"wins\": 6, \"losses\": 6, \"score\": 101, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 23}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 29}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 23}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 26}]}, \"awayTeam\": {\"teamId\": 1610612741, \"teamName\": \"Bulls\", \"teamCity\": \"Chicago\", \"teamTricode\": \"CHI\", \"wins\": 5, \"losses\": 8, \"score\": 117, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 27}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 40}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 22}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 28}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 1629029, \"name\": \"Luka Doncic\", \"jerseyNum\": \"77\", \"position\": \"F-G\", \"teamTricode\": \"DAL\", \"playerSlug\": null, \"points\": 36, \"rebounds\": 16, \"assists\": 15}, \"awayLeaders\": {\"personId\": 1628374, \"name\": \"Lauri Markkanen\", \"jerseyNum\": \"24\", \"position\": \"F-C\", \"teamTricode\": \"CHI\", \"playerSlug\": null, \"points\": 29, \"rebounds\": 10, \"assists\": 3}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000199\", \"gameCode\": \"20210117/PHIOKC\", \"gameStatus\": 1, \"gameStatusText\": \"7:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T00:00:00Z\", \"gameEt\": \"2021-01-17T19:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612760, \"teamName\": \"Thunder\", \"teamCity\": \"Oklahoma City\", \"teamTricode\": \"OKC\", \"wins\": 6, \"losses\": 6, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612755, \"teamName\": \"76ers\", \"teamCity\": \"Philadelphia\", \"teamTricode\": \"PHI\", \"wins\": 9, \"losses\": 5, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"OKC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"PHI\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000200\", \"gameCode\": \"20210117/UTADEN\", \"gameStatus\": 1, \"gameStatusText\": \"8:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T01:00:00Z\", \"gameEt\": \"2021-01-17T20:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612743, \"teamName\": \"Nuggets\", \"teamCity\": \"Denver\", \"teamTricode\": \"DEN\", \"wins\": 6, \"losses\": 6, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612762, \"teamName\": \"Jazz\", \"teamCity\": \"Utah\", \"teamTricode\": \"UTA\", \"wins\": 8, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"DEN\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"UTA\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000201\", \"gameCode\": \"20210117/NOPSAC\", \"gameStatus\": 1, \"gameStatusText\": \"9:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T02:00:00Z\", \"gameEt\": \"2021-01-17T21:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612758, \"teamName\": \"Kings\", \"teamCity\": \"Sacramento\", \"teamTricode\": \"SAC\", \"wins\": 5, \"losses\": 8, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612740, \"teamName\": \"Pelicans\", \"teamCity\": \"New Orleans\", \"teamTricode\": \"NOP\", \"wins\": 4, \"losses\": 7, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"SAC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"NOP\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000202\", \"gameCode\": \"20210117/INDLAC\", \"gameStatus\": 1, \"gameStatusText\": \"10:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T03:00:00Z\", \"gameEt\": \"2021-01-17T22:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612746, \"teamName\": \"Clippers\", \"teamCity\": \"LA\", \"teamTricode\": \"LAC\", \"wins\": 9, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612754, \"teamName\": \"Pacers\", \"teamCity\": \"Indiana\", \"teamTricode\": \"IND\", \"wins\": 8, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"LAC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"IND\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}]}}'" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "scoreboard.ScoreBoard().get_json()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "scrolled": true + }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "['actionNumber', 'clock', 'timeActual', 'period', 'periodType', 'actionType', 'subType', 'qualifiers', 'personId', 'x', 'y', 'possession', 'scoreHome', 'scoreAway', 'edited', 'orderNumber', 'xLegacy', 'yLegacy', 'isFieldGoal', 'side', 'description', 'personIdsFilter', 'teamId', 'teamTricode', 'descriptor', 'jumpBallRecoveredName', 'jumpBallRecoverdPersonId', 'playerName', 'playerNameI', 'jumpBallWonPlayerName', 'jumpBallWonPersonId', 'jumpBallLostPlayerName', 'jumpBallLostPersonId', 'turnoverTotal', 'stealPlayerName', 'stealPersonId', 'shotDistance', 'shotResult', 'shotActionNumber', 'reboundTotal', 'reboundDefensiveTotal', 'reboundOffensiveTotal', 'officialId', 'foulPersonalTotal', 'foulTechnicalTotal', 'foulDrawnPlayerName', 'foulDrawnPersonId', 'pointsTotal', 'blockPlayerName', 'blockPersonId', 'assistPlayerNameInitial', 'assistPersonId', 'assistTotal']\n" + "{\"meta\": {\"version\": 1, \"code\": 200, \"request\": \"http://nba.cloud/games/0022000180/playbyplay?Format=json\", \"time\": \"2021-01-15 23:48:58.906160\"}, \"game\": {\"gameId\": \"0022000180\", \"actions\": [{\"actionNumber\": 2, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T00:40:29.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"start\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 0, \"scoreHome\": \"0\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:40:29Z\", \"orderNumber\": 20000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period Start\", \"personIdsFilter\": []}, {\"actionNumber\": 4, \"clock\": \"PT11M58.00S\", \"timeActual\": \"2021-01-16T00:40:31.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"startperiod\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"0\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:40:31Z\", \"orderNumber\": 40000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"G. Williams\", \"jumpBallRecoverdPersonId\": 1629684, \"side\": null, \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684, 202684, 202696], \"jumpBallWonPlayerName\": \"Thompson\", \"jumpBallWonPersonId\": 202684, \"description\": \"Jump Ball T. Thompson vs. N. Vucevic: Tip to G. Williams\", \"jumpBallLostPlayerName\": \"Vucevic\", \"jumpBallLostPersonId\": 202696}, {\"actionNumber\": 7, \"clock\": \"PT11M46.00S\", \"timeActual\": \"2021-01-16T00:40:43.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 201952, \"x\": 12.828515111695138, \"y\": 3.7454044117647056, \"side\": \"left\", \"shotDistance\": 24.11, \"possession\": 1610612738, \"scoreHome\": \"3\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:40:50Z\", \"orderNumber\": 70000, \"xLegacy\": 231, \"yLegacy\": 68, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"J. Teague 24' 3PT (3 PTS) (J. Brown 1 AST)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 1}, {\"actionNumber\": 9, \"clock\": \"PT11M18.00S\", \"timeActual\": \"2021-01-16T00:41:13.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"shot clock\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:41:23Z\", \"officialId\": 202041, \"orderNumber\": 90000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"ORL shot clock Team TURNOVER\", \"personIdsFilter\": []}, {\"actionNumber\": 10, \"clock\": \"PT11M05.00S\", \"timeActual\": \"2021-01-16T00:41:39.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1627759, \"x\": 21.02496714848883, \"y\": 71.1703431372549, \"side\": \"left\", \"shotDistance\": 17.96, \"possession\": 1610612738, \"scoreHome\": \"3\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:41:46Z\", \"orderNumber\": 100000, \"xLegacy\": -106, \"yLegacy\": 145, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 17' pullup Shot\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 11, \"clock\": \"PT11M03.00S\", \"timeActual\": \"2021-01-16T00:41:41.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:41:46Z\", \"orderNumber\": 110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 10, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:1)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 12, \"clock\": \"PT10M53.00S\", \"timeActual\": \"2021-01-16T00:41:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"turnaround\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202696, \"x\": 80.81471747700394, \"y\": 37.31234681372549, \"side\": \"right\", \"shotDistance\": 14.27, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"2\", \"edited\": \"2021-01-16T00:42:00Z\", \"orderNumber\": 120000, \"xLegacy\": -63, \"yLegacy\": 128, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"N. Vucevic 14' turnaround Hook (2 PTS) (A. Gordon 1 AST)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 203932], \"assistPlayerNameInitial\": \"A. Gordon\", \"assistPersonId\": 203932, \"assistTotal\": 1}, {\"actionNumber\": 14, \"clock\": \"PT10M39.00S\", \"timeActual\": \"2021-01-16T00:42:05.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 201952, \"x\": 22.28975032851511, \"y\": 87.32383578431373, \"side\": \"left\", \"shotDistance\": 24.39, \"possession\": 1610612738, \"scoreHome\": \"3\", \"scoreAway\": \"2\", \"edited\": \"2021-01-16T00:42:13Z\", \"orderNumber\": 140000, \"xLegacy\": -187, \"yLegacy\": 157, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague 24' 3PT\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 15, \"clock\": \"PT10M36.00S\", \"timeActual\": \"2021-01-16T00:42:08.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"2\", \"edited\": \"2021-01-16T00:42:13Z\", \"orderNumber\": 150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 14, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"D. Bacon REBOUND (Off:0 Def:1)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 16, \"clock\": \"PT10M29.00S\", \"timeActual\": \"2021-01-16T00:42:15.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628407, \"x\": 92.9862023653088, \"y\": 46.14736519607843, \"side\": \"right\", \"shotDistance\": 2.35, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:42:20Z\", \"orderNumber\": 160000, \"xLegacy\": -19, \"yLegacy\": 13, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"D. Bacon driving Layup (2 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 17, \"clock\": \"PT10M14.00S\", \"timeActual\": \"2021-01-16T00:42:30.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 8.409986859395532, \"y\": 47.518382352941174, \"side\": \"left\", \"shotDistance\": 2.93, \"possession\": 1610612738, \"scoreHome\": \"5\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:42:40Z\", \"orderNumber\": 170000, \"xLegacy\": 12, \"yLegacy\": 27, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"J. Teague driving finger roll Layup (5 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 18, \"clock\": \"PT09M48.00S\", \"timeActual\": \"2021-01-16T00:42:56.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 202696, \"x\": 69.72733245729303, \"y\": 17.96109068627451, \"side\": \"right\", \"shotDistance\": 28.2, \"possession\": 1610612753, \"scoreHome\": \"5\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:43:02Z\", \"orderNumber\": 180000, \"xLegacy\": -160, \"yLegacy\": 232, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 28' 3PT\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 19, \"clock\": \"PT09M45.00S\", \"timeActual\": \"2021-01-16T00:42:59.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"5\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:43:02Z\", \"orderNumber\": 190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 18, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"M. Smart REBOUND (Off:0 Def:1)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 20, \"clock\": \"PT09M26.00S\", \"timeActual\": \"2021-01-16T00:43:18.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202684, \"x\": 19.44809461235217, \"y\": 35.84175857843137, \"side\": \"left\", \"shotDistance\": 14.83, \"possession\": 1610612738, \"scoreHome\": \"7\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:43:26Z\", \"orderNumber\": 200000, \"xLegacy\": 71, \"yLegacy\": 130, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"T. Thompson 14' driving Hook (2 PTS)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 21, \"clock\": \"PT09M13.00S\", \"timeActual\": \"2021-01-16T00:43:37.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"7\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:44:02Z\", \"officialId\": 201638, \"orderNumber\": 210000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"N. Vucevic offensive FOUL (1 PF)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 23, \"clock\": \"PT09M13.00S\", \"timeActual\": \"2021-01-16T00:43:37.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"offensive foul\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"7\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:43:55Z\", \"officialId\": 201638, \"orderNumber\": 230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"N. Vucevic offensive foul TURNOVER (1 TO)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 24, \"clock\": \"PT08M59.00S\", \"timeActual\": \"2021-01-16T00:44:02.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1627759, \"x\": 21.369908015768726, \"y\": 47.372855392156865, \"side\": \"left\", \"shotDistance\": 14.9, \"possession\": 1610612738, \"scoreHome\": \"9\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:44:09Z\", \"orderNumber\": 240000, \"xLegacy\": 13, \"yLegacy\": 148, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"J. Brown 14' pullup Jump Shot (2 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 25, \"clock\": \"PT08M38.00S\", \"timeActual\": \"2021-01-16T00:44:23.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 89.83245729303549, \"y\": 49.333639705882355, \"side\": \"right\", \"shotDistance\": 4.32, \"possession\": 1610612753, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:44:27Z\", \"orderNumber\": 250000, \"xLegacy\": -3, \"yLegacy\": 43, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"C. Anthony driving Layup (2 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 26, \"clock\": \"PT08M20.00S\", \"timeActual\": \"2021-01-16T00:44:42.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"fadeaway\", \"qualifiers\": [], \"personId\": 203935, \"x\": 15.850854139290407, \"y\": 32.91207107843137, \"side\": \"left\", \"shotDistance\": 12.89, \"possession\": 1610612738, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:44:57Z\", \"orderNumber\": 260000, \"xLegacy\": 85, \"yLegacy\": 96, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 12' fadeaway Shot\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 27, \"clock\": \"PT08M17.00S\", \"timeActual\": \"2021-01-16T00:44:45.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:44:57Z\", \"orderNumber\": 270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 26, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 28, \"clock\": \"PT08M17.00S\", \"timeActual\": \"2021-01-16T00:44:50.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:44:50Z\", \"orderNumber\": 280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 29, \"clock\": \"PT08M07.00S\", \"timeActual\": \"2021-01-16T00:45:05.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:15Z\", \"orderNumber\": 290000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"C. Anthony bad pass TURNOVER (1 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 202684], \"stealPlayerName\": \"Thompson\", \"stealPersonId\": 202684}, {\"actionNumber\": 30, \"clock\": \"PT08M07.00S\", \"timeActual\": \"2021-01-16T00:45:05.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:07Z\", \"orderNumber\": 300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"T. Thompson STEAL (1 STL)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 31, \"clock\": \"PT08M00.00S\", \"timeActual\": \"2021-01-16T00:45:13.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"fromturnover\"], \"personId\": 203935, \"x\": 12.828515111695138, \"y\": 33.64736519607843, \"side\": \"left\", \"shotDistance\": 10.64, \"possession\": 1610612738, \"scoreHome\": \"11\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:20Z\", \"orderNumber\": 310000, \"xLegacy\": 82, \"yLegacy\": 68, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"M. Smart 10' pullup Jump Shot (2 PTS)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 32, \"clock\": \"PT07M44.00S\", \"timeActual\": \"2021-01-16T00:45:28.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"11\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:47:21Z\", \"orderNumber\": 320000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"C. Anthony bad pass TURNOVER (2 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1627759], \"stealPlayerName\": \"Brown\", \"stealPersonId\": 1627759}, {\"actionNumber\": 33, \"clock\": \"PT07M44.00S\", \"timeActual\": \"2021-01-16T00:45:28.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"11\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:30Z\", \"orderNumber\": 330000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Brown STEAL (1 STL)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 34, \"clock\": \"PT07M43.00S\", \"timeActual\": \"2021-01-16T00:45:31.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 1627759, \"x\": 5.601182654402102, \"y\": 48.59834558823529, \"side\": \"left\", \"shotDistance\": 0.7, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:42Z\", \"orderNumber\": 340000, \"xLegacy\": 7, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"J. Brown running DUNK (4 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 35, \"clock\": \"PT07M43.00S\", \"timeActual\": \"2021-01-16T00:45:38.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:38Z\", \"orderNumber\": 350000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 36, \"clock\": \"PT07M22.00S\", \"timeActual\": \"2021-01-16T00:48:46.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630175, \"x\": 64.60249671484888, \"y\": 36.09834558823529, \"side\": \"right\", \"shotDistance\": 28.87, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:48:50Z\", \"orderNumber\": 360000, \"xLegacy\": -70, \"yLegacy\": 280, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"C. Anthony 28' 3PT (5 PTS) (N. Vucevic 1 AST)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 202696], \"assistPlayerNameInitial\": \"N. Vucevic\", \"assistPersonId\": 202696, \"assistTotal\": 1}, {\"actionNumber\": 38, \"clock\": \"PT07M03.00S\", \"timeActual\": \"2021-01-16T00:49:03.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 29.122864651773984, \"y\": 73.84344362745098, \"side\": \"left\", \"shotDistance\": 25.14, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:49:13Z\", \"orderNumber\": 380000, \"xLegacy\": -119, \"yLegacy\": 221, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 25' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 39, \"clock\": \"PT07M02.00S\", \"timeActual\": \"2021-01-16T00:49:04.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:49:13Z\", \"orderNumber\": 390000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 38, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"D. Bacon REBOUND (Off:0 Def:2)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 40, \"clock\": \"PT06M55.00S\", \"timeActual\": \"2021-01-16T00:49:12.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628407, \"x\": 88.25558475689881, \"y\": 36.09834558823529, \"side\": \"right\", \"shotDistance\": 9.05, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:51:08Z\", \"orderNumber\": 400000, \"xLegacy\": -70, \"yLegacy\": 58, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 9' driving floating Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 41, \"clock\": \"PT06M55.00S\", \"timeActual\": \"2021-01-16T00:49:12.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:49:28Z\", \"orderNumber\": 410000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 40, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 1, \"description\": \"D. Bacon REBOUND (Off:1 Def:2)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 42, \"clock\": \"PT06M47.00S\", \"timeActual\": \"2021-01-16T00:49:19.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628407, \"x\": 94.40999984741211, \"y\": 50.0, \"side\": \"right\", \"shotDistance\": 0.0, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:49:19Z\", \"orderNumber\": 420000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"D. Bacon tip Layup (4 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 43, \"clock\": \"PT06M38.00S\", \"timeActual\": \"2021-01-16T00:49:29.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629684, \"x\": 6.652431011826544, \"y\": 46.14736519607843, \"side\": \"left\", \"shotDistance\": 2.17, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:49:46Z\", \"orderNumber\": 430000, \"xLegacy\": 19, \"yLegacy\": 10, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Williams driving Layup\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 44, \"clock\": \"PT06M31.00S\", \"timeActual\": \"2021-01-16T00:49:36.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:51:08Z\", \"orderNumber\": 440000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 43, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:0)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 45, \"clock\": \"PT06M31.00S\", \"timeActual\": \"2021-01-16T00:49:35.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"2ndchance\", \"pointsinthepaint\"], \"personId\": 202684, \"x\": 5.590000152587891, \"y\": 50.0, \"side\": \"left\", \"shotDistance\": 0.0, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:51Z\", \"orderNumber\": 450000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Thompson tip Layup\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 46, \"clock\": \"PT06M30.00S\", \"timeActual\": \"2021-01-16T00:49:36.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:51Z\", \"orderNumber\": 460000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 45, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"N. Vucevic REBOUND (Off:0 Def:1)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 47, \"clock\": \"PT06M26.00S\", \"timeActual\": \"2021-01-16T00:49:41.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"fastbreak\"], \"personId\": 1628407, \"x\": 92.32917214191852, \"y\": 54.970894607843135, \"side\": \"right\", \"shotDistance\": 3.17, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:49:52Z\", \"orderNumber\": 470000, \"xLegacy\": 25, \"yLegacy\": 20, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon driving finger roll Layup\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 48, \"clock\": \"PT06M22.00S\", \"timeActual\": \"2021-01-16T00:49:44.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:49:44Z\", \"orderNumber\": 480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 47, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:1)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 49, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:49:53.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1627759, \"x\": 13.091327201051248, \"y\": 54.23560049019608, \"side\": \"left\", \"shotDistance\": 7.37, \"possession\": 1610612738, \"scoreHome\": \"15\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:08Z\", \"orderNumber\": 490000, \"xLegacy\": -21, \"yLegacy\": 71, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"J. Brown 7' driving Layup (6 PTS) (J. Teague 1 AST)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759, 201952], \"assistPlayerNameInitial\": \"J. Teague\", \"assistPersonId\": 201952, \"assistTotal\": 1}, {\"actionNumber\": 50, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:49:59.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 203516, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"15\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:26Z\", \"officialId\": 1627541, \"orderNumber\": 500000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"J. Ennis III shooting personal FOUL (1 PF) (Brown 1 FT)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516, 1627759], \"foulDrawnPlayerName\": \"Brown\", \"foulDrawnPersonId\": 1627759}, {\"actionNumber\": 52, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:50:10.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"15\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:51Z\", \"orderNumber\": 520000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 53, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:50:10.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"15\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:51Z\", \"orderNumber\": 530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 54, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:50:29.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"16\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:29Z\", \"orderNumber\": 540000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"J. Brown Free Throw 1 of 1 (7 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 56, \"clock\": \"PT06M01.00S\", \"timeActual\": \"2021-01-16T00:50:50.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 91.14651773981603, \"y\": 50.314031862745104, \"side\": \"right\", \"shotDistance\": 3.07, \"possession\": 1610612753, \"scoreHome\": \"16\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:50:55Z\", \"orderNumber\": 550000, \"xLegacy\": 2, \"yLegacy\": 31, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"C. Anthony cutting DUNK (7 PTS) (N. Vucevic 2 AST)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 202696], \"assistPlayerNameInitial\": \"N. Vucevic\", \"assistPersonId\": 202696, \"assistTotal\": 2}, {\"actionNumber\": 58, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:01.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"3freethrow\"], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"16\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:21Z\", \"officialId\": 1627541, \"orderNumber\": 570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"C. Anthony shooting personal FOUL (1 PF) (Teague 3 FT)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 60, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:24.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 3\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"17\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:24Z\", \"orderNumber\": 590000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"J. Teague Free Throw 1 of 3 (6 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 61, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:35.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 3\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"18\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:35Z\", \"orderNumber\": 600000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"J. Teague Free Throw 2 of 3 (7 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 62, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:36.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"18\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:40Z\", \"orderNumber\": 610000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 63, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:36.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"18\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:40Z\", \"orderNumber\": 620000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 64, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:55.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"3 of 3\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"19\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:55Z\", \"orderNumber\": 630000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"J. Teague Free Throw 3 of 3 (8 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 65, \"clock\": \"PT05M39.00S\", \"timeActual\": \"2021-01-16T00:52:09.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203516, \"x\": 64.86530880420499, \"y\": 52.029718137254896, \"side\": \"right\", \"shotDistance\": 27.8, \"possession\": 1610612753, \"scoreHome\": \"19\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:52:29Z\", \"orderNumber\": 640000, \"xLegacy\": 10, \"yLegacy\": 278, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Ennis III 27' pullup 3PT\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 66, \"clock\": \"PT05M36.00S\", \"timeActual\": \"2021-01-16T00:52:12.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"19\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:52:19Z\", \"orderNumber\": 650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 65, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 67, \"clock\": \"PT05M36.00S\", \"timeActual\": \"2021-01-16T00:52:15.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"19\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:52:15Z\", \"orderNumber\": 660000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 68, \"clock\": \"PT05M22.00S\", \"timeActual\": \"2021-01-16T00:52:36.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 25.57490144546649, \"y\": 83.89246323529412, \"side\": \"left\", \"shotDistance\": 25.31, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:52:41Z\", \"orderNumber\": 670000, \"xLegacy\": -169, \"yLegacy\": 188, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"M. Smart 25' 3PT (5 PTS) (J. Brown 2 AST)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 2}, {\"actionNumber\": 70, \"clock\": \"PT05M07.00S\", \"timeActual\": \"2021-01-16T00:52:50.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 202696, \"x\": 64.07687253613666, \"y\": 51.294424019607845, \"side\": \"right\", \"shotDistance\": 28.53, \"possession\": 1610612753, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:52:54Z\", \"orderNumber\": 690000, \"xLegacy\": 6, \"yLegacy\": 285, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"N. Vucevic 28' 3PT (5 PTS) (C. Anthony 1 AST)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 1630175], \"assistPlayerNameInitial\": \"C. Anthony\", \"assistPersonId\": 1630175, \"assistTotal\": 1}, {\"actionNumber\": 72, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:17.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:17Z\", \"orderNumber\": 710000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 73, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 74, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 75, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203516, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 740000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Ennis III\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 76, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 77, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 760000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: S. Ojeleye\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 78, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 79, \"clock\": \"PT04M39.00S\", \"timeActual\": \"2021-01-16T00:53:42.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 30.31373193166886, \"y\": 73.86642156862744, \"side\": \"left\", \"shotDistance\": 26.12, \"possession\": 1610612738, \"scoreHome\": \"25\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:48Z\", \"orderNumber\": 780000, \"xLegacy\": -119, \"yLegacy\": 232, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"M. Smart 26' 3PT (8 PTS) (J. Brown 3 AST)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 3}, {\"actionNumber\": 81, \"clock\": \"PT04M25.00S\", \"timeActual\": \"2021-01-16T00:53:56.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 91.5407358738502, \"y\": 50.55912990196079, \"side\": \"right\", \"shotDistance\": 2.71, \"possession\": 1610612753, \"scoreHome\": \"25\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:00Z\", \"orderNumber\": 800000, \"xLegacy\": 3, \"yLegacy\": 27, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"C. Anthony driving Layup (9 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 82, \"clock\": \"PT04M09.00S\", \"timeActual\": \"2021-01-16T00:54:12.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 4.28712220762155, \"y\": 96.6375612745098, \"side\": \"left\", \"shotDistance\": 23.35, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:17Z\", \"orderNumber\": 810000, \"xLegacy\": -233, \"yLegacy\": -12, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"S. Ojeleye 3PT (3 PTS) (J. Brown 4 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 4}, {\"actionNumber\": 84, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:26.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:34Z\", \"officialId\": 1627541, \"orderNumber\": 830000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"P. Pritchard personal FOUL (1 PF)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 1630175], \"foulDrawnPlayerName\": \"Anthony\", \"foulDrawnPersonId\": 1630175}, {\"actionNumber\": 86, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:39Z\", \"orderNumber\": 850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: N. Vucevic\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 87, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:39Z\", \"orderNumber\": 860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: C. Anthony\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 88, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:39Z\", \"orderNumber\": 870000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: G. Clark\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 89, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:39Z\", \"orderNumber\": 880000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Bone\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 90, \"clock\": \"PT03M50.00S\", \"timeActual\": \"2021-01-16T00:54:56.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 86.28449408672799, \"y\": 85.60814950980392, \"side\": \"right\", \"shotDistance\": 19.37, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:03Z\", \"orderNumber\": 890000, \"xLegacy\": 178, \"yLegacy\": 76, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Bone 19' Jump Shot\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 91, \"clock\": \"PT03M46.00S\", \"timeActual\": \"2021-01-16T00:55:00.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:03Z\", \"orderNumber\": 900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 90, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 2, \"description\": \"D. Bacon REBOUND (Off:2 Def:2)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 92, \"clock\": \"PT03M41.00S\", \"timeActual\": \"2021-01-16T00:55:04.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"2ndchance\"], \"personId\": 203082, \"x\": 72.27332457293035, \"y\": 58.69332107843137, \"side\": \"right\", \"shotDistance\": 21.26, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:12Z\", \"orderNumber\": 910000, \"xLegacy\": 43, \"yLegacy\": 208, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 21' pullup Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 93, \"clock\": \"PT03M38.00S\", \"timeActual\": \"2021-01-16T00:55:07.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:12Z\", \"orderNumber\": 920000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 92, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"P. Pritchard REBOUND (Off:0 Def:1)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 94, \"clock\": \"PT03M28.00S\", \"timeActual\": \"2021-01-16T00:55:17.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 27.414586070959263, \"y\": 81.44148284313727, \"side\": \"left\", \"shotDistance\": 25.85, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:23Z\", \"orderNumber\": 930000, \"xLegacy\": -157, \"yLegacy\": 205, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 25' 3PT\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 95, \"clock\": \"PT03M25.00S\", \"timeActual\": \"2021-01-16T00:55:20.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:23Z\", \"orderNumber\": 940000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 94, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:1)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 96, \"clock\": \"PT03M20.00S\", \"timeActual\": \"2021-01-16T00:55:25.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1629109, \"x\": 90.93298291721419, \"y\": 4.5036764705882355, \"side\": \"right\", \"shotDistance\": 22.98, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:44Z\", \"orderNumber\": 950000, \"xLegacy\": -227, \"yLegacy\": 33, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Clark 3PT\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 97, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T00:55:28.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:56:22Z\", \"orderNumber\": 960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 96, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"K. Birch REBOUND (Off:1 Def:0)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 98, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T00:55:30.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"putback\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 203920, \"x\": 91.93495400788436, \"y\": 47.86305147058824, \"side\": \"right\", \"shotDistance\": 2.56, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:56:26Z\", \"orderNumber\": 970000, \"xLegacy\": -11, \"yLegacy\": 23, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"K. Birch putback Layup (2 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 99, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:55:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:55:34Z\", \"orderNumber\": 980000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"BOS Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 100, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:57:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:16Z\", \"orderNumber\": 990000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Brown\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 101, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:57:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:16Z\", \"orderNumber\": 1000000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 102, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:57:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:16Z\", \"orderNumber\": 1010000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Nesmith\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 103, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:57:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:16Z\", \"orderNumber\": 1020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 104, \"clock\": \"PT03M04.00S\", \"timeActual\": \"2021-01-16T00:58:35.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630174, \"x\": 10.726018396846255, \"y\": 3.5003063725490198, \"side\": \"left\", \"shotDistance\": 23.75, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:45Z\", \"orderNumber\": 1030000, \"xLegacy\": 232, \"yLegacy\": 48, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith 3PT\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 105, \"clock\": \"PT03M00.00S\", \"timeActual\": \"2021-01-16T00:58:39.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:45Z\", \"orderNumber\": 1040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 104, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"D. Theis REBOUND (Off:1 Def:0)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 106, \"clock\": \"PT03M00.00S\", \"timeActual\": \"2021-01-16T00:58:41.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628464, \"x\": 5.590000152587891, \"y\": 50.0, \"side\": \"left\", \"shotDistance\": 0.0, \"possession\": 1610612738, \"scoreHome\": \"30\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:41Z\", \"orderNumber\": 1050000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"D. Theis tip Layup (2 PTS)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 107, \"clock\": \"PT02M48.00S\", \"timeActual\": \"2021-01-16T00:58:52.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203082, \"x\": 81.68528252299606, \"y\": 56.196384803921575, \"side\": \"right\", \"shotDistance\": 12.36, \"possession\": 1610612753, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:05Z\", \"orderNumber\": 1060000, \"xLegacy\": 31, \"yLegacy\": 120, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"T. Ross 12' pullup Jump Shot (2 PTS) (A. Gordon 2 AST)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 203932], \"assistPlayerNameInitial\": \"A. Gordon\", \"assistPersonId\": 203932, \"assistTotal\": 2}, {\"actionNumber\": 109, \"clock\": \"PT02M36.00S\", \"timeActual\": \"2021-01-16T00:59:03.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 30.831143232588698, \"y\": 64.77481617647058, \"side\": \"left\", \"shotDistance\": 24.85, \"possession\": 1610612738, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:13Z\", \"orderNumber\": 1080000, \"xLegacy\": -74, \"yLegacy\": 237, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 24' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 110, \"clock\": \"PT02M33.00S\", \"timeActual\": \"2021-01-16T00:59:06.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:13Z\", \"orderNumber\": 1090000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 109, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"J. Bone REBOUND (Off:0 Def:1)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 111, \"clock\": \"PT02M15.00S\", \"timeActual\": \"2021-01-16T00:59:25.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 203932, \"x\": 76.16622864651774, \"y\": 71.6375612745098, \"side\": \"right\", \"shotDistance\": 20.28, \"possession\": 1610612753, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:32Z\", \"orderNumber\": 1100000, \"xLegacy\": 108, \"yLegacy\": 172, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon 20' step back Shot\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 112, \"clock\": \"PT02M13.00S\", \"timeActual\": \"2021-01-16T00:59:27.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:32Z\", \"orderNumber\": 1110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 111, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"D. Theis REBOUND (Off:1 Def:1)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 113, \"clock\": \"PT02M01.00S\", \"timeActual\": \"2021-01-16T00:59:39.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628400, \"x\": 6.521024967148489, \"y\": 46.88265931372549, \"side\": \"left\", \"shotDistance\": 1.79, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:43Z\", \"orderNumber\": 1120000, \"xLegacy\": 16, \"yLegacy\": 9, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"S. Ojeleye driving finger roll Layup (5 PTS) (P. Pritchard 1 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1630202], \"assistPlayerNameInitial\": \"P. Pritchard\", \"assistPersonId\": 1630202, \"assistTotal\": 1}, {\"actionNumber\": 115, \"clock\": \"PT01M49.00S\", \"timeActual\": \"2021-01-16T00:59:58.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"step\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:06Z\", \"orderNumber\": 1140000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"A. Gordon step out-of-bounds TURNOVER (1 TO)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 116, \"clock\": \"PT01M49.00S\", \"timeActual\": \"2021-01-16T01:00:02.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:04Z\", \"orderNumber\": 1150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 117, \"clock\": \"PT01M49.00S\", \"timeActual\": \"2021-01-16T01:00:02.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:04Z\", \"orderNumber\": 1160000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 118, \"clock\": \"PT01M34.00S\", \"timeActual\": \"2021-01-16T01:00:23.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630202, \"x\": 19.71090670170828, \"y\": 67.00367647058823, \"side\": \"left\", \"shotDistance\": 15.77, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:32Z\", \"orderNumber\": 1170000, \"xLegacy\": -85, \"yLegacy\": 133, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 15' driving floating Shot\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 119, \"clock\": \"PT01M30.00S\", \"timeActual\": \"2021-01-16T01:00:27.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:32Z\", \"orderNumber\": 1180000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 118, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:2)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 120, \"clock\": \"PT01M15.00S\", \"timeActual\": \"2021-01-16T01:00:41.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203082, \"x\": 92.59198423127464, \"y\": 83.64736519607843, \"side\": \"right\", \"shotDistance\": 16.91, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:53Z\", \"orderNumber\": 1190000, \"xLegacy\": 168, \"yLegacy\": 17, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 16' pullup Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 121, \"clock\": \"PT01M11.00S\", \"timeActual\": \"2021-01-16T01:00:45.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:53Z\", \"orderNumber\": 1200000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 120, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 2, \"description\": \"K. Birch REBOUND (Off:2 Def:0)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 122, \"clock\": \"PT01M09.00S\", \"timeActual\": \"2021-01-16T01:00:48.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 203920, \"x\": 91.93495400788436, \"y\": 51.53952205882353, \"side\": \"right\", \"shotDistance\": 2.45, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"24\", \"edited\": \"2021-01-16T01:00:58Z\", \"orderNumber\": 1210000, \"xLegacy\": 8, \"yLegacy\": 23, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"K. Birch driving finger roll Layup (4 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 123, \"clock\": \"PT00M55.30S\", \"timeActual\": \"2021-01-16T01:01:01.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 31.488173455978973, \"y\": 64.5297181372549, \"side\": \"left\", \"shotDistance\": 25.41, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"24\", \"edited\": \"2021-01-16T01:01:07Z\", \"orderNumber\": 1220000, \"xLegacy\": -73, \"yLegacy\": 243, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 25' 3PT\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 124, \"clock\": \"PT00M53.10S\", \"timeActual\": \"2021-01-16T01:01:03.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"24\", \"edited\": \"2021-01-16T01:01:07Z\", \"orderNumber\": 1230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 123, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 2, \"description\": \"K. Birch REBOUND (Off:2 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 125, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:01:21.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"24\", \"edited\": \"2021-01-16T01:01:37Z\", \"officialId\": 201638, \"orderNumber\": 1240000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"S. Ojeleye shooting personal FOUL (1 PF) (Gordon 2 FT)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 127, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:01:53.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"25\", \"edited\": \"2021-01-16T01:01:53Z\", \"orderNumber\": 1260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 1, \"description\": \"A. Gordon Free Throw 1 of 2 (1 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 128, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:01:56.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"25\", \"edited\": \"2021-01-16T01:02:11Z\", \"orderNumber\": 1270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 129, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:01:56.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"25\", \"edited\": \"2021-01-16T01:02:11Z\", \"orderNumber\": 1280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 130, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:02:29.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:02:29Z\", \"orderNumber\": 1290000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"A. Gordon Free Throw 2 of 2 (2 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 131, \"clock\": \"PT00M23.40S\", \"timeActual\": \"2021-01-16T01:02:46.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:02:59Z\", \"officialId\": 202041, \"orderNumber\": 1300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"J. Bone personal FOUL (1 PF)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 133, \"clock\": \"PT00M17.40S\", \"timeActual\": \"2021-01-16T01:03:08.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628464, \"x\": 20.367936925098554, \"y\": 66.75857843137256, \"side\": \"left\", \"shotDistance\": 16.23, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:03:15Z\", \"orderNumber\": 1320000, \"xLegacy\": -84, \"yLegacy\": 139, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"D. Theis 16' Jump Shot (4 PTS) (J. Teague 2 AST)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464, 201952], \"assistPlayerNameInitial\": \"J. Teague\", \"assistPersonId\": 201952, \"assistTotal\": 2}, {\"actionNumber\": 135, \"clock\": \"PT00M01.60S\", \"timeActual\": \"2021-01-16T01:03:26.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203082, \"x\": 66.83639947437582, \"y\": 23.84344362745098, \"side\": \"right\", \"shotDistance\": 29.03, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:03:44Z\", \"orderNumber\": 1340000, \"xLegacy\": -131, \"yLegacy\": 259, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 29' pullup 3PT\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 136, \"clock\": \"PT00M00.80S\", \"timeActual\": \"2021-01-16T01:03:27.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:03:44Z\", \"orderNumber\": 1350000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 135, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 3, \"description\": \"K. Birch REBOUND (Off:3 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 137, \"clock\": \"PT00M00.50S\", \"timeActual\": \"2021-01-16T01:03:32.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"2ndchance\", \"pointsinthepaint\"], \"personId\": 203920, \"x\": 94.40999984741211, \"y\": 50.0, \"side\": \"right\", \"shotDistance\": 0.0, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:04:02Z\", \"orderNumber\": 1360000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"K. Birch tip Layup (6 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 138, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:03:34.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:03:35Z\", \"orderNumber\": 1370000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period End\", \"personIdsFilter\": []}, {\"actionNumber\": 139, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:03:46.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"instantreplay\", \"subType\": \"request\", \"descriptor\": \"support\", \"qualifiers\": [], \"value\": \"End Period - Good Basket\", \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:04:18Z\", \"officialId\": 202041, \"orderNumber\": 1380000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 140, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:05:42.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [\"startperiod\"], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:00Z\", \"orderNumber\": 1390000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 141, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:05:42.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [\"startperiod\"], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:00Z\", \"orderNumber\": 1400000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 142, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:06:10.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"start\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:10Z\", \"orderNumber\": 1410000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period Start\", \"personIdsFilter\": []}, {\"actionNumber\": 143, \"clock\": \"PT11M46.00S\", \"timeActual\": \"2021-01-16T01:06:24.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:29Z\", \"orderNumber\": 1420000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"K. Birch bad pass TURNOVER (1 TO)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920, 1629750], \"stealPlayerName\": \"Green\", \"stealPersonId\": 1629750}, {\"actionNumber\": 144, \"clock\": \"PT11M46.00S\", \"timeActual\": \"2021-01-16T01:06:24.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:26Z\", \"orderNumber\": 1430000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Green STEAL (1 STL)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 145, \"clock\": \"PT11M30.00S\", \"timeActual\": \"2021-01-16T01:06:40.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630174, \"x\": 28.728646517739815, \"y\": 70.65716911764706, \"side\": \"left\", \"shotDistance\": 24.08, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:47Z\", \"orderNumber\": 1440000, \"xLegacy\": -103, \"yLegacy\": 218, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith 24' turnaround 3PT\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 146, \"clock\": \"PT11M26.00S\", \"timeActual\": \"2021-01-16T01:06:44.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:47Z\", \"orderNumber\": 1450000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 145, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:3)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 147, \"clock\": \"PT11M18.00S\", \"timeActual\": \"2021-01-16T01:06:51.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203082, \"x\": 87.33574244415243, \"y\": 66.49050245098039, \"side\": \"right\", \"shotDistance\": 10.6, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"30\", \"edited\": \"2021-01-16T01:06:57Z\", \"orderNumber\": 1460000, \"xLegacy\": 82, \"yLegacy\": 67, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"T. Ross 10' pullup Jump Shot (4 PTS)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 148, \"clock\": \"PT10M49.00S\", \"timeActual\": \"2021-01-16T01:07:21.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 23.340998685939553, \"y\": 72.61795343137256, \"side\": \"left\", \"shotDistance\": 20.16, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"30\", \"edited\": \"2021-01-16T01:07:27Z\", \"orderNumber\": 1470000, \"xLegacy\": -113, \"yLegacy\": 167, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye 20' Jump Shot\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 149, \"clock\": \"PT10M46.00S\", \"timeActual\": \"2021-01-16T01:07:24.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"30\", \"edited\": \"2021-01-16T01:07:27Z\", \"orderNumber\": 1480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 148, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"G. Clark REBOUND (Off:0 Def:1)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 150, \"clock\": \"PT10M36.00S\", \"timeActual\": \"2021-01-16T01:07:33.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 85.3646517739816, \"y\": 51.78462009803921, \"side\": \"right\", \"shotDistance\": 8.56, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:07:42Z\", \"orderNumber\": 1490000, \"xLegacy\": 9, \"yLegacy\": 85, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"A. Gordon 8' Jump Shot (4 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 151, \"clock\": \"PT10M20.00S\", \"timeActual\": \"2021-01-16T01:07:48.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 7.046649145860711, \"y\": 96.8826593137255, \"side\": \"left\", \"shotDistance\": 23.48, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:12Z\", \"orderNumber\": 1500000, \"xLegacy\": -234, \"yLegacy\": 14, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye 3PT\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 152, \"clock\": \"PT10M18.00S\", \"timeActual\": \"2021-01-16T01:07:50.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:07:54Z\", \"orderNumber\": 1510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 151, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"J. Bone REBOUND (Off:0 Def:2)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 153, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:00.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:00Z\", \"orderNumber\": 1520000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 154, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:01.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:10Z\", \"orderNumber\": 1530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 155, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:01.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:10Z\", \"orderNumber\": 1540000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: S. Ojeleye\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 156, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:01.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:10Z\", \"orderNumber\": 1550000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 157, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:01.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:10Z\", \"orderNumber\": 1560000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 158, \"clock\": \"PT10M10.00S\", \"timeActual\": \"2021-01-16T01:08:25.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:42Z\", \"officialId\": 1627541, \"orderNumber\": 1570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"J. Green personal FOUL (1 PF)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750, 203082], \"foulDrawnPlayerName\": \"Ross\", \"foulDrawnPersonId\": 203082}, {\"actionNumber\": 160, \"clock\": \"PT10M03.00S\", \"timeActual\": \"2021-01-16T01:08:47.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [], \"personId\": 203082, \"x\": 90.40735873850197, \"y\": 27.083333333333332, \"side\": \"right\", \"shotDistance\": 12.06, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:58Z\", \"orderNumber\": 1590000, \"xLegacy\": -115, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 12' driving floating Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 161, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T01:08:50.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:58Z\", \"orderNumber\": 1600000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 160, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:2)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 162, \"clock\": \"PT09M45.00S\", \"timeActual\": \"2021-01-16T01:09:05.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629750, \"x\": 27.283180026281208, \"y\": 15.265012254901961, \"side\": \"left\", \"shotDistance\": 26.79, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:09:15Z\", \"orderNumber\": 1610000, \"xLegacy\": 174, \"yLegacy\": 204, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Green 26' 3PT\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 163, \"clock\": \"PT09M42.00S\", \"timeActual\": \"2021-01-16T01:09:08.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:09:15Z\", \"orderNumber\": 1620000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 162, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:4)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 164, \"clock\": \"PT09M36.00S\", \"timeActual\": \"2021-01-16T01:09:14.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 203932, \"x\": 69.72733245729303, \"y\": 18.941482843137255, \"side\": \"right\", \"shotDistance\": 27.93, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:09:22Z\", \"orderNumber\": 1630000, \"xLegacy\": -155, \"yLegacy\": 232, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"A. Gordon 27' 3PT step back (7 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 165, \"clock\": \"PT09M21.00S\", \"timeActual\": \"2021-01-16T01:09:29.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 27.677398160315374, \"y\": 76.04932598039215, \"side\": \"left\", \"shotDistance\": 24.51, \"possession\": 1610612738, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:09:36Z\", \"orderNumber\": 1640000, \"xLegacy\": -130, \"yLegacy\": 208, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"P. Pritchard 24' 3PT (3 PTS) (T. Thompson 1 AST)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 202684], \"assistPlayerNameInitial\": \"T. Thompson\", \"assistPersonId\": 202684, \"assistTotal\": 1}, {\"actionNumber\": 167, \"clock\": \"PT09M03.00S\", \"timeActual\": \"2021-01-16T01:09:46.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround fadeaway\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 79.84559789750328, \"y\": 37.07873774509804, \"side\": \"right\", \"shotDistance\": 15.15, \"possession\": 1610612753, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:09:54Z\", \"orderNumber\": 1660000, \"xLegacy\": -65, \"yLegacy\": 137, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon 15' turnaround fadeaway Shot\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 168, \"clock\": \"PT09M02.00S\", \"timeActual\": \"2021-01-16T01:09:47.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:09:54Z\", \"orderNumber\": 1670000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 167, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:3)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 169, \"clock\": \"PT08M46.00S\", \"timeActual\": \"2021-01-16T01:10:04.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"turnaround\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202684, \"x\": 7.5722733245729295, \"y\": 51.294424019607845, \"side\": \"left\", \"shotDistance\": 1.98, \"possession\": 1610612738, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:15Z\", \"orderNumber\": 1680000, \"xLegacy\": -6, \"yLegacy\": 19, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Thompson turnaround Hook\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 170, \"clock\": \"PT08M45.00S\", \"timeActual\": \"2021-01-16T01:10:05.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:05Z\", \"orderNumber\": 1690000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 169, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"J. Green REBOUND (Off:1 Def:0)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 171, \"clock\": \"PT08M44.00S\", \"timeActual\": \"2021-01-16T01:10:06.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"putback\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1629750, \"x\": 5.995400788436268, \"y\": 50.55912990196079, \"side\": \"left\", \"shotDistance\": 0.48, \"possession\": 1610612738, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:20Z\", \"orderNumber\": 1700000, \"xLegacy\": -3, \"yLegacy\": 4, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"J. Green putback Layup (2 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 172, \"clock\": \"PT08M30.00S\", \"timeActual\": \"2021-01-16T01:10:21.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 90.3580814717477, \"y\": 54.970894607843135, \"side\": \"right\", \"shotDistance\": 4.55, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:39Z\", \"orderNumber\": 1710000, \"xLegacy\": 25, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon driving Layup\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 173, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:22.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:39Z\", \"orderNumber\": 1720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 172, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"A. Gordon REBOUND (Off:1 Def:0)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 174, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:24.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:36Z\", \"officialId\": 201638, \"orderNumber\": 1730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"T. Thompson shooting personal FOUL (1 PF) (Gordon 2 FT)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 176, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:27Z\", \"orderNumber\": 1750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon Free Throw 1 of 2\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 177, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\", \"deadball\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:27Z\", \"orderNumber\": 1760000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 176, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 178, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:57Z\", \"orderNumber\": 1770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 179, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:57Z\", \"orderNumber\": 1780000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: N. Vucevic\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 180, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:27Z\", \"orderNumber\": 1790000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon Free Throw 2 of 2\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 181, \"clock\": \"PT08M28.00S\", \"timeActual\": \"2021-01-16T01:10:54.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:27Z\", \"orderNumber\": 1800000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 180, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 182, \"clock\": \"PT08M28.00S\", \"timeActual\": \"2021-01-16T01:11:22.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:22Z\", \"orderNumber\": 1810000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 183, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T01:11:43.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:12:03Z\", \"officialId\": 1627541, \"orderNumber\": 1820000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"A. Nesmith shooting personal FOUL (1 PF) (Clark 2 FT)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1629109], \"foulDrawnPlayerName\": \"Clark\", \"foulDrawnPersonId\": 1629109}, {\"actionNumber\": 185, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T01:12:06.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:12:06Z\", \"orderNumber\": 1840000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS G. Clark Free Throw 1 of 2\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 186, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T01:12:06.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"deadball\", \"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:12:06Z\", \"orderNumber\": 1850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 185, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 187, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T01:12:18.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:12:19Z\", \"orderNumber\": 1860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 1, \"description\": \"G. Clark Free Throw 2 of 2 (1 PTS)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 188, \"clock\": \"PT08M05.00S\", \"timeActual\": \"2021-01-16T01:12:39.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 9.806176084099869, \"y\": 97.86305147058823, \"side\": \"left\", \"shotDistance\": 24.26, \"possession\": 1610612738, \"scoreHome\": \"42\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:12:45Z\", \"orderNumber\": 1870000, \"xLegacy\": -239, \"yLegacy\": 40, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"P. Pritchard 24' 3PT step back (6 PTS)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 189, \"clock\": \"PT07M46.00S\", \"timeActual\": \"2021-01-16T01:12:59.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"42\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:13:10Z\", \"officialId\": 201638, \"orderNumber\": 1880000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"P. Pritchard personal FOUL (2 PF)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 191, \"clock\": \"PT07M37.00S\", \"timeActual\": \"2021-01-16T01:13:28.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 89.96386333771353, \"y\": 46.392463235294116, \"side\": \"right\", \"shotDistance\": 4.55, \"possession\": 1610612753, \"scoreHome\": \"42\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:13:34Z\", \"orderNumber\": 1900000, \"xLegacy\": -18, \"yLegacy\": 42, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon driving finger roll Layup\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 192, \"clock\": \"PT07M36.00S\", \"timeActual\": \"2021-01-16T01:13:29.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"42\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:13:34Z\", \"orderNumber\": 1910000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 191, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:4)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 193, \"clock\": \"PT07M28.00S\", \"timeActual\": \"2021-01-16T01:13:37.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630202, \"x\": 5.601182654402102, \"y\": 54.23560049019608, \"side\": \"left\", \"shotDistance\": 2.12, \"possession\": 1610612738, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:13:41Z\", \"orderNumber\": 1920000, \"xLegacy\": -21, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"P. Pritchard driving Layup (8 PTS)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 194, \"clock\": \"PT07M11.00S\", \"timeActual\": \"2021-01-16T01:13:53.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203082, \"x\": 75.90341655716163, \"y\": 10.608149509803921, \"side\": \"right\", \"shotDistance\": 26.28, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:03Z\", \"orderNumber\": 1930000, \"xLegacy\": -197, \"yLegacy\": 174, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 26' 3PT\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 195, \"clock\": \"PT07M08.00S\", \"timeActual\": \"2021-01-16T01:13:56.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:03Z\", \"orderNumber\": 1940000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 194, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:5)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 196, \"clock\": \"PT06M50.00S\", \"timeActual\": \"2021-01-16T01:14:15.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"lost ball\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:22Z\", \"orderNumber\": 1950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"T. Thompson lost ball TURNOVER (1 TO)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684, 202696], \"stealPlayerName\": \"Vucevic\", \"stealPersonId\": 202696}, {\"actionNumber\": 197, \"clock\": \"PT06M50.00S\", \"timeActual\": \"2021-01-16T01:14:15.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:22Z\", \"orderNumber\": 1960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"N. Vucevic STEAL (1 STL)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 198, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:14:25.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [\"inpenalty\", \"2freethrow\"], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:16:18Z\", \"officialId\": 202041, \"orderNumber\": 1970000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"A. Nesmith personal FOUL (2 PF) (Gordon 2 FT)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 200, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:14:36.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:36Z\", \"orderNumber\": 1990000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"BOS Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 201, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2000000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 202, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2010000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Nesmith\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 203, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 205, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 206, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2050000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 207, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2060000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Brown\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 211, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:17:44.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"fromturnover\", \"fastbreak\"], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"37\", \"edited\": \"2021-01-16T01:17:44Z\", \"orderNumber\": 2100000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"A. Gordon Free Throw 1 of 2 (8 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 212, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:17:58.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"fastbreak\", \"fromturnover\"], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:17:58Z\", \"orderNumber\": 2110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"A. Gordon Free Throw 2 of 2 (9 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 213, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:11.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"44\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:31Z\", \"officialId\": 202041, \"orderNumber\": 2120000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"J. Bone shooting personal FOUL (2 PF) (Teague 2 FT)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 215, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:38.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:38Z\", \"orderNumber\": 2140000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"J. Teague Free Throw 1 of 2 (9 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 216, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:46Z\", \"orderNumber\": 2150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 217, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:46Z\", \"orderNumber\": 2160000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 218, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:46Z\", \"orderNumber\": 2170000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 219, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:46Z\", \"orderNumber\": 2180000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 220, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:19:03.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:03Z\", \"orderNumber\": 2190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"J. Teague Free Throw 2 of 2 (10 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 221, \"clock\": \"PT06M28.00S\", \"timeActual\": \"2021-01-16T01:19:16.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"turnaround\", \"qualifiers\": [], \"personId\": 202696, \"x\": 86.99080157687253, \"y\": 68.22916666666666, \"side\": \"right\", \"shotDistance\": 11.48, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:28Z\", \"orderNumber\": 2200000, \"xLegacy\": 91, \"yLegacy\": 70, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 11' turnaround Hook\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 222, \"clock\": \"PT06M26.00S\", \"timeActual\": \"2021-01-16T01:19:18.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:28Z\", \"orderNumber\": 2210000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 221, \"reboundTotal\": 7, \"reboundDefensiveTotal\": 6, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:6)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 223, \"clock\": \"PT06M21.00S\", \"timeActual\": \"2021-01-16T01:19:23.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"running pullup\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1627759, \"x\": 29.517082785808146, \"y\": 21.637561274509803, \"side\": \"left\", \"shotDistance\": 26.6, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:35Z\", \"orderNumber\": 2220000, \"xLegacy\": 142, \"yLegacy\": 225, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 26' running pullup 3PT\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 224, \"clock\": \"PT06M19.00S\", \"timeActual\": \"2021-01-16T01:19:25.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:35Z\", \"orderNumber\": 2230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 223, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:5)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 225, \"clock\": \"PT06M09.00S\", \"timeActual\": \"2021-01-16T01:19:35.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628407, \"x\": 72.09264126149803, \"y\": 36.58854166666667, \"side\": \"right\", \"shotDistance\": 22.03, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:43Z\", \"orderNumber\": 2240000, \"xLegacy\": -67, \"yLegacy\": 210, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 22' Jump Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 226, \"clock\": \"PT06M05.00S\", \"timeActual\": \"2021-01-16T01:19:39.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:43Z\", \"orderNumber\": 2250000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 225, \"reboundTotal\": 8, \"reboundDefensiveTotal\": 7, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:7)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 227, \"clock\": \"PT05M55.00S\", \"timeActual\": \"2021-01-16T01:19:51.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:59Z\", \"orderNumber\": 2260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"M. Smart bad pass TURNOVER (1 TO)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 202696], \"stealPlayerName\": \"Vucevic\", \"stealPersonId\": 202696}, {\"actionNumber\": 228, \"clock\": \"PT05M55.00S\", \"timeActual\": \"2021-01-16T01:19:51.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:20:35Z\", \"orderNumber\": 2270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"N. Vucevic STEAL (2 STL)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 229, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:19:56.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"inpenalty\", \"2freethrow\"], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:20:07Z\", \"officialId\": 202041, \"orderNumber\": 2280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"M. Smart shooting personal FOUL (1 PF) (Bacon 2 FT)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 232, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:20:19.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:20:26Z\", \"orderNumber\": 2310000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 233, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:20:19.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:20:26Z\", \"orderNumber\": 2320000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: C. Anthony\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 231, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:20:19.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"fastbreak\", \"fromturnover\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"39\", \"edited\": \"2021-01-16T01:50:12Z\", \"orderNumber\": 2322500, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"D. Bacon Free Throw 1 of 2 (5 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 234, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:20:19.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"fastbreak\", \"fromturnover\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:50:12Z\", \"orderNumber\": 2323750, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"D. Bacon Free Throw 2 of 2 (6 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 235, \"clock\": \"PT05M39.00S\", \"timeActual\": \"2021-01-16T01:20:54.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"alley-oop\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202684, \"x\": 5.338370565045992, \"y\": 52.029718137254896, \"side\": \"left\", \"shotDistance\": 1.04, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:21:28Z\", \"orderNumber\": 2325000, \"xLegacy\": -10, \"yLegacy\": -2, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Thompson alley-oop Layup\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 236, \"clock\": \"PT05M38.00S\", \"timeActual\": \"2021-01-16T01:20:55.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:47:05Z\", \"orderNumber\": 2327500, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 235, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 237, \"clock\": \"PT05M38.00S\", \"timeActual\": \"2021-01-16T01:20:59.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:20:59Z\", \"orderNumber\": 2360000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 238, \"clock\": \"PT05M30.00S\", \"timeActual\": \"2021-01-16T01:21:23.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"2ndchance\"], \"personId\": 203935, \"x\": 30.305519053876477, \"y\": 72.37285539215686, \"side\": \"left\", \"shotDistance\": 25.79, \"possession\": 1610612738, \"scoreHome\": \"49\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:21:32Z\", \"orderNumber\": 2370000, \"xLegacy\": -112, \"yLegacy\": 232, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"M. Smart 25' 3PT (11 PTS) (J. Brown 5 AST)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 5}, {\"actionNumber\": 240, \"clock\": \"PT05M08.00S\", \"timeActual\": \"2021-01-16T01:21:43.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround fadeaway\", \"qualifiers\": [], \"personId\": 202696, \"x\": 87.46714848883047, \"y\": 29.235600490196077, \"side\": \"right\", \"shotDistance\": 12.26, \"possession\": 1610612753, \"scoreHome\": \"49\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:21:52Z\", \"orderNumber\": 2390000, \"xLegacy\": -104, \"yLegacy\": 65, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 12' turnaround fadeaway Shot\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 241, \"clock\": \"PT05M05.00S\", \"timeActual\": \"2021-01-16T01:21:46.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"49\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:21:52Z\", \"orderNumber\": 2400000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 240, \"reboundTotal\": 9, \"reboundDefensiveTotal\": 8, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:8)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 242, \"clock\": \"PT04M55.00S\", \"timeActual\": \"2021-01-16T01:21:57.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving reverse\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630202, \"x\": 5.732588699080158, \"y\": 53.255208333333336, \"side\": \"left\", \"shotDistance\": 1.64, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:10Z\", \"orderNumber\": 2410000, \"xLegacy\": -16, \"yLegacy\": 1, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"P. Pritchard driving reverse Layup (10 PTS) (J. Brown 6 AST)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 6}, {\"actionNumber\": 244, \"clock\": \"PT04M38.00S\", \"timeActual\": \"2021-01-16T01:22:14.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629109, \"x\": 63.81406044678055, \"y\": 39.03952205882353, \"side\": \"right\", \"shotDistance\": 29.28, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:19Z\", \"orderNumber\": 2430000, \"xLegacy\": -55, \"yLegacy\": 288, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Clark 29' 3PT\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 245, \"clock\": \"PT04M35.00S\", \"timeActual\": \"2021-01-16T01:22:17.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:19Z\", \"orderNumber\": 2440000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 244, \"reboundTotal\": 10, \"reboundDefensiveTotal\": 9, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:9)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 246, \"clock\": \"PT04M26.00S\", \"timeActual\": \"2021-01-16T01:22:27.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1627759, \"x\": 16.245072273324574, \"y\": 43.20618872549019, \"side\": \"left\", \"shotDistance\": 10.58, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:38Z\", \"orderNumber\": 2450000, \"xLegacy\": 34, \"yLegacy\": 100, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 10' pullup Shot\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 247, \"clock\": \"PT04M23.00S\", \"timeActual\": \"2021-01-16T01:22:30.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:38Z\", \"orderNumber\": 2460000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 246, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"G. Clark REBOUND (Off:0 Def:2)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 248, \"clock\": \"PT04M14.00S\", \"timeActual\": \"2021-01-16T01:22:38.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving reverse\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 91.27792378449409, \"y\": 45.90226715686275, \"side\": \"right\", \"shotDistance\": 3.59, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:48Z\", \"orderNumber\": 2470000, \"xLegacy\": -20, \"yLegacy\": 29, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony driving reverse Layup\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 249, \"clock\": \"PT04M11.00S\", \"timeActual\": \"2021-01-16T01:22:41.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:48Z\", \"orderNumber\": 2480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 248, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"N. Vucevic REBOUND (Off:1 Def:1)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 250, \"clock\": \"PT04M11.00S\", \"timeActual\": \"2021-01-16T01:22:41.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 202696, \"x\": 90.75229960578186, \"y\": 46.63756127450981, \"side\": \"right\", \"shotDistance\": 3.83, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:22:53Z\", \"orderNumber\": 2490000, \"xLegacy\": -17, \"yLegacy\": 34, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"N. Vucevic tip Layup (7 PTS)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 251, \"clock\": \"PT03M52.00S\", \"timeActual\": \"2021-01-16T01:23:00.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 4.812746386333772, \"y\": 56.44148284313726, \"side\": \"left\", \"shotDistance\": 3.3, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:23:05Z\", \"orderNumber\": 2500000, \"xLegacy\": -32, \"yLegacy\": -7, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague driving finger roll Layup\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 252, \"clock\": \"PT03M50.00S\", \"timeActual\": \"2021-01-16T01:23:02.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:23:05Z\", \"orderNumber\": 2510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 251, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 1, \"description\": \"N. Vucevic REBOUND (Off:1 Def:2)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 253, \"clock\": \"PT03M45.00S\", \"timeActual\": \"2021-01-16T01:23:06.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1630175, \"x\": 71.30420499342969, \"y\": 20.166973039215684, \"side\": \"right\", \"shotDistance\": 26.35, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:23:26Z\", \"orderNumber\": 2520000, \"xLegacy\": -149, \"yLegacy\": 217, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 26' 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 254, \"clock\": \"PT03M44.00S\", \"timeActual\": \"2021-01-16T01:23:07.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:50:45Z\", \"orderNumber\": 2530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 253, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 3, \"description\": \"D. Bacon REBOUND (Off:3 Def:2)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 270, \"clock\": \"PT03M43.00S\", \"timeActual\": \"2021-01-16T01:23:11.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628407, \"x\": 82.86793692509855, \"y\": 41.00030637254902, \"side\": \"right\", \"shotDistance\": 11.75, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:35:34Z\", \"orderNumber\": 2535000, \"xLegacy\": -45, \"yLegacy\": 109, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 11' Jump Shot - blocked\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407, 202684], \"blockPlayerName\": \"Thompson\", \"blockPersonId\": 202684}, {\"actionNumber\": 271, \"clock\": \"PT03M43.00S\", \"timeActual\": \"2021-01-16T01:23:11.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2537500, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"T. Thompson BLOCK (1 BLK)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 272, \"clock\": \"PT03M43.00S\", \"timeActual\": \"2021-01-16T01:23:11.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:35:34Z\", \"orderNumber\": 2538750, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 270, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 329, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:19.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"heldball\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:48:59Z\", \"orderNumber\": 2539375, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"P. Pritchard\", \"jumpBallRecoverdPersonId\": 1630202, \"side\": null, \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 202684, 1628407], \"jumpBallWonPlayerName\": \"Thompson\", \"jumpBallWonPersonId\": 202684, \"description\": \"Jump Ball T. Thompson vs. D. Bacon: Tip to P. Pritchard\", \"jumpBallLostPlayerName\": \"Bacon\", \"jumpBallLostPersonId\": 1628407}, {\"actionNumber\": 255, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:28.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2540000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: G. Clark\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 256, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:28.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2550000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Bone\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 257, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:28.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2560000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 258, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:28.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 259, \"clock\": \"PT03M34.00S\", \"timeActual\": \"2021-01-16T01:23:47.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"heldball\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2580000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"P. Pritchard\", \"jumpBallRecoverdPersonId\": 1630202, \"side\": null, \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 202684, 1628407], \"jumpBallWonPlayerName\": \"Thompson\", \"jumpBallWonPersonId\": 202684, \"description\": \"Jump Ball T. Thompson vs. D. Bacon: Tip to P. Pritchard\", \"jumpBallLostPlayerName\": \"Bacon\", \"jumpBallLostPersonId\": 1628407}, {\"actionNumber\": 264, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:24:05.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"3freethrow\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:41:32Z\", \"officialId\": 202041, \"orderNumber\": 2625000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"D. Bacon shooting personal FOUL (1 PF) (Brown 3 FT)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407, 1627759], \"foulDrawnPlayerName\": \"Brown\", \"foulDrawnPersonId\": 1627759}, {\"actionNumber\": 266, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:24:44.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 3\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"52\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:26:16Z\", \"orderNumber\": 2650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"J. Brown Free Throw 1 of 3 (8 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 267, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:24:44.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 3\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"53\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:26:16Z\", \"orderNumber\": 2660000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"J. Brown Free Throw 2 of 3 (9 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 268, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:07.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"technical\", \"qualifiers\": [\"1freethrow\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"53\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:23Z\", \"officialId\": 202041, \"orderNumber\": 2670000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 1, \"side\": null, \"description\": \"D. Bacon technical FOUL (1 Tech)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 269, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:25.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"descriptor\": \"technical\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:25Z\", \"orderNumber\": 2680000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"J. Brown technical Free Throw 1 of 1 (10 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 273, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2690000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 274, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2700000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 275, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2710000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 276, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 277, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 278, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2740000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 279, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:24:44.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"3 of 3\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"55\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:26:16Z\", \"orderNumber\": 2750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"J. Brown Free Throw 3 of 3 (11 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 280, \"clock\": \"PT03M09.00S\", \"timeActual\": \"2021-01-16T01:26:08.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [\"inpenalty\", \"2freethrow\"], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:29:55Z\", \"officialId\": 202041, \"orderNumber\": 2780000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"J. Brown personal FOUL (1 PF) (Vucevic 2 FT)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759, 202696], \"foulDrawnPlayerName\": \"Vucevic\", \"foulDrawnPersonId\": 202696}, {\"actionNumber\": 283, \"clock\": \"PT03M09.00S\", \"timeActual\": \"2021-01-16T01:26:30.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"43\", \"edited\": \"2021-01-16T01:26:30Z\", \"orderNumber\": 2810000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"N. Vucevic Free Throw 1 of 2 (8 PTS)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 284, \"clock\": \"PT03M09.00S\", \"timeActual\": \"2021-01-16T01:26:46.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:26:46Z\", \"orderNumber\": 2820000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"N. Vucevic Free Throw 2 of 2 (9 PTS)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 285, \"clock\": \"PT02M56.00S\", \"timeActual\": \"2021-01-16T01:27:01.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628464, \"x\": 21.369908015768726, \"y\": 40.510110294117645, \"side\": \"left\", \"shotDistance\": 15.58, \"possession\": 1610612738, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:27:06Z\", \"orderNumber\": 2830000, \"xLegacy\": 47, \"yLegacy\": 148, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Theis 15' Jump Shot\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 286, \"clock\": \"PT02M53.00S\", \"timeActual\": \"2021-01-16T01:27:04.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:27:06Z\", \"orderNumber\": 2840000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 285, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:2)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 287, \"clock\": \"PT02M47.00S\", \"timeActual\": \"2021-01-16T01:27:10.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 202696, \"x\": 67.49342969776609, \"y\": 72.37285539215686, \"side\": \"right\", \"shotDistance\": 27.67, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:27:16Z\", \"orderNumber\": 2850000, \"xLegacy\": 112, \"yLegacy\": 253, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 27' 3PT\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 288, \"clock\": \"PT02M45.00S\", \"timeActual\": \"2021-01-16T01:27:12.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:27:12Z\", \"orderNumber\": 2860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 287, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 1, \"description\": \"D. Theis REBOUND (Off:1 Def:2)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 289, \"clock\": \"PT02M37.00S\", \"timeActual\": \"2021-01-16T01:27:20.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1627759, \"x\": 27.808804204993432, \"y\": 78.01011029411765, \"side\": \"left\", \"shotDistance\": 25.15, \"possession\": 1610612738, \"scoreHome\": \"58\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T02:04:25Z\", \"orderNumber\": 2870000, \"xLegacy\": -140, \"yLegacy\": 209, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 14, \"description\": \"J. Brown 25' 3PT pullup (14 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 290, \"clock\": \"PT02M22.00S\", \"timeActual\": \"2021-01-16T01:27:35.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202696, \"x\": 90.3580814717477, \"y\": 53.990502450980394, \"side\": \"right\", \"shotDistance\": 4.3, \"possession\": 1610612753, \"scoreHome\": \"58\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:27:41Z\", \"orderNumber\": 2880000, \"xLegacy\": 20, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"N. Vucevic cutting Layup (11 PTS) (C. Anthony 2 AST)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 1630175], \"assistPlayerNameInitial\": \"C. Anthony\", \"assistPersonId\": 1630175, \"assistTotal\": 2}, {\"actionNumber\": 292, \"clock\": \"PT02M02.00S\", \"timeActual\": \"2021-01-16T01:27:58.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"58\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:27:58Z\", \"orderNumber\": 2900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 293, \"clock\": \"PT02M02.00S\", \"timeActual\": \"2021-01-16T01:28:07.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"58\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:28:07Z\", \"orderNumber\": 2910000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 294, \"clock\": \"PT01M59.00S\", \"timeActual\": \"2021-01-16T01:31:06.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629684, \"x\": 6.783837056504599, \"y\": 43.69638480392157, \"side\": \"left\", \"shotDistance\": 3.35, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:12Z\", \"orderNumber\": 2920000, \"xLegacy\": 32, \"yLegacy\": 11, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"G. Williams cutting Layup (2 PTS) (M. Smart 1 AST)\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684, 203935], \"assistPlayerNameInitial\": \"M. Smart\", \"assistPersonId\": 203935, \"assistTotal\": 1}, {\"actionNumber\": 296, \"clock\": \"PT01M38.00S\", \"timeActual\": \"2021-01-16T01:31:27.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"turnaround\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202696, \"x\": 82.34231274638634, \"y\": 58.892463235294116, \"side\": \"right\", \"shotDistance\": 12.19, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:43Z\", \"orderNumber\": 2940000, \"xLegacy\": 44, \"yLegacy\": 113, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 12' turnaround Hook\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 297, \"clock\": \"PT01M36.00S\", \"timeActual\": \"2021-01-16T01:31:29.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:43Z\", \"orderNumber\": 2950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 296, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 4, \"description\": \"K. Birch REBOUND (Off:4 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 298, \"clock\": \"PT01M32.00S\", \"timeActual\": \"2021-01-16T01:31:34.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1630175, \"x\": 89.43823915900131, \"y\": 4.235600490196079, \"side\": \"right\", \"shotDistance\": 23.35, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:46Z\", \"orderNumber\": 2960000, \"xLegacy\": -229, \"yLegacy\": 47, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 299, \"clock\": \"PT01M30.00S\", \"timeActual\": \"2021-01-16T01:31:36.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:46Z\", \"orderNumber\": 2970000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 298, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 5, \"description\": \"K. Birch REBOUND (Off:5 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 300, \"clock\": \"PT01M28.00S\", \"timeActual\": \"2021-01-16T01:31:37.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"putback\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 203920, \"x\": 90.3580814717477, \"y\": 44.921875, \"side\": \"right\", \"shotDistance\": 4.58, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:31:49Z\", \"orderNumber\": 2980000, \"xLegacy\": -25, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"K. Birch putback Layup (8 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 301, \"clock\": \"PT01M18.00S\", \"timeActual\": \"2021-01-16T01:31:49.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:00Z\", \"officialId\": 202041, \"orderNumber\": 2990000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"A. Gordon personal FOUL (1 PF)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 1628464], \"foulDrawnPlayerName\": \"Theis\", \"foulDrawnPersonId\": 1628464}, {\"actionNumber\": 303, \"clock\": \"PT01M10.00S\", \"timeActual\": \"2021-01-16T01:32:30.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 24.52365308804205, \"y\": 12.568933823529413, \"side\": \"left\", \"shotDistance\": 25.83, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:35Z\", \"orderNumber\": 3010000, \"xLegacy\": 187, \"yLegacy\": 178, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 25' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 304, \"clock\": \"PT01M07.00S\", \"timeActual\": \"2021-01-16T01:32:33.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:35Z\", \"orderNumber\": 3020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 303, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"G. Williams REBOUND (Off:1 Def:0)\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 305, \"clock\": \"PT01M05.00S\", \"timeActual\": \"2021-01-16T01:32:35.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1627759, \"x\": 37.13863337713535, \"y\": 25.06893382352941, \"side\": \"left\", \"shotDistance\": 32.17, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:46Z\", \"orderNumber\": 3030000, \"xLegacy\": 125, \"yLegacy\": 297, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 32' 3PT\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 306, \"clock\": \"PT01M01.00S\", \"timeActual\": \"2021-01-16T01:32:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:46Z\", \"orderNumber\": 3040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 305, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:2)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 307, \"clock\": \"PT00M51.40S\", \"timeActual\": \"2021-01-16T01:32:49.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"bad pass\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:58Z\", \"officialId\": 1627541, \"orderNumber\": 3050000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"J. Brown bad pass out-of-bounds TURNOVER (1 TO)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 308, \"clock\": \"PT00M47.70S\", \"timeActual\": \"2021-01-16T01:33:11.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"fadeaway\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\", \"fastbreak\"], \"personId\": 203082, \"x\": 83.78777923784494, \"y\": 41.00030637254902, \"side\": \"right\", \"shotDistance\": 10.96, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:33:19Z\", \"orderNumber\": 3060000, \"xLegacy\": -45, \"yLegacy\": 100, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 10' fadeaway Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 309, \"clock\": \"PT00M44.90S\", \"timeActual\": \"2021-01-16T01:33:14.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:33:19Z\", \"orderNumber\": 3070000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 308, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"M. Smart REBOUND (Off:0 Def:2)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 310, \"clock\": \"PT00M34.50S\", \"timeActual\": \"2021-01-16T01:33:24.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1627759, \"x\": 23.340998685939553, \"y\": 37.8140318627451, \"side\": \"left\", \"shotDistance\": 17.77, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:33:29Z\", \"orderNumber\": 3080000, \"xLegacy\": 61, \"yLegacy\": 167, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 17' Jump Shot\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 311, \"clock\": \"PT00M32.90S\", \"timeActual\": \"2021-01-16T01:33:26.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:33:29Z\", \"orderNumber\": 3090000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 310, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:3)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 313, \"clock\": \"PT00M26.00S\", \"timeActual\": \"2021-01-16T01:33:37.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:54:45Z\", \"officialId\": 202041, \"orderNumber\": 3110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"C. Anthony offensive FOUL (2 PF)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1628464], \"foulDrawnPlayerName\": \"Theis\", \"foulDrawnPersonId\": 1628464}, {\"actionNumber\": 357, \"clock\": \"PT00M26.00S\", \"timeActual\": \"2021-01-16T01:33:47.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"offensive foul\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:55:34Z\", \"officialId\": 201638, \"orderNumber\": 3125000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 3, \"description\": \"C. Anthony offensive foul TURNOVER (3 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 315, \"clock\": \"PT00M26.00S\", \"timeActual\": \"2021-01-16T01:33:58.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"timeout\", \"subType\": \"challenge\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:53:56Z\", \"orderNumber\": 3130000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"BOS Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 317, \"clock\": \"PT00M26.00S\", \"timeActual\": \"2021-01-16T01:34:15.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"instantreplay\", \"subType\": \"challenge\", \"descriptor\": \"overturned\", \"qualifiers\": [], \"value\": \"Corrected to Offensive Foul on C. Anthony\", \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:53:56Z\", \"officialId\": 202041, \"orderNumber\": 3150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 318, \"clock\": \"PT00M08.70S\", \"timeActual\": \"2021-01-16T01:36:10.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 203935, \"x\": 7.30946123521682, \"y\": 55.70618872549019, \"side\": \"left\", \"shotDistance\": 3.28, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T02:03:57Z\", \"orderNumber\": 3160000, \"xLegacy\": -29, \"yLegacy\": 16, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart DUNK\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 319, \"clock\": \"PT00M05.10S\", \"timeActual\": \"2021-01-16T01:36:14.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T02:03:57Z\", \"orderNumber\": 3170000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 318, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 1, \"description\": \"N. Vucevic REBOUND (Off:1 Def:3)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 320, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:17.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 86.94152431011827, \"y\": 47.372855392156865, \"side\": \"right\", \"shotDistance\": 7.14, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:37:12Z\", \"orderNumber\": 3180000, \"xLegacy\": -13, \"yLegacy\": 70, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 7' driving Layup - blocked\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1630202], \"blockPlayerName\": \"Pritchard\", \"blockPersonId\": 1630202}, {\"actionNumber\": 321, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:17.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:36:19Z\", \"orderNumber\": 3190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"P. Pritchard BLOCK (1 BLK)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 322, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:17.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:45:40Z\", \"orderNumber\": 3200000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 320, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 324, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:35.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:36:47Z\", \"orderNumber\": 3220000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 325, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:35.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:36:47Z\", \"orderNumber\": 3230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 326, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:36:50.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround fadeaway\", \"qualifiers\": [\"2ndchance\"], \"personId\": 202696, \"x\": 85.10183968462549, \"y\": 30.46109068627451, \"side\": \"right\", \"shotDistance\": 13.12, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:37:28Z\", \"orderNumber\": 3240000, \"xLegacy\": -98, \"yLegacy\": 88, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 13' turnaround fadeaway Shot\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 327, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:36:50.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:37:28Z\", \"orderNumber\": 3250000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 326, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 328, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:36:54.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:36:54Z\", \"orderNumber\": 3260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period End\", \"personIdsFilter\": []}, {\"actionNumber\": 332, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [\"startperiod\"], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 333, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [\"startperiod\"], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 334, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [\"startperiod\"], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3290000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 335, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [\"startperiod\"], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 336, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [\"startperiod\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3310000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 337, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [\"startperiod\"], \"personId\": 203516, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3320000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Ennis III\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 338, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:52:20.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"start\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:20Z\", \"orderNumber\": 3330000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period Start\", \"personIdsFilter\": []}, {\"actionNumber\": 339, \"clock\": \"PT11M43.00S\", \"timeActual\": \"2021-01-16T01:52:37.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround\", \"qualifiers\": [], \"personId\": 202696, \"x\": 19.004599211563733, \"y\": 23.353247549019606, \"side\": \"left\", \"shotDistance\": 18.34, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:52:48Z\", \"orderNumber\": 3340000, \"xLegacy\": 133, \"yLegacy\": 126, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"N. Vucevic 18' turnaround Jump Shot (13 PTS)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 340, \"clock\": \"PT11M20.00S\", \"timeActual\": \"2021-01-16T01:53:02.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 203516, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:25Z\", \"officialId\": 202041, \"orderNumber\": 3350000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"J. Ennis III shooting personal FOUL (2 PF) (Brown 2 FT)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516, 1627759], \"foulDrawnPlayerName\": \"Brown\", \"foulDrawnPersonId\": 1627759}, {\"actionNumber\": 342, \"clock\": \"PT11M20.00S\", \"timeActual\": \"2021-01-16T01:53:27.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"61\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:27Z\", \"orderNumber\": 3370000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"J. Brown Free Throw 1 of 2 (15 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 343, \"clock\": \"PT11M20.00S\", \"timeActual\": \"2021-01-16T01:53:38.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"62\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:38Z\", \"orderNumber\": 3380000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 16, \"description\": \"J. Brown Free Throw 2 of 2 (16 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 344, \"clock\": \"PT11M07.00S\", \"timeActual\": \"2021-01-16T01:53:53.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 7.5722733245729295, \"y\": 56.196384803921575, \"side\": \"left\", \"shotDistance\": 3.62, \"possession\": 1610612753, \"scoreHome\": \"62\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:58Z\", \"orderNumber\": 3390000, \"xLegacy\": -31, \"yLegacy\": 19, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon driving finger roll Layup\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 345, \"clock\": \"PT11M06.00S\", \"timeActual\": \"2021-01-16T01:53:54.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"62\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:58Z\", \"orderNumber\": 3400000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 344, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"J. Brown REBOUND (Off:0 Def:1)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 346, \"clock\": \"PT11M01.00S\", \"timeActual\": \"2021-01-16T01:53:59.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fastbreak\"], \"personId\": 202684, \"x\": 91.27792378449409, \"y\": 49.08854166666667, \"side\": \"right\", \"shotDistance\": 2.99, \"possession\": 1610612738, \"scoreHome\": \"64\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:54:05Z\", \"orderNumber\": 3410000, \"xLegacy\": -5, \"yLegacy\": 29, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"T. Thompson running Layup (4 PTS) (J. Brown 7 AST)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 7}, {\"actionNumber\": 348, \"clock\": \"PT10M48.00S\", \"timeActual\": \"2021-01-16T01:54:12.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203932, \"x\": 18.2161629434954, \"y\": 4.725796568627451, \"side\": \"left\", \"shotDistance\": 25.56, \"possession\": 1610612753, \"scoreHome\": \"64\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:54:17Z\", \"orderNumber\": 3430000, \"xLegacy\": 226, \"yLegacy\": 119, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 12, \"description\": \"A. Gordon 25' 3PT (12 PTS) (D. Bacon 1 AST)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 1628407], \"assistPlayerNameInitial\": \"D. Bacon\", \"assistPersonId\": 1628407, \"assistTotal\": 1}, {\"actionNumber\": 350, \"clock\": \"PT10M23.00S\", \"timeActual\": \"2021-01-16T01:54:38.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 201952, \"x\": 88.78120893561103, \"y\": 95.65716911764706, \"side\": \"right\", \"shotDistance\": 23.44, \"possession\": 1610612738, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:54:43Z\", \"orderNumber\": 3450000, \"xLegacy\": 228, \"yLegacy\": 53, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"J. Teague 3PT (13 PTS) (M. Smart 2 AST)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952, 203935], \"assistPlayerNameInitial\": \"M. Smart\", \"assistPersonId\": 203935, \"assistTotal\": 2}, {\"actionNumber\": 352, \"clock\": \"PT10M06.00S\", \"timeActual\": \"2021-01-16T01:54:55.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203932, \"x\": 29.911300919842315, \"y\": 75.06893382352942, \"side\": \"left\", \"shotDistance\": 26.08, \"possession\": 1610612753, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:00Z\", \"orderNumber\": 3470000, \"xLegacy\": -125, \"yLegacy\": 229, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon 26' 3PT\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 353, \"clock\": \"PT10M03.00S\", \"timeActual\": \"2021-01-16T01:54:57.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:54:57Z\", \"orderNumber\": 3480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 352, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"J. Brown REBOUND (Off:0 Def:2)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 354, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T01:55:07.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"lost ball\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:33Z\", \"orderNumber\": 3490000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"J. Brown lost ball out-of-bounds TURNOVER (2 TO)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 355, \"clock\": \"PT09M50.00S\", \"timeActual\": \"2021-01-16T01:55:27.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 1630175, \"x\": 6.1268068331143235, \"y\": 41.73560049019608, \"side\": \"left\", \"shotDistance\": 4.16, \"possession\": 1610612753, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:58Z\", \"orderNumber\": 3500000, \"xLegacy\": 41, \"yLegacy\": 5, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony driving floating Shot\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 356, \"clock\": \"PT09M47.00S\", \"timeActual\": \"2021-01-16T01:55:30.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:58Z\", \"orderNumber\": 3510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 355, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"J. Teague REBOUND (Off:0 Def:1)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 358, \"clock\": \"PT09M35.00S\", \"timeActual\": \"2021-01-16T01:55:41.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 89.17542706964521, \"y\": 51.294424019607845, \"side\": \"right\", \"shotDistance\": 4.97, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:47Z\", \"orderNumber\": 3520000, \"xLegacy\": 6, \"yLegacy\": 49, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"J. Teague driving floating Jump Shot (15 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 359, \"clock\": \"PT09M28.00S\", \"timeActual\": \"2021-01-16T01:55:52.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:52Z\", \"orderNumber\": 3530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 360, \"clock\": \"PT09M17.00S\", \"timeActual\": \"2021-01-16T01:58:50.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving bank\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203516, \"x\": 8.623521681997373, \"y\": 58.892463235294116, \"side\": \"left\", \"shotDistance\": 5.29, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"55\", \"edited\": \"2021-01-16T01:59:00Z\", \"orderNumber\": 3540000, \"xLegacy\": -44, \"yLegacy\": 29, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"J. Ennis III driving bank Jump Shot (2 PTS) (N. Vucevic 3 AST)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516, 202696], \"assistPlayerNameInitial\": \"N. Vucevic\", \"assistPersonId\": 202696, \"assistTotal\": 3}, {\"actionNumber\": 362, \"clock\": \"PT09M02.00S\", \"timeActual\": \"2021-01-16T01:59:05.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 87.99277266754271, \"y\": 55.951286764705884, \"side\": \"right\", \"shotDistance\": 6.74, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"55\", \"edited\": \"2021-01-16T01:59:10Z\", \"orderNumber\": 3560000, \"xLegacy\": 30, \"yLegacy\": 60, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague 6' driving floating Shot\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 363, \"clock\": \"PT09M01.00S\", \"timeActual\": \"2021-01-16T01:59:06.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"55\", \"edited\": \"2021-01-16T01:59:10Z\", \"orderNumber\": 3570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 362, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 1, \"description\": \"N. Vucevic REBOUND (Off:1 Def:4)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 364, \"clock\": \"PT08M52.00S\", \"timeActual\": \"2021-01-16T01:59:15.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202696, \"x\": 19.136005256241788, \"y\": 40.510110294117645, \"side\": \"left\", \"shotDistance\": 13.59, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"57\", \"edited\": \"2021-01-16T01:59:20Z\", \"orderNumber\": 3580000, \"xLegacy\": 47, \"yLegacy\": 127, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"N. Vucevic 13' Jump Shot (15 PTS) (C. Anthony 3 AST)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 1630175], \"assistPlayerNameInitial\": \"C. Anthony\", \"assistPersonId\": 1630175, \"assistTotal\": 3}, {\"actionNumber\": 366, \"clock\": \"PT08M33.00S\", \"timeActual\": \"2021-01-16T01:59:34.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 201952, \"x\": 69.33311432325887, \"y\": 21.88265931372549, \"side\": \"right\", \"shotDistance\": 27.45, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"57\", \"edited\": \"2021-01-16T01:59:39Z\", \"orderNumber\": 3600000, \"xLegacy\": -141, \"yLegacy\": 236, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague 27' 3PT\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 367, \"clock\": \"PT08M30.00S\", \"timeActual\": \"2021-01-16T01:59:37.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"57\", \"edited\": \"2021-01-16T01:59:39Z\", \"orderNumber\": 3610000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 366, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 3, \"description\": \"D. Bacon REBOUND (Off:3 Def:3)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 368, \"clock\": \"PT08M27.00S\", \"timeActual\": \"2021-01-16T01:59:42.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fastbreak\"], \"personId\": 1628407, \"x\": 7.30946123521682, \"y\": 53.990502450980394, \"side\": \"left\", \"shotDistance\": 2.57, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T01:59:51Z\", \"orderNumber\": 3620000, \"xLegacy\": -20, \"yLegacy\": 16, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"D. Bacon running Layup (8 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 369, \"clock\": \"PT08M27.00S\", \"timeActual\": \"2021-01-16T01:59:44.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 1629684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:06:42Z\", \"officialId\": 202041, \"orderNumber\": 3630000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"G. Williams shooting personal FOUL (1 PF) (Bacon 1 FT)\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 371, \"clock\": \"PT08M27.00S\", \"timeActual\": \"2021-01-16T02:00:08.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:00:12Z\", \"orderNumber\": 3650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon Free Throw 1 of 1\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 372, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T02:00:12.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:00:12Z\", \"orderNumber\": 3660000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 371, \"reboundTotal\": 11, \"reboundDefensiveTotal\": 10, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:10)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 373, \"clock\": \"PT08M16.00S\", \"timeActual\": \"2021-01-16T02:00:22.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 203516, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:00:27Z\", \"officialId\": 201638, \"orderNumber\": 3670000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 3, \"foulTechnicalTotal\": 0, \"description\": \"J. Ennis III personal FOUL (3 PF)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516, 1627759], \"foulDrawnPlayerName\": \"Brown\", \"foulDrawnPersonId\": 1627759}, {\"actionNumber\": 375, \"clock\": \"PT08M04.00S\", \"timeActual\": \"2021-01-16T02:00:57.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1627759, \"x\": 60.791721419185286, \"y\": 44.676776960784316, \"side\": \"right\", \"shotDistance\": 31.72, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:01:02Z\", \"orderNumber\": 3690000, \"xLegacy\": -27, \"yLegacy\": 316, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 19, \"description\": \"J. Brown 31' 3PT (19 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 376, \"clock\": \"PT07M46.00S\", \"timeActual\": \"2021-01-16T02:01:15.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203516, \"x\": 13.354139290407357, \"y\": 1.5395220588235294, \"side\": \"left\", \"shotDistance\": 25.31, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:01:26Z\", \"orderNumber\": 3700000, \"xLegacy\": 242, \"yLegacy\": 73, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Ennis III 25' 3PT\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 377, \"clock\": \"PT07M42.00S\", \"timeActual\": \"2021-01-16T02:01:19.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:01:19Z\", \"orderNumber\": 3710000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 376, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 2, \"description\": \"A. Gordon REBOUND (Off:2 Def:0)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 378, \"clock\": \"PT07M40.00S\", \"timeActual\": \"2021-01-16T02:01:23.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628407, \"x\": 8.492115637319317, \"y\": 48.353247549019606, \"side\": \"left\", \"shotDistance\": 2.85, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"61\", \"edited\": \"2021-01-16T02:01:30Z\", \"orderNumber\": 3720000, \"xLegacy\": 8, \"yLegacy\": 27, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"D. Bacon driving Layup (10 PTS) (N. Vucevic 4 AST)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407, 202696], \"assistPlayerNameInitial\": \"N. Vucevic\", \"assistPersonId\": 202696, \"assistTotal\": 4}, {\"actionNumber\": 379, \"clock\": \"PT07M40.00S\", \"timeActual\": \"2021-01-16T02:01:26.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"61\", \"edited\": \"2021-01-16T02:01:49Z\", \"officialId\": 201638, \"orderNumber\": 3730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"T. Thompson shooting personal FOUL (2 PF) (Bacon 1 FT)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 381, \"clock\": \"PT07M40.00S\", \"timeActual\": \"2021-01-16T02:01:51.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"62\", \"edited\": \"2021-01-16T02:01:51Z\", \"orderNumber\": 3750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"D. Bacon Free Throw 1 of 1 (11 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 382, \"clock\": \"PT07M26.00S\", \"timeActual\": \"2021-01-16T02:02:05.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 88.64980289093299, \"y\": 59.62775735294118, \"side\": \"right\", \"shotDistance\": 7.25, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"62\", \"edited\": \"2021-01-16T02:02:11Z\", \"orderNumber\": 3760000, \"xLegacy\": 48, \"yLegacy\": 54, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague 7' driving finger roll Layup\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 383, \"clock\": \"PT07M24.00S\", \"timeActual\": \"2021-01-16T02:02:07.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"62\", \"edited\": \"2021-01-16T02:02:11Z\", \"orderNumber\": 3770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 382, \"reboundTotal\": 7, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 3, \"description\": \"D. Bacon REBOUND (Off:3 Def:4)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 384, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:16.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"62\", \"edited\": \"2021-01-16T02:02:29Z\", \"officialId\": 1627541, \"orderNumber\": 3780000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"M. Smart shooting personal FOUL (2 PF) (Bacon 2 FT)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 386, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:40.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"63\", \"edited\": \"2021-01-16T02:02:40Z\", \"orderNumber\": 3800000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 12, \"description\": \"D. Bacon Free Throw 1 of 2 (12 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 388, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:41.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"63\", \"edited\": \"2021-01-16T02:02:46Z\", \"orderNumber\": 3810000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 389, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:41.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"63\", \"edited\": \"2021-01-16T02:02:46Z\", \"orderNumber\": 3820000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 390, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:58.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"64\", \"edited\": \"2021-01-16T02:02:58Z\", \"orderNumber\": 3830000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"D. Bacon Free Throw 2 of 2 (13 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 391, \"clock\": \"PT07M08.00S\", \"timeActual\": \"2021-01-16T02:03:09.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203935, \"x\": 64.20827858081472, \"y\": 30.46109068627451, \"side\": \"right\", \"shotDistance\": 30.02, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"64\", \"edited\": \"2021-01-16T02:03:18Z\", \"orderNumber\": 3840000, \"xLegacy\": -98, \"yLegacy\": 284, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 30' pullup 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 392, \"clock\": \"PT07M04.00S\", \"timeActual\": \"2021-01-16T02:03:13.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203516, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"64\", \"edited\": \"2021-01-16T02:03:18Z\", \"orderNumber\": 3850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 391, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"J. Ennis III REBOUND (Off:0 Def:1)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 393, \"clock\": \"PT06M55.00S\", \"timeActual\": \"2021-01-16T02:03:21.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [], \"personId\": 1630175, \"x\": 14.011169513797633, \"y\": 33.64736519607843, \"side\": \"left\", \"shotDistance\": 11.39, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:27Z\", \"orderNumber\": 3860000, \"xLegacy\": 82, \"yLegacy\": 79, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"C. Anthony 11' driving floating Jump Shot (11 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 394, \"clock\": \"PT06M32.00S\", \"timeActual\": \"2021-01-16T02:03:44.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629684, \"x\": 88.64980289093299, \"y\": 95.65716911764706, \"side\": \"right\", \"shotDistance\": 23.46, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:49Z\", \"orderNumber\": 3870000, \"xLegacy\": 228, \"yLegacy\": 54, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Williams 3PT\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 395, \"clock\": \"PT06M30.00S\", \"timeActual\": \"2021-01-16T02:03:46.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:49Z\", \"orderNumber\": 3880000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 394, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:4)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 396, \"clock\": \"PT06M27.00S\", \"timeActual\": \"2021-01-16T02:03:50.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"lost ball\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:57Z\", \"orderNumber\": 3890000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 4, \"description\": \"C. Anthony lost ball TURNOVER (4 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 201952], \"stealPlayerName\": \"Teague\", \"stealPersonId\": 201952}, {\"actionNumber\": 397, \"clock\": \"PT06M27.00S\", \"timeActual\": \"2021-01-16T02:03:50.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:51Z\", \"orderNumber\": 3900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Teague STEAL (1 STL)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 398, \"clock\": \"PT06M22.00S\", \"timeActual\": \"2021-01-16T02:03:53.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\", \"fastbreak\"], \"personId\": 201952, \"x\": 91.14651773981603, \"y\": 48.59834558823529, \"side\": \"right\", \"shotDistance\": 3.15, \"possession\": 1610612738, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:04:04Z\", \"orderNumber\": 3910000, \"xLegacy\": -7, \"yLegacy\": 31, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 17, \"description\": \"J. Teague running Layup (17 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 399, \"clock\": \"PT06M00.00S\", \"timeActual\": \"2021-01-16T02:04:16.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628407, \"x\": 21.632720105124836, \"y\": 29.725796568627448, \"side\": \"left\", \"shotDistance\": 18.17, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:04:22Z\", \"orderNumber\": 3920000, \"xLegacy\": 101, \"yLegacy\": 151, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 18' Jump Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 400, \"clock\": \"PT05M58.00S\", \"timeActual\": \"2021-01-16T02:04:18.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:04:22Z\", \"orderNumber\": 3930000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 399, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"G. Williams REBOUND (Off:1 Def:1)\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 401, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:35.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"traveling\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:04:43Z\", \"orderNumber\": 3940000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"T. Thompson traveling TURNOVER (2 TO)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 402, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:39.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:07Z\", \"orderNumber\": 3950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 403, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:39.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:07Z\", \"orderNumber\": 3960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 404, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:39.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:07Z\", \"orderNumber\": 3970000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 405, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:39.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:07Z\", \"orderNumber\": 3980000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 406, \"clock\": \"PT05M30.00S\", \"timeActual\": \"2021-01-16T02:05:09.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 203516, \"x\": 6.915243101182654, \"y\": 55.70618872549019, \"side\": \"left\", \"shotDistance\": 3.11, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:15Z\", \"orderNumber\": 3990000, \"xLegacy\": -29, \"yLegacy\": 13, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Ennis III driving finger roll Layup\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 407, \"clock\": \"PT05M26.00S\", \"timeActual\": \"2021-01-16T02:05:13.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:13Z\", \"orderNumber\": 4000000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 406, \"reboundTotal\": 7, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 6, \"description\": \"K. Birch REBOUND (Off:6 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 408, \"clock\": \"PT05M26.00S\", \"timeActual\": \"2021-01-16T02:05:13.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\", \"2ndchance\"], \"personId\": 203920, \"x\": 5.590000152587891, \"y\": 50.0, \"side\": \"left\", \"shotDistance\": 0.0, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:13Z\", \"orderNumber\": 4010000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"K. Birch tip Layup (10 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 409, \"clock\": \"PT05M12.00S\", \"timeActual\": \"2021-01-16T02:05:28.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1627759, \"x\": 79.7634691195795, \"y\": 65.28799019607843, \"side\": \"right\", \"shotDistance\": 15.75, \"possession\": 1610612738, \"scoreHome\": \"76\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:36Z\", \"orderNumber\": 4020000, \"xLegacy\": 76, \"yLegacy\": 138, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 21, \"description\": \"J. Brown 15' pullup Jump Shot (21 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 410, \"clock\": \"PT05M00.00S\", \"timeActual\": \"2021-01-16T02:05:40.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628407, \"x\": 5.995400788436268, \"y\": 55.70618872549019, \"side\": \"left\", \"shotDistance\": 2.88, \"possession\": 1610612753, \"scoreHome\": \"76\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:44Z\", \"orderNumber\": 4030000, \"xLegacy\": -29, \"yLegacy\": 4, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon driving Layup\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 411, \"clock\": \"PT04M58.00S\", \"timeActual\": \"2021-01-16T02:05:42.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"76\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:44Z\", \"orderNumber\": 4040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 410, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:3)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 412, \"clock\": \"PT04M52.00S\", \"timeActual\": \"2021-01-16T02:05:47.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1630202, \"x\": 93.51182654402102, \"y\": 3.010110294117647, \"side\": \"right\", \"shotDistance\": 23.51, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:53Z\", \"orderNumber\": 4050000, \"xLegacy\": -235, \"yLegacy\": 8, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"P. Pritchard 3PT (13 PTS) (J. Brown 8 AST)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 8}, {\"actionNumber\": 414, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T02:06:01.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:06:01Z\", \"orderNumber\": 4070000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 415, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T02:07:59.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203516, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:08:39Z\", \"orderNumber\": 4080000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Ennis III\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 416, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T02:07:59.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:08:39Z\", \"orderNumber\": 4090000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 417, \"clock\": \"PT04M25.00S\", \"timeActual\": \"2021-01-16T02:09:12.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630175, \"x\": 34.37910643889619, \"y\": 27.029718137254903, \"side\": \"left\", \"shotDistance\": 29.41, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:31Z\", \"orderNumber\": 4100000, \"xLegacy\": 115, \"yLegacy\": 271, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 29' 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 418, \"clock\": \"PT04M24.00S\", \"timeActual\": \"2021-01-16T02:09:13.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:31Z\", \"orderNumber\": 4110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 417, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 419, \"clock\": \"PT04M24.00S\", \"timeActual\": \"2021-01-16T02:09:23.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"shot clock\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:09:37Z\", \"orderNumber\": 4120000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"ORL shot clock Team TURNOVER\", \"personIdsFilter\": []}, {\"actionNumber\": 420, \"clock\": \"PT04M08.00S\", \"timeActual\": \"2021-01-16T02:09:42.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630202, \"x\": 67.23061760840999, \"y\": 21.39246323529412, \"side\": \"right\", \"shotDistance\": 29.28, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:02Z\", \"orderNumber\": 4130000, \"xLegacy\": -143, \"yLegacy\": 256, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 29' 3PT\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 421, \"clock\": \"PT04M03.00S\", \"timeActual\": \"2021-01-16T02:09:47.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:09:47Z\", \"orderNumber\": 4140000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 420, \"reboundTotal\": 8, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 3, \"description\": \"D. Bacon REBOUND (Off:3 Def:5)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 422, \"clock\": \"PT03M53.00S\", \"timeActual\": \"2021-01-16T02:09:57.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203082, \"x\": 4.812746386333772, \"y\": 12.568933823529413, \"side\": \"left\", \"shotDistance\": 18.73, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:07Z\", \"orderNumber\": 4150000, \"xLegacy\": 187, \"yLegacy\": -7, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 18' Jump Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 423, \"clock\": \"PT03M52.00S\", \"timeActual\": \"2021-01-16T02:09:58.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:19:36Z\", \"orderNumber\": 4160000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 422, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 2, \"description\": \"N. Vucevic REBOUND (Off:2 Def:4)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 424, \"clock\": \"PT03M48.00S\", \"timeActual\": \"2021-01-16T02:10:02.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1628407, \"x\": 33.459264126149804, \"y\": 39.28462009803921, \"side\": \"left\", \"shotDistance\": 26.74, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:10Z\", \"orderNumber\": 4170000, \"xLegacy\": 54, \"yLegacy\": 262, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 26' 3PT\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 425, \"clock\": \"PT03M46.00S\", \"timeActual\": \"2021-01-16T02:10:04.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:10Z\", \"orderNumber\": 4180000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 424, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:4)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 426, \"clock\": \"PT03M39.00S\", \"timeActual\": \"2021-01-16T02:10:11.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:17Z\", \"orderNumber\": 4190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"J. Teague bad pass TURNOVER (1 TO)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952, 203920], \"stealPlayerName\": \"Birch\", \"stealPersonId\": 203920}, {\"actionNumber\": 427, \"clock\": \"PT03M39.00S\", \"timeActual\": \"2021-01-16T02:10:11.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:13Z\", \"orderNumber\": 4200000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"K. Birch STEAL (1 STL)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 428, \"clock\": \"PT03M30.00S\", \"timeActual\": \"2021-01-16T02:10:20.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630175, \"x\": 27.414586070959263, \"y\": 85.85324754901961, \"side\": \"left\", \"shotDistance\": 27.25, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:25Z\", \"orderNumber\": 4210000, \"xLegacy\": -179, \"yLegacy\": 205, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 27' 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 429, \"clock\": \"PT03M27.00S\", \"timeActual\": \"2021-01-16T02:10:23.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:25Z\", \"orderNumber\": 4220000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 428, \"reboundTotal\": 7, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:5)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 430, \"clock\": \"PT03M09.00S\", \"timeActual\": \"2021-01-16T02:10:41.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628464, \"x\": 90.3580814717477, \"y\": 47.86305147058824, \"side\": \"right\", \"shotDistance\": 3.96, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:47Z\", \"orderNumber\": 4230000, \"xLegacy\": -11, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"D. Theis cutting DUNK (6 PTS) (P. Pritchard 2 AST)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464, 1630202], \"assistPlayerNameInitial\": \"P. Pritchard\", \"assistPersonId\": 1630202, \"assistTotal\": 2}, {\"actionNumber\": 432, \"clock\": \"PT02M50.00S\", \"timeActual\": \"2021-01-16T02:11:00.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 202696, \"x\": 28.07161629434954, \"y\": 78.01011029411765, \"side\": \"left\", \"shotDistance\": 25.36, \"possession\": 1610612753, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:07Z\", \"orderNumber\": 4250000, \"xLegacy\": -140, \"yLegacy\": 211, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 25' 3PT\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 433, \"clock\": \"PT02M48.00S\", \"timeActual\": \"2021-01-16T02:11:02.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:07Z\", \"orderNumber\": 4260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 432, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"P. Pritchard REBOUND (Off:0 Def:2)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 434, \"clock\": \"PT02M44.00S\", \"timeActual\": \"2021-01-16T02:11:06.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1627759, \"x\": 67.7562417871222, \"y\": 20.166973039215684, \"side\": \"right\", \"shotDistance\": 29.17, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:20Z\", \"orderNumber\": 4270000, \"xLegacy\": -149, \"yLegacy\": 251, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 29' 3PT\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 435, \"clock\": \"PT02M41.00S\", \"timeActual\": \"2021-01-16T02:11:09.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:20Z\", \"orderNumber\": 4280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 434, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:5)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 436, \"clock\": \"PT02M33.00S\", \"timeActual\": \"2021-01-16T02:11:17.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"lost ball\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:24Z\", \"orderNumber\": 4290000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 5, \"description\": \"C. Anthony lost ball TURNOVER (5 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 201952], \"stealPlayerName\": \"Teague\", \"stealPersonId\": 201952}, {\"actionNumber\": 437, \"clock\": \"PT02M33.00S\", \"timeActual\": \"2021-01-16T02:11:17.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:21:26Z\", \"orderNumber\": 4300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Teague STEAL (2 STL)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 438, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:25.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"take\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:38Z\", \"officialId\": 1627541, \"orderNumber\": 4310000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"N. Vucevic take personal FOUL (2 PF)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 440, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4330000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Brown\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 441, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4340000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 442, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4350000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 443, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4360000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: N. Vucevic\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 444, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4370000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: C. Anthony\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 445, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4380000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 446, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4390000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 447, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4400000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 448, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4410000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Bone\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 449, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4420000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: G. Clark\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 450, \"clock\": \"PT02M17.00S\", \"timeActual\": \"2021-01-16T02:12:16.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 1629750, \"x\": 90.62089356110381, \"y\": 54.72579656862745, \"side\": \"right\", \"shotDistance\": 4.28, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:12:24Z\", \"orderNumber\": 4430000, \"xLegacy\": 24, \"yLegacy\": 36, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"J. Green driving Layup (4 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 451, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:12:38.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:04Z\", \"officialId\": 201638, \"orderNumber\": 4440000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"D. Theis shooting personal FOUL (1 PF) (Gordon 2 FT)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 453, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:17.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:43Z\", \"orderNumber\": 4460000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon Free Throw 1 of 2\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 454, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:17.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\", \"deadball\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:43Z\", \"orderNumber\": 4470000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 453, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 455, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:18.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:22Z\", \"orderNumber\": 4480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 456, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:18.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:22Z\", \"orderNumber\": 4490000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: S. Ojeleye\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 457, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:17.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:43Z\", \"orderNumber\": 4500000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon Free Throw 2 of 2\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 458, \"clock\": \"PT01M56.00S\", \"timeActual\": \"2021-01-16T02:13:19.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:43Z\", \"orderNumber\": 4510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 457, \"reboundTotal\": 8, \"reboundDefensiveTotal\": 6, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:6)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 459, \"clock\": \"PT01M43.00S\", \"timeActual\": \"2021-01-16T02:13:52.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 69.59592641261499, \"y\": 18.696384803921568, \"side\": \"right\", \"shotDistance\": 28.09, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:01Z\", \"orderNumber\": 4520000, \"xLegacy\": -157, \"yLegacy\": 233, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 28' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 460, \"clock\": \"PT01M38.00S\", \"timeActual\": \"2021-01-16T02:13:57.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:01Z\", \"orderNumber\": 4530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 459, \"reboundTotal\": 8, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 6, \"description\": \"K. Birch REBOUND (Off:6 Def:2)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 461, \"clock\": \"PT01M31.00S\", \"timeActual\": \"2021-01-16T02:14:04.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203920, \"x\": 13.354139290407357, \"y\": 43.94148284313725, \"side\": \"left\", \"shotDistance\": 7.9, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:10Z\", \"orderNumber\": 4540000, \"xLegacy\": 30, \"yLegacy\": 73, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS K. Birch 7' driving floating Shot\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 462, \"clock\": \"PT01M29.00S\", \"timeActual\": \"2021-01-16T02:14:06.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:10Z\", \"orderNumber\": 4550000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 461, \"reboundTotal\": 9, \"reboundDefensiveTotal\": 7, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:7)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 463, \"clock\": \"PT01M18.00S\", \"timeActual\": \"2021-01-16T02:14:17.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630202, \"x\": 90.22667542706965, \"y\": 45.90226715686275, \"side\": \"right\", \"shotDistance\": 4.44, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:01Z\", \"orderNumber\": 4560000, \"xLegacy\": -20, \"yLegacy\": 39, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard driving Layup\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 467, \"clock\": \"PT01M13.00S\", \"timeActual\": \"2021-01-16T02:14:22.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:01Z\", \"orderNumber\": 4570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 463, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 464, \"clock\": \"PT01M13.00S\", \"timeActual\": \"2021-01-16T02:14:57.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"heldball\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:57Z\", \"orderNumber\": 4580000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"A. Gordon\", \"jumpBallRecoverdPersonId\": 203932, \"side\": null, \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 203920, 203935], \"jumpBallWonPlayerName\": \"Birch\", \"jumpBallWonPersonId\": 203920, \"description\": \"Jump Ball K. Birch vs. M. Smart: Tip to A. Gordon\", \"jumpBallLostPlayerName\": \"Smart\", \"jumpBallLostPersonId\": 203935}, {\"actionNumber\": 468, \"clock\": \"PT01M03.00S\", \"timeActual\": \"2021-01-16T02:15:08.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629109, \"x\": 9.543363994743759, \"y\": 56.196384803921575, \"side\": \"left\", \"shotDistance\": 4.84, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:15Z\", \"orderNumber\": 4610000, \"xLegacy\": -31, \"yLegacy\": 37, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Clark driving Hook\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 469, \"clock\": \"PT01M00.00S\", \"timeActual\": \"2021-01-16T02:15:11.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:15Z\", \"orderNumber\": 4620000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 468, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:1)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 470, \"clock\": \"PT00M48.50S\", \"timeActual\": \"2021-01-16T02:15:23.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629750, \"x\": 92.46057818659659, \"y\": 49.82383578431372, \"side\": \"right\", \"shotDistance\": 1.84, \"possession\": 1610612738, \"scoreHome\": \"85\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:35Z\", \"orderNumber\": 4630000, \"xLegacy\": -1, \"yLegacy\": 18, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"J. Green cutting DUNK (6 PTS) (S. Ojeleye 1 AST)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750, 1628400], \"assistPlayerNameInitial\": \"S. Ojeleye\", \"assistPersonId\": 1628400, \"assistTotal\": 1}, {\"actionNumber\": 472, \"clock\": \"PT00M47.60S\", \"timeActual\": \"2021-01-16T02:15:32.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"85\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:32Z\", \"orderNumber\": 4650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 473, \"clock\": \"PT00M39.20S\", \"timeActual\": \"2021-01-16T02:15:52.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203082, \"x\": 18.347568988173457, \"y\": 40.75520833333333, \"side\": \"left\", \"shotDistance\": 12.86, \"possession\": 1610612753, \"scoreHome\": \"85\", \"scoreAway\": \"70\", \"edited\": \"2021-01-16T02:15:58Z\", \"orderNumber\": 4660000, \"xLegacy\": 46, \"yLegacy\": 120, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"T. Ross 12' driving floating Jump Shot (6 PTS) (A. Gordon 3 AST)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 203932], \"assistPlayerNameInitial\": \"A. Gordon\", \"assistPersonId\": 203932, \"assistTotal\": 3}, {\"actionNumber\": 475, \"clock\": \"PT00M34.40S\", \"timeActual\": \"2021-01-16T02:16:01.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 203935, \"x\": 64.47109067017082, \"y\": 40.510110294117645, \"side\": \"right\", \"shotDistance\": 28.55, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"70\", \"edited\": \"2021-01-16T02:16:14Z\", \"orderNumber\": 4680000, \"xLegacy\": -47, \"yLegacy\": 281, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 14, \"description\": \"M. Smart 28' 3PT (14 PTS)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 476, \"clock\": \"PT00M15.30S\", \"timeActual\": \"2021-01-16T02:16:23.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 6.258212877792378, \"y\": 53.01011029411765, \"side\": \"left\", \"shotDistance\": 1.64, \"possession\": 1610612753, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:16:29Z\", \"orderNumber\": 4690000, \"xLegacy\": -15, \"yLegacy\": 6, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 14, \"description\": \"A. Gordon driving Layup (14 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 477, \"clock\": \"PT00M01.00S\", \"timeActual\": \"2021-01-16T02:16:42.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630202, \"x\": 89.70105124835742, \"y\": 50.06893382352941, \"side\": \"right\", \"shotDistance\": 4.43, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:17:05Z\", \"orderNumber\": 4700000, \"xLegacy\": 0, \"yLegacy\": 44, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard driving floating Shot\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 478, \"clock\": \"PT00M00.50S\", \"timeActual\": \"2021-01-16T02:16:42.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:17:05Z\", \"orderNumber\": 4710000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 477, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 479, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T02:16:47.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:16:47Z\", \"orderNumber\": 4720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period End\", \"personIdsFilter\": []}, {\"actionNumber\": 480, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T02:19:30.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"start\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:19:30Z\", \"orderNumber\": 4730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period Start\", \"personIdsFilter\": []}, {\"actionNumber\": 481, \"clock\": \"PT11M41.00S\", \"timeActual\": \"2021-01-16T02:19:49.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 91.80354796320631, \"y\": 3.990502450980392, \"side\": \"right\", \"shotDistance\": 23.13, \"possession\": 1610612738, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:19:54Z\", \"orderNumber\": 4740000, \"xLegacy\": -230, \"yLegacy\": 25, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"S. Ojeleye 3PT (8 PTS) (P. Pritchard 3 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1630202], \"assistPlayerNameInitial\": \"P. Pritchard\", \"assistPersonId\": 1630202, \"assistTotal\": 3}, {\"actionNumber\": 483, \"clock\": \"PT11M24.00S\", \"timeActual\": \"2021-01-16T02:20:06.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203082, \"x\": 23.209592641261498, \"y\": 12.814031862745098, \"side\": \"left\", \"shotDistance\": 24.9, \"possession\": 1610612753, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:12Z\", \"orderNumber\": 4760000, \"xLegacy\": 186, \"yLegacy\": 166, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 24' 3PT\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 484, \"clock\": \"PT11M20.00S\", \"timeActual\": \"2021-01-16T02:20:10.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:12Z\", \"orderNumber\": 4770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 483, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"P. Pritchard REBOUND (Off:0 Def:3)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 485, \"clock\": \"PT11M05.00S\", \"timeActual\": \"2021-01-16T02:20:24.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 87.59855453350855, \"y\": 96.39246323529412, \"side\": \"right\", \"shotDistance\": 24.07, \"possession\": 1610612738, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:39Z\", \"orderNumber\": 4780000, \"xLegacy\": 232, \"yLegacy\": 64, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 24' step back 3PT\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 486, \"clock\": \"PT11M02.00S\", \"timeActual\": \"2021-01-16T02:20:27.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:39Z\", \"orderNumber\": 4790000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 485, \"reboundTotal\": 10, \"reboundDefensiveTotal\": 7, \"reboundOffensiveTotal\": 3, \"description\": \"D. Theis REBOUND (Off:3 Def:7)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 487, \"clock\": \"PT11M00.00S\", \"timeActual\": \"2021-01-16T02:20:29.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628464, \"x\": 94.40999984741211, \"y\": 50.0, \"side\": \"right\", \"shotDistance\": 0.0, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:29Z\", \"orderNumber\": 4800000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"D. Theis tip Layup (8 PTS)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 488, \"clock\": \"PT10M50.00S\", \"timeActual\": \"2021-01-16T02:20:39.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203920, \"x\": 10.988830486202366, \"y\": 49.333639705882355, \"side\": \"left\", \"shotDistance\": 5.09, \"possession\": 1610612753, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:44Z\", \"orderNumber\": 4810000, \"xLegacy\": 3, \"yLegacy\": 51, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS K. Birch driving Layup\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 489, \"clock\": \"PT10M48.00S\", \"timeActual\": \"2021-01-16T02:20:41.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:44Z\", \"orderNumber\": 4820000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 488, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"P. Pritchard REBOUND (Off:0 Def:4)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 490, \"clock\": \"PT10M44.00S\", \"timeActual\": \"2021-01-16T02:20:45.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 203935, \"x\": 70.25295663600527, \"y\": 16.735600490196077, \"side\": \"right\", \"shotDistance\": 28.15, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:56Z\", \"orderNumber\": 4830000, \"xLegacy\": -166, \"yLegacy\": 227, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 28' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 491, \"clock\": \"PT10M43.00S\", \"timeActual\": \"2021-01-16T02:20:51.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:51Z\", \"orderNumber\": 4840000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 490, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 492, \"clock\": \"PT10M43.00S\", \"timeActual\": \"2021-01-16T02:20:53.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:53Z\", \"orderNumber\": 4850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 493, \"clock\": \"PT10M42.00S\", \"timeActual\": \"2021-01-16T02:21:10.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:21:28Z\", \"officialId\": 201638, \"orderNumber\": 4860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"K. Birch shooting personal FOUL (1 PF) (Ojeleye 2 FT)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920, 1628400], \"foulDrawnPlayerName\": \"Ojeleye\", \"foulDrawnPersonId\": 1628400}, {\"actionNumber\": 495, \"clock\": \"PT10M42.00S\", \"timeActual\": \"2021-01-16T02:21:38.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"94\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:21:39Z\", \"orderNumber\": 4880000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"S. Ojeleye Free Throw 1 of 2 (9 PTS)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 496, \"clock\": \"PT10M42.00S\", \"timeActual\": \"2021-01-16T02:21:55.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"95\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:21:55Z\", \"orderNumber\": 4890000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"S. Ojeleye Free Throw 2 of 2 (10 PTS)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 497, \"clock\": \"PT10M33.00S\", \"timeActual\": \"2021-01-16T02:22:05.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"95\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:13Z\", \"orderNumber\": 4900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"A. Gordon bad pass TURNOVER (2 TO)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 1629750], \"stealPlayerName\": \"Green\", \"stealPersonId\": 1629750}, {\"actionNumber\": 498, \"clock\": \"PT10M33.00S\", \"timeActual\": \"2021-01-16T02:22:05.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"95\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:07Z\", \"orderNumber\": 4910000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Green STEAL (2 STL)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 499, \"clock\": \"PT10M31.00S\", \"timeActual\": \"2021-01-16T02:22:09.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 1629750, \"x\": 91.67214191852825, \"y\": 52.76501225490197, \"side\": \"right\", \"shotDistance\": 2.93, \"possession\": 1610612738, \"scoreHome\": \"97\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:17Z\", \"orderNumber\": 4920000, \"xLegacy\": 14, \"yLegacy\": 26, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"J. Green running finger roll Layup (8 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 500, \"clock\": \"PT10M31.00S\", \"timeActual\": \"2021-01-16T02:22:12.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"97\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:22Z\", \"officialId\": 1627541, \"orderNumber\": 4930000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"T. Ross shooting personal FOUL (1 PF) (Green 1 FT)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 1629750], \"foulDrawnPlayerName\": \"Green\", \"foulDrawnPersonId\": 1629750}, {\"actionNumber\": 502, \"clock\": \"PT10M31.00S\", \"timeActual\": \"2021-01-16T02:22:40.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"98\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:40Z\", \"orderNumber\": 4950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"J. Green Free Throw 1 of 1 (9 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 503, \"clock\": \"PT10M17.00S\", \"timeActual\": \"2021-01-16T02:22:59.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"98\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:17Z\", \"officialId\": 201638, \"orderNumber\": 4960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"D. Theis personal FOUL (2 PF)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464, 203082], \"foulDrawnPlayerName\": \"Ross\", \"foulDrawnPersonId\": 203082}, {\"actionNumber\": 505, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T02:23:22.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"lost ball\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"98\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:27Z\", \"orderNumber\": 4980000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"T. Ross lost ball TURNOVER (1 TO)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 203935], \"stealPlayerName\": \"Smart\", \"stealPersonId\": 203935}, {\"actionNumber\": 506, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T02:23:22.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"98\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:24Z\", \"orderNumber\": 4990000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"M. Smart STEAL (1 STL)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 507, \"clock\": \"PT10M06.00S\", \"timeActual\": \"2021-01-16T02:23:28.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\", \"fromturnover\"], \"personId\": 1630202, \"x\": 86.72798948751642, \"y\": 97.88602941176471, \"side\": \"right\", \"shotDistance\": 25.01, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:47Z\", \"orderNumber\": 5000000, \"xLegacy\": 239, \"yLegacy\": 72, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 16, \"description\": \"P. Pritchard 25' 3PT (16 PTS) (J. Green 1 AST)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 1629750], \"assistPlayerNameInitial\": \"J. Green\", \"assistPersonId\": 1629750, \"assistTotal\": 1}, {\"actionNumber\": 509, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T02:23:53.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:53Z\", \"orderNumber\": 5020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 510, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T02:26:05.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:26:23Z\", \"orderNumber\": 5030000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 511, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T02:26:05.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:26:23Z\", \"orderNumber\": 5040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Nesmith\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 512, \"clock\": \"PT09M51.00S\", \"timeActual\": \"2021-01-16T02:26:45.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 9.937582128777924, \"y\": 95.41207107843137, \"side\": \"left\", \"shotDistance\": 23.08, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:26:50Z\", \"orderNumber\": 5050000, \"xLegacy\": -227, \"yLegacy\": 41, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Bone 3PT\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 513, \"clock\": \"PT09M48.00S\", \"timeActual\": \"2021-01-16T02:26:48.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:26:50Z\", \"orderNumber\": 5060000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 512, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:2)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 514, \"clock\": \"PT09M35.00S\", \"timeActual\": \"2021-01-16T02:27:01.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630174, \"x\": 71.69842312746385, \"y\": 20.902267156862745, \"side\": \"right\", \"shotDistance\": 25.84, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:27:09Z\", \"orderNumber\": 5070000, \"xLegacy\": -145, \"yLegacy\": 214, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith 25' 3PT\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 515, \"clock\": \"PT09M32.00S\", \"timeActual\": \"2021-01-16T02:27:04.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:27:09Z\", \"orderNumber\": 5080000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 514, \"reboundTotal\": 9, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 6, \"description\": \"K. Birch REBOUND (Off:6 Def:3)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 516, \"clock\": \"PT09M21.00S\", \"timeActual\": \"2021-01-16T02:27:15.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203932, \"x\": 25.706307490144546, \"y\": 15.510110294117647, \"side\": \"left\", \"shotDistance\": 25.59, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:27:21Z\", \"orderNumber\": 5090000, \"xLegacy\": 172, \"yLegacy\": 189, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon 25' 3PT\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 517, \"clock\": \"PT09M18.00S\", \"timeActual\": \"2021-01-16T02:27:18.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:27:21Z\", \"orderNumber\": 5100000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 516, \"reboundTotal\": 10, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 7, \"description\": \"K. Birch REBOUND (Off:7 Def:3)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 518, \"clock\": \"PT09M15.00S\", \"timeActual\": \"2021-01-16T02:27:20.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1629109, \"x\": 8.623521681997373, \"y\": 43.94148284313725, \"side\": \"left\", \"shotDistance\": 4.17, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:27:27Z\", \"orderNumber\": 5110000, \"xLegacy\": 30, \"yLegacy\": 29, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"G. Clark Layup (3 PTS) (K. Birch 1 AST)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109, 203920], \"assistPlayerNameInitial\": \"K. Birch\", \"assistPersonId\": 203920, \"assistTotal\": 1}, {\"actionNumber\": 520, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:27:37.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:10Z\", \"officialId\": 201638, \"orderNumber\": 5130000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"T. Ross shooting personal FOUL (2 PF) (Green 2 FT)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 1629750], \"foulDrawnPlayerName\": \"Green\", \"foulDrawnPersonId\": 1629750}, {\"actionNumber\": 522, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:11.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:11Z\", \"orderNumber\": 5150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS J. Green Free Throw 1 of 2\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 523, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:11.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"deadball\", \"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:11Z\", \"orderNumber\": 5160000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 522, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 524, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:13.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:16Z\", \"orderNumber\": 5170000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 525, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:13.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629682, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:16Z\", \"orderNumber\": 5180000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Waters\", \"playerName\": \"Waters\", \"playerNameI\": \"T. Waters\", \"personIdsFilter\": [1629682]}, {\"actionNumber\": 526, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:26.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"102\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:26Z\", \"orderNumber\": 5190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"J. Green Free Throw 2 of 2 (10 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 527, \"clock\": \"PT08M49.00S\", \"timeActual\": \"2021-01-16T02:28:38.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"bank\", \"qualifiers\": [], \"personId\": 203932, \"x\": 23.99802890932983, \"y\": 84.1375612745098, \"side\": \"left\", \"shotDistance\": 24.31, \"possession\": 1610612753, \"scoreHome\": \"102\", \"scoreAway\": \"77\", \"edited\": \"2021-01-16T02:28:46Z\", \"orderNumber\": 5200000, \"xLegacy\": -171, \"yLegacy\": 173, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 17, \"description\": \"A. Gordon 24' 3PT bank (17 PTS) (T. Ross 1 AST)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 203082], \"assistPlayerNameInitial\": \"T. Ross\", \"assistPersonId\": 203082, \"assistTotal\": 1}, {\"actionNumber\": 529, \"clock\": \"PT08M35.00S\", \"timeActual\": \"2021-01-16T02:28:52.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving bank\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630174, \"x\": 91.93495400788436, \"y\": 58.647365196078425, \"side\": \"right\", \"shotDistance\": 4.91, \"possession\": 1610612738, \"scoreHome\": \"104\", \"scoreAway\": \"77\", \"edited\": \"2021-01-16T02:29:07Z\", \"orderNumber\": 5220000, \"xLegacy\": 43, \"yLegacy\": 23, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"A. Nesmith driving bank Jump Shot (2 PTS) (T. Waters 1 AST)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 1}, {\"actionNumber\": 531, \"clock\": \"PT08M16.00S\", \"timeActual\": \"2021-01-16T02:29:10.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 21.50131406044678, \"y\": 27.76501225490196, \"side\": \"left\", \"shotDistance\": 18.64, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:29:18Z\", \"orderNumber\": 5240000, \"xLegacy\": 111, \"yLegacy\": 150, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"J. Bone 18' pullup Jump Shot (2 PTS)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 532, \"clock\": \"PT08M04.00S\", \"timeActual\": \"2021-01-16T02:29:24.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"bad pass\", \"qualifiers\": [], \"personId\": 1629682, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:29:54Z\", \"officialId\": 1627541, \"orderNumber\": 5250000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"T. Waters bad pass out-of-bounds TURNOVER (1 TO)\", \"playerName\": \"Waters\", \"playerNameI\": \"T. Waters\", \"personIdsFilter\": [1629682]}, {\"actionNumber\": 533, \"clock\": \"PT08M04.00S\", \"timeActual\": \"2021-01-16T02:29:29.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:29:45Z\", \"orderNumber\": 5260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 534, \"clock\": \"PT08M04.00S\", \"timeActual\": \"2021-01-16T02:29:29.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:29:45Z\", \"orderNumber\": 5270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 535, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:29:55.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:30:15Z\", \"officialId\": 1627541, \"orderNumber\": 5280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"S. Ojeleye shooting personal FOUL (2 PF) (Birch 2 FT)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 203920], \"foulDrawnPlayerName\": \"Birch\", \"foulDrawnPersonId\": 203920}, {\"actionNumber\": 537, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:30:17.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"fromturnover\"], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"80\", \"edited\": \"2021-01-16T02:30:17Z\", \"orderNumber\": 5300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"K. Birch Free Throw 1 of 2 (11 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 538, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:30:18.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"80\", \"edited\": \"2021-01-16T02:30:20Z\", \"orderNumber\": 5310000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 539, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:30:18.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"80\", \"edited\": \"2021-01-16T02:30:20Z\", \"orderNumber\": 5320000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Fall\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 540, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:30:35.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"fromturnover\"], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"81\", \"edited\": \"2021-01-16T02:30:35Z\", \"orderNumber\": 5330000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 12, \"description\": \"K. Birch Free Throw 2 of 2 (12 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 541, \"clock\": \"PT07M45.00S\", \"timeActual\": \"2021-01-16T02:30:46.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629682, \"x\": 64.20827858081472, \"y\": 53.990502450980394, \"side\": \"right\", \"shotDistance\": 28.46, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"81\", \"edited\": \"2021-01-16T02:30:50Z\", \"orderNumber\": 5340000, \"xLegacy\": 20, \"yLegacy\": 284, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"T. Waters 28' 3PT (3 PTS)\", \"playerName\": \"Waters\", \"playerNameI\": \"T. Waters\", \"personIdsFilter\": [1629682]}, {\"actionNumber\": 542, \"clock\": \"PT07M20.00S\", \"timeActual\": \"2021-01-16T02:31:11.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 18.2161629434954, \"y\": 92.47089460784314, \"side\": \"left\", \"shotDistance\": 24.33, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:18Z\", \"orderNumber\": 5350000, \"xLegacy\": -212, \"yLegacy\": 119, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"J. Bone 24' 3PT step back (5 PTS)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 543, \"clock\": \"PT07M04.00S\", \"timeActual\": \"2021-01-16T02:31:27.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 61.84296977660972, \"y\": 45.65716911764706, \"side\": \"right\", \"shotDistance\": 30.7, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:33Z\", \"orderNumber\": 5360000, \"xLegacy\": -22, \"yLegacy\": 306, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye 30' 3PT\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 544, \"clock\": \"PT07M01.00S\", \"timeActual\": \"2021-01-16T02:31:30.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:33Z\", \"orderNumber\": 5370000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 543, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"J. Bone REBOUND (Off:0 Def:3)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 545, \"clock\": \"PT06M50.00S\", \"timeActual\": \"2021-01-16T02:31:40.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1628407, \"x\": 19.92444152431012, \"y\": 33.892463235294116, \"side\": \"left\", \"shotDistance\": 15.7, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:46Z\", \"orderNumber\": 5380000, \"xLegacy\": 81, \"yLegacy\": 135, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 15' pullup Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 546, \"clock\": \"PT06M48.00S\", \"timeActual\": \"2021-01-16T02:31:42.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:46Z\", \"orderNumber\": 5390000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 545, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:3)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 547, \"clock\": \"PT06M43.00S\", \"timeActual\": \"2021-01-16T02:31:48.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fastbreak\"], \"personId\": 1630174, \"x\": 91.80354796320631, \"y\": 55.4610906862745, \"side\": \"right\", \"shotDistance\": 3.67, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:32:09Z\", \"orderNumber\": 5400000, \"xLegacy\": 27, \"yLegacy\": 25, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith running Layup - blocked\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1629109], \"blockPlayerName\": \"Clark\", \"blockPersonId\": 1629109}, {\"actionNumber\": 548, \"clock\": \"PT06M43.00S\", \"timeActual\": \"2021-01-16T02:31:48.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:50Z\", \"orderNumber\": 5410000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"G. Clark BLOCK (1 BLK)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 549, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T02:31:51.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:32:09Z\", \"orderNumber\": 5420000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 547, \"reboundTotal\": 11, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 7, \"description\": \"K. Birch REBOUND (Off:7 Def:4)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 550, \"clock\": \"PT06M34.00S\", \"timeActual\": \"2021-01-16T02:31:56.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 22.815374507227332, \"y\": 32.91207107843137, \"side\": \"left\", \"shotDistance\": 18.31, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"86\", \"edited\": \"2021-01-16T02:33:32Z\", \"orderNumber\": 5430000, \"xLegacy\": 85, \"yLegacy\": 162, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"J. Bone 18' pullup Jump Shot (7 PTS)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 551, \"clock\": \"PT06M15.00S\", \"timeActual\": \"2021-01-16T02:32:15.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"86\", \"edited\": \"2021-01-16T02:32:23Z\", \"orderNumber\": 5440000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"J. Green bad pass TURNOVER (1 TO)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750, 1629648], \"stealPlayerName\": \"Bone\", \"stealPersonId\": 1629648}, {\"actionNumber\": 552, \"clock\": \"PT06M15.00S\", \"timeActual\": \"2021-01-16T02:32:15.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"86\", \"edited\": \"2021-01-16T02:32:17Z\", \"orderNumber\": 5450000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Bone STEAL (1 STL)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 553, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:23.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\", \"fastbreak\"], \"personId\": 1628407, \"x\": 6.521024967148489, \"y\": 45.90226715686275, \"side\": \"left\", \"shotDistance\": 2.23, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:43Z\", \"orderNumber\": 5460000, \"xLegacy\": 20, \"yLegacy\": 9, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"D. Bacon running finger roll Layup (15 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 554, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:26.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:35Z\", \"officialId\": 201638, \"orderNumber\": 5470000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 3, \"foulTechnicalTotal\": 0, \"description\": \"A. Nesmith shooting personal FOUL (3 PF) (Bacon 1 FT)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 556, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:46.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:52Z\", \"orderNumber\": 5490000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 557, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:46.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630211, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:52Z\", \"orderNumber\": 5500000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: K. Mane\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211]}, {\"actionNumber\": 558, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:51.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [\"fromturnover\", \"fastbreak\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:55Z\", \"orderNumber\": 5510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon Free Throw 1 of 1\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 559, \"clock\": \"PT06M10.00S\", \"timeActual\": \"2021-01-16T02:32:53.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:55Z\", \"orderNumber\": 5520000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 558, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"J. Green REBOUND (Off:1 Def:1)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 560, \"clock\": \"PT06M02.00S\", \"timeActual\": \"2021-01-16T02:33:02.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628400, \"x\": 90.62089356110381, \"y\": 46.88265931372549, \"side\": \"right\", \"shotDistance\": 3.9, \"possession\": 1610612738, \"scoreHome\": \"109\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:33:08Z\", \"orderNumber\": 5530000, \"xLegacy\": -16, \"yLegacy\": 36, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 12, \"description\": \"S. Ojeleye Layup (12 PTS) (A. Nesmith 1 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1630174], \"assistPlayerNameInitial\": \"A. Nesmith\", \"assistPersonId\": 1630174, \"assistTotal\": 1}, {\"actionNumber\": 562, \"clock\": \"PT06M02.00S\", \"timeActual\": \"2021-01-16T02:33:06.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 1630211, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"109\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:33:39Z\", \"officialId\": 1627541, \"orderNumber\": 5550000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"K. Mane shooting personal FOUL (1 PF) (Ojeleye 1 FT)\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211, 1628400], \"foulDrawnPlayerName\": \"Ojeleye\", \"foulDrawnPersonId\": 1628400}, {\"actionNumber\": 564, \"clock\": \"PT06M02.00S\", \"timeActual\": \"2021-01-16T02:33:40.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"110\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:33:40Z\", \"orderNumber\": 5570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"S. Ojeleye Free Throw 1 of 1 (13 PTS)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 565, \"clock\": \"PT05M48.00S\", \"timeActual\": \"2021-01-16T02:33:54.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 21.76412614980289, \"y\": 59.872855392156865, \"side\": \"left\", \"shotDistance\": 15.99, \"possession\": 1610612753, \"scoreHome\": \"110\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:34:01Z\", \"orderNumber\": 5580000, \"xLegacy\": -49, \"yLegacy\": 152, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Bone 15' pullup Shot\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 566, \"clock\": \"PT05M45.00S\", \"timeActual\": \"2021-01-16T02:33:57.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"110\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:34:01Z\", \"orderNumber\": 5590000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 565, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:1)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 567, \"clock\": \"PT05M39.00S\", \"timeActual\": \"2021-01-16T02:34:03.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1630174, \"x\": 66.44218134034165, \"y\": 30.215992647058826, \"side\": \"right\", \"shotDistance\": 28.09, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:34:10Z\", \"orderNumber\": 5600000, \"xLegacy\": -99, \"yLegacy\": 263, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"A. Nesmith 28' 3PT pullup (5 PTS) (T. Waters 2 AST)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 2}, {\"actionNumber\": 569, \"clock\": \"PT05M14.00S\", \"timeActual\": \"2021-01-16T02:34:28.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"bank\", \"qualifiers\": [], \"personId\": 1630211, \"x\": 27.414586070959263, \"y\": 78.25520833333334, \"side\": \"left\", \"shotDistance\": 24.91, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:34:36Z\", \"orderNumber\": 5620000, \"xLegacy\": -141, \"yLegacy\": 205, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"K. Mane 24' 3PT bank (3 PTS) (K. Birch 2 AST)\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211, 203920], \"assistPlayerNameInitial\": \"K. Birch\", \"assistPersonId\": 203920, \"assistTotal\": 2}, {\"actionNumber\": 571, \"clock\": \"PT04M57.00S\", \"timeActual\": \"2021-01-16T02:34:46.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629750, \"x\": 68.80749014454665, \"y\": 19.186580882352942, \"side\": \"right\", \"shotDistance\": 28.58, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:34:57Z\", \"orderNumber\": 5640000, \"xLegacy\": -154, \"yLegacy\": 241, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Green 28' 3PT\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 572, \"clock\": \"PT04M54.00S\", \"timeActual\": \"2021-01-16T02:34:49.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:34:57Z\", \"orderNumber\": 5650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 571, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 573, \"clock\": \"PT04M54.00S\", \"timeActual\": \"2021-01-16T02:34:52.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:34:52Z\", \"orderNumber\": 5660000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 574, \"clock\": \"PT04M42.00S\", \"timeActual\": \"2021-01-16T02:35:12.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628407, \"x\": 19.267411300919843, \"y\": 52.27481617647059, \"side\": \"left\", \"shotDistance\": 12.91, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:21Z\", \"orderNumber\": 5670000, \"xLegacy\": -11, \"yLegacy\": 129, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 12' Jump Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 575, \"clock\": \"PT04M38.00S\", \"timeActual\": \"2021-01-16T02:35:16.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:21Z\", \"orderNumber\": 5680000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 574, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:2)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 576, \"clock\": \"PT04M21.00S\", \"timeActual\": \"2021-01-16T02:35:33.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 78.79434954007884, \"y\": 92.9610906862745, \"side\": \"right\", \"shotDistance\": 26.02, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:39Z\", \"orderNumber\": 5690000, \"xLegacy\": 215, \"yLegacy\": 147, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye 26' 3PT\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 577, \"clock\": \"PT04M19.00S\", \"timeActual\": \"2021-01-16T02:35:35.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:39Z\", \"orderNumber\": 5700000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 576, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"G. Clark REBOUND (Off:0 Def:3)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 578, \"clock\": \"PT04M10.00S\", \"timeActual\": \"2021-01-16T02:35:44.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203920, \"x\": 32.013797634691194, \"y\": 63.05912990196079, \"side\": \"left\", \"shotDistance\": 25.68, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:50Z\", \"orderNumber\": 5710000, \"xLegacy\": -65, \"yLegacy\": 248, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS K. Birch 25' 3PT\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 579, \"clock\": \"PT04M06.00S\", \"timeActual\": \"2021-01-16T02:35:48.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:50Z\", \"orderNumber\": 5720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 578, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:4)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 580, \"clock\": \"PT04M03.00S\", \"timeActual\": \"2021-01-16T02:35:55.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:55Z\", \"orderNumber\": 5730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"BOS Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 581, \"clock\": \"PT04M03.00S\", \"timeActual\": \"2021-01-16T02:37:36.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:38:15Z\", \"orderNumber\": 5740000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 582, \"clock\": \"PT04M03.00S\", \"timeActual\": \"2021-01-16T02:37:36.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:38:15Z\", \"orderNumber\": 5750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: C. Anthony\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 583, \"clock\": \"PT03M53.00S\", \"timeActual\": \"2021-01-16T02:38:59.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"traveling\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:39:05Z\", \"officialId\": 202041, \"orderNumber\": 5760000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"A. Nesmith traveling TURNOVER (1 TO)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 584, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T02:39:22.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:39:32Z\", \"officialId\": 202041, \"orderNumber\": 5770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"J. Green personal FOUL (2 PF)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750, 1630175], \"foulDrawnPlayerName\": \"Anthony\", \"foulDrawnPersonId\": 1630175}, {\"actionNumber\": 586, \"clock\": \"PT03M36.00S\", \"timeActual\": \"2021-01-16T02:39:45.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630175, \"x\": 24.129434954007884, \"y\": 30.215992647058826, \"side\": \"left\", \"shotDistance\": 20.04, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:39:52Z\", \"orderNumber\": 5790000, \"xLegacy\": 99, \"yLegacy\": 174, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 20' pullup Shot\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 587, \"clock\": \"PT03M33.00S\", \"timeActual\": \"2021-01-16T02:39:48.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:39:52Z\", \"orderNumber\": 5800000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 586, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:3)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 588, \"clock\": \"PT03M26.00S\", \"timeActual\": \"2021-01-16T02:39:56.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"alley-oop\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629605, \"x\": 92.9862023653088, \"y\": 48.84344362745098, \"side\": \"right\", \"shotDistance\": 1.46, \"possession\": 1610612738, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:03Z\", \"orderNumber\": 5810000, \"xLegacy\": -6, \"yLegacy\": 13, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"T. Fall alley-oop DUNK (2 PTS) (T. Waters 3 AST)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 3}, {\"actionNumber\": 590, \"clock\": \"PT03M07.00S\", \"timeActual\": \"2021-01-16T02:40:15.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630211, \"x\": 5.863994743758213, \"y\": 58.40226715686274, \"side\": \"left\", \"shotDistance\": 4.21, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:29Z\", \"orderNumber\": 5830000, \"xLegacy\": -42, \"yLegacy\": 3, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS K. Mane driving finger roll Layup - blocked\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211, 1629605], \"blockPlayerName\": \"Fall\", \"blockPersonId\": 1629605}, {\"actionNumber\": 591, \"clock\": \"PT03M07.00S\", \"timeActual\": \"2021-01-16T02:40:15.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:18Z\", \"orderNumber\": 5840000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"T. Fall BLOCK (1 BLK)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 592, \"clock\": \"PT03M03.00S\", \"timeActual\": \"2021-01-16T02:40:19.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:29Z\", \"orderNumber\": 5850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 590, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 1, \"description\": \"C. Anthony REBOUND (Off:1 Def:5)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 605, \"clock\": \"PT03M03.00S\", \"timeActual\": \"2021-01-16T02:40:32.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1630175, \"x\": 6.783837056504599, \"y\": 49.82383578431372, \"side\": \"left\", \"shotDistance\": 1.13, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:48:24Z\", \"orderNumber\": 5855000, \"xLegacy\": 1, \"yLegacy\": 11, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony Jump Shot - blocked\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1630174], \"blockPlayerName\": \"Nesmith\", \"blockPersonId\": 1630174}, {\"actionNumber\": 606, \"clock\": \"PT03M03.00S\", \"timeActual\": \"2021-01-16T02:40:32.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:56Z\", \"orderNumber\": 5857500, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"A. Nesmith BLOCK (1 BLK)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 607, \"clock\": \"PT03M03.00S\", \"timeActual\": \"2021-01-16T02:40:32.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:48:24Z\", \"orderNumber\": 5858750, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 605, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 593, \"clock\": \"PT03M01.00S\", \"timeActual\": \"2021-01-16T02:40:48.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"heldball\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:48:15Z\", \"orderNumber\": 5860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"C. Anthony\", \"jumpBallRecoverdPersonId\": 1630175, \"side\": null, \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1630211, 1629682], \"jumpBallWonPlayerName\": \"Mane\", \"jumpBallWonPersonId\": 1630211, \"description\": \"Jump Ball K. Mane vs. T. Waters: Tip to C. Anthony\", \"jumpBallLostPlayerName\": \"Waters\", \"jumpBallLostPersonId\": 1629682}, {\"actionNumber\": 596, \"clock\": \"PT02M57.00S\", \"timeActual\": \"2021-01-16T02:40:51.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1630175, \"x\": 5.995400788436268, \"y\": 63.05912990196079, \"side\": \"left\", \"shotDistance\": 6.54, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:56Z\", \"orderNumber\": 5890000, \"xLegacy\": -65, \"yLegacy\": 4, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 6' driving floating Shot\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 597, \"clock\": \"PT02M55.00S\", \"timeActual\": \"2021-01-16T02:40:53.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:53Z\", \"orderNumber\": 5900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 596, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:4)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 598, \"clock\": \"PT02M44.00S\", \"timeActual\": \"2021-01-16T02:41:07.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628400, \"x\": 90.75229960578186, \"y\": 52.029718137254896, \"side\": \"right\", \"shotDistance\": 3.59, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:13Z\", \"orderNumber\": 5910000, \"xLegacy\": 10, \"yLegacy\": 34, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"S. Ojeleye driving Layup (15 PTS) (T. Waters 4 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 4}, {\"actionNumber\": 600, \"clock\": \"PT02M44.00S\", \"timeActual\": \"2021-01-16T02:41:11.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"inpenalty\", \"1freethrow\"], \"personId\": 1630211, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:17Z\", \"officialId\": 201638, \"orderNumber\": 5930000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"K. Mane shooting personal FOUL (2 PF) (Ojeleye 1 FT)\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211, 1628400], \"foulDrawnPlayerName\": \"Ojeleye\", \"foulDrawnPersonId\": 1628400}, {\"actionNumber\": 602, \"clock\": \"PT02M44.00S\", \"timeActual\": \"2021-01-16T02:41:34.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:01Z\", \"orderNumber\": 5950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye Free Throw 1 of 1\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 603, \"clock\": \"PT02M42.00S\", \"timeActual\": \"2021-01-16T02:41:36.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:01Z\", \"orderNumber\": 5960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 602, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 604, \"clock\": \"PT02M42.00S\", \"timeActual\": \"2021-01-16T02:41:38.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:38Z\", \"orderNumber\": 5970000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 608, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:41:56.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"bad pass\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:05Z\", \"officialId\": 1627541, \"orderNumber\": 5980000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"G. Clark bad pass out-of-bounds TURNOVER (1 TO)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 609, \"clock\": \"PT02M20.00S\", \"timeActual\": \"2021-01-16T02:42:15.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630174, \"x\": 85.89027595269383, \"y\": 95.41207107843137, \"side\": \"right\", \"shotDistance\": 24.08, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:21Z\", \"orderNumber\": 5990000, \"xLegacy\": 227, \"yLegacy\": 80, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith 24' 3PT\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 610, \"clock\": \"PT02M17.00S\", \"timeActual\": \"2021-01-16T02:42:18.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:21Z\", \"orderNumber\": 6000000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 609, \"reboundTotal\": 12, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 7, \"description\": \"K. Birch REBOUND (Off:7 Def:5)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 611, \"clock\": \"PT02M08.00S\", \"timeActual\": \"2021-01-16T02:42:26.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629648, \"x\": 14.4053876478318, \"y\": 45.41207107843137, \"side\": \"left\", \"shotDistance\": 8.6, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:34Z\", \"orderNumber\": 6010000, \"xLegacy\": 23, \"yLegacy\": 83, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"J. Bone 8' driving Hook (9 PTS)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 612, \"clock\": \"PT02M00.00S\", \"timeActual\": \"2021-01-16T02:42:34.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 1629682, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:41Z\", \"orderNumber\": 6020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"T. Waters bad pass TURNOVER (2 TO)\", \"playerName\": \"Waters\", \"playerNameI\": \"T. Waters\", \"personIdsFilter\": [1629682, 1629109], \"stealPlayerName\": \"Clark\", \"stealPersonId\": 1629109}, {\"actionNumber\": 613, \"clock\": \"PT02M00.00S\", \"timeActual\": \"2021-01-16T02:42:34.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:36Z\", \"orderNumber\": 6030000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"G. Clark STEAL (1 STL)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 614, \"clock\": \"PT01M55.00S\", \"timeActual\": \"2021-01-16T02:42:40.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fromturnover\", \"fastbreak\"], \"personId\": 1629648, \"x\": 4.5499342969776615, \"y\": 96.39246323529412, \"side\": \"left\", \"shotDistance\": 23.22, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:47Z\", \"orderNumber\": 6040000, \"xLegacy\": -232, \"yLegacy\": -10, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Bone 3PT\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 615, \"clock\": \"PT01M51.00S\", \"timeActual\": \"2021-01-16T02:42:44.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:47Z\", \"orderNumber\": 6050000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 614, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:5)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 616, \"clock\": \"PT01M28.00S\", \"timeActual\": \"2021-01-16T02:43:06.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 63.15703022339028, \"y\": 26.53952205882353, \"side\": \"right\", \"shotDistance\": 31.64, \"possession\": 1610612738, \"scoreHome\": \"120\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:43:13Z\", \"orderNumber\": 6060000, \"xLegacy\": -117, \"yLegacy\": 294, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 18, \"description\": \"S. Ojeleye 31' 3PT (18 PTS) (A. Nesmith 2 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1630174], \"assistPlayerNameInitial\": \"A. Nesmith\", \"assistPersonId\": 1630174, \"assistTotal\": 2}, {\"actionNumber\": 618, \"clock\": \"PT01M07.00S\", \"timeActual\": \"2021-01-16T02:43:32.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving reverse\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 5.863994743758213, \"y\": 45.41207107843137, \"side\": \"left\", \"shotDistance\": 2.3, \"possession\": 1610612753, \"scoreHome\": \"120\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:43:39Z\", \"orderNumber\": 6080000, \"xLegacy\": 23, \"yLegacy\": 3, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"C. Anthony driving reverse Layup (13 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 619, \"clock\": \"PT00M58.40S\", \"timeActual\": \"2021-01-16T02:43:46.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"bank\", \"qualifiers\": [], \"personId\": 1629605, \"x\": 75.16425755584757, \"y\": 24.60171568627451, \"side\": \"right\", \"shotDistance\": 22.11, \"possession\": 1610612738, \"scoreHome\": \"122\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:44:12Z\", \"orderNumber\": 6090000, \"xLegacy\": -127, \"yLegacy\": 181, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"T. Fall 22' bank Jump Shot (4 PTS) (T. Waters 5 AST)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 5}, {\"actionNumber\": 621, \"clock\": \"PT00M51.30S\", \"timeActual\": \"2021-01-16T02:43:58.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630175, \"x\": 23.866622864651774, \"y\": 84.1375612745098, \"side\": \"left\", \"shotDistance\": 24.22, \"possession\": 1610612753, \"scoreHome\": \"122\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:44:08Z\", \"orderNumber\": 6110000, \"xLegacy\": -171, \"yLegacy\": 172, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 24' 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 622, \"clock\": \"PT00M47.40S\", \"timeActual\": \"2021-01-16T02:44:02.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"122\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:44:02Z\", \"orderNumber\": 6120000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 621, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:5)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 623, \"clock\": \"PT00M37.50S\", \"timeActual\": \"2021-01-16T02:44:12.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629605, \"x\": 90.3580814717477, \"y\": 49.82383578431372, \"side\": \"right\", \"shotDistance\": 3.81, \"possession\": 1610612738, \"scoreHome\": \"124\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:45:36Z\", \"orderNumber\": 6130000, \"xLegacy\": -1, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"T. Fall driving DUNK (6 PTS)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 625, \"clock\": \"PT00M37.50S\", \"timeActual\": \"2021-01-16T02:44:19.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"equipment issue\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:44:33Z\", \"orderNumber\": 6150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 626, \"clock\": \"PT00M27.70S\", \"timeActual\": \"2021-01-16T02:44:38.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving reverse\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 7.752956636005257, \"y\": 47.64093137254902, \"side\": \"left\", \"shotDistance\": 2.36, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:44:46Z\", \"orderNumber\": 6160000, \"xLegacy\": 12, \"yLegacy\": 20, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"C. Anthony driving reverse Layup (15 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 627, \"clock\": \"PT00M27.70S\", \"timeActual\": \"2021-01-16T02:44:41.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"inpenalty\", \"1freethrow\"], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:44:50Z\", \"officialId\": 202041, \"orderNumber\": 6170000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"T. Fall shooting personal FOUL (1 PF) (Anthony 1 FT)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605, 1630175], \"foulDrawnPlayerName\": \"Anthony\", \"foulDrawnPersonId\": 1630175}, {\"actionNumber\": 629, \"clock\": \"PT00M27.70S\", \"timeActual\": \"2021-01-16T02:45:11.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:45:14Z\", \"orderNumber\": 6190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony Free Throw 1 of 1\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 630, \"clock\": \"PT00M27.70S\", \"timeActual\": \"2021-01-16T02:45:11.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:45:25Z\", \"orderNumber\": 6200000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 629, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 6, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:6)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 631, \"clock\": \"PT00M03.70S\", \"timeActual\": \"2021-01-16T02:45:39.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"shot clock\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:45:46Z\", \"officialId\": 1627541, \"orderNumber\": 6210000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"BOS shot clock Team TURNOVER\", \"personIdsFilter\": []}, {\"actionNumber\": 632, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T02:45:52.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:45:52Z\", \"orderNumber\": 6220000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period End\", \"personIdsFilter\": []}, {\"actionNumber\": 633, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T02:46:17.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"game\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 0, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:46:17Z\", \"orderNumber\": 6230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Game End\", \"personIdsFilter\": []}]}}\n" + ] + } + ], + "source": [ + "# Query nba.live.endpoints for the score board of GameID 002200011 = IND vs NYK\n", + "from nba_api.live.nba.endpoints import playbyplay\n", + "print(playbyplay.PlayByPlay('0022000180').get_response())\n" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n" + ] + }, + { + "ename": "TypeError", + "evalue": "'list' object is not callable", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 19\u001b[0m \u001b[1;32mif\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[0misinstance\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mactions\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mlist\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 20\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mactions\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 21\u001b[1;33m \u001b[0maction_keys_values\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0me\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mformat\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mk_key\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0mv_value\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mactions\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 22\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0msorted\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0maction_keys\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 23\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0msorted\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0maction_keys\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mTypeError\u001b[0m: 'list' object is not callable" ] } ], "source": [ "# Query nba.live.endpoints for the play by play of GameID 002200011 = IND vs NYK\n", - "from nba_api.live.endpoints import playbyplay\n", - "actions = playbyplay.PlayByPlay('0022000011').get_dict()['game']['actions']\n", + "from nba_api.live.nba.endpoints import playbyplay\n", + "f = \"{k_key}:{v_type}\"\n", + "e = \"{k_key}:<{v_value}>\"\n", + "\n", + "actions = playbyplay.PlayByPlay('0022000180').get_dict()['game']['actions']\n", "action_keys = []\n", + "action_keys_values = []\n", + "no_actions = 0\n", + "no_keys = 0\n", "for actions in actions:\n", + " no_actions = no_actions + 1\n", " for key in actions.keys():\n", - " if key not in action_keys :\n", - " action_keys.append(key)\n", - "print(action_keys)\n" + " if (actions[key] == None): continue\n", + " value = f.format(k_key=key,v_type=type(actions[key]))\n", + " if value not in action_keys :\n", + " no_keys = no_keys + 1\n", + " action_keys.append(value)\n", + " if not isinstance(actions[key], list):\n", + " print(actions[key])\n", + " action_keys_values(e.format(k_key=key,v_value=actions[key]))\n", + "print(sorted(action_keys))\n", + "print(sorted(action_keys))\n", + "print(no_actions)\n", + "print(no_keys)" ] }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "{'odds': {'gameId': '0022000011', 'team': None, 'odds': 0.0, 'suspended': 1}}\n" + "{'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000180/boxscore?Format=json', 'time': '2021-01-15 23:51:25.282704'}, 'game': {'gameId': '0022000180', 'gameTimeLocal': '2021-01-15T19:30:00-05:00', 'gameTimeUTC': '2021-01-16T00:30:00Z', 'gameTimeHome': '2021-01-15T19:30:00-05:00', 'gameTimeAway': '2021-01-15T19:30:00-05:00', 'gameEt': '2021-01-15T19:30:00-05:00', 'duration': 125, 'gameCode': '20210115/ORLBOS', 'gameStatusText': 'Final', 'gameStatus': 3, 'regulationPeriods': 4, 'period': 4, 'gameClock': 'PT00M00.00S', 'attendance': 0, 'sellout': '0', 'arena': {'arenaId': 17, 'arenaName': 'TD Garden', 'arenaCity': 'Boston', 'arenaState': 'MA', 'arenaCountry': 'US', 'arenaTimezone': 'America/New_York'}, 'officials': [{'personId': 201638, 'name': 'Brent Barnaky', 'nameI': 'B. Barnaky', 'firstName': 'Brent', 'familyName': 'Barnaky', 'jerseyNum': '36', 'assignment': 'OFFICIAL2'}, {'personId': 202041, 'name': 'Kevin Scott', 'nameI': 'K. Scott', 'firstName': 'Kevin', 'familyName': 'Scott', 'jerseyNum': '24', 'assignment': 'OFFICIAL1'}, {'personId': 1627541, 'name': 'Natalie Sago', 'nameI': 'N. Sago', 'firstName': 'Natalie', 'familyName': 'Sago', 'jerseyNum': '9', 'assignment': 'OFFICIAL3'}], 'homeTeam': {'teamId': 1610612738, 'teamName': 'Celtics', 'teamCity': 'Boston', 'teamTricode': 'BOS', 'score': 124, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 34}, {'period': 2, 'periodType': 'REGULAR', 'score': 26}, {'period': 3, 'periodType': 'REGULAR', 'score': 28}, {'period': 4, 'periodType': 'REGULAR', 'score': 36}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 1627759, 'jerseyNum': '7', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 8, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 4, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 7, 'freeThrowsMade': 7, 'freeThrowsPercentage': 1.0, 'minus': 50.0, 'minutes': 'PT25M01.00S', 'minutesCalculated': 'PT25M', 'plus': 65.0, 'plusMinusPoints': 15.0, 'points': 21, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 0, 'reboundsDefensive': 2, 'reboundsOffensive': 0, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 5, 'threePointersMade': 2, 'threePointersPercentage': 0.4, 'turnovers': 2, 'twoPointersAttempted': 7, 'twoPointersMade': 4, 'twoPointersPercentage': 0.5714285714285711}, 'name': 'Jaylen Brown', 'nameI': 'J. Brown', 'firstName': 'Jaylen', 'familyName': 'Brown'}, {'status': 'ACTIVE', 'order': 2, 'personId': 1629684, 'jerseyNum': '12', 'position': 'PF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 3, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.333333333333333, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 45.0, 'minutes': 'PT23M00.00S', 'minutesCalculated': 'PT23M', 'plus': 59.0, 'plusMinusPoints': 14.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 1, 'reboundsTotal': 2, 'steals': 0, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Grant Williams', 'nameI': 'G. Williams', 'firstName': 'Grant', 'familyName': 'Williams'}, {'status': 'ACTIVE', 'order': 3, 'personId': 202684, 'jerseyNum': '13', 'position': 'C', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 5, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.4, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 44.0, 'minutes': 'PT20M29.07S', 'minutesCalculated': 'PT21M', 'plus': 57.0, 'plusMinusPoints': 13.0, 'points': 4, 'pointsFastBreak': 2, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 10, 'reboundsOffensive': 1, 'reboundsTotal': 11, 'steals': 1, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 2, 'twoPointersAttempted': 5, 'twoPointersMade': 2, 'twoPointersPercentage': 0.4}, 'name': 'Tristan Thompson', 'nameI': 'T. Thompson', 'firstName': 'Tristan', 'familyName': 'Thompson'}, {'status': 'ACTIVE', 'order': 4, 'personId': 201952, 'jerseyNum': '55', 'position': 'SG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 10, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 5, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 5, 'freeThrowsMade': 5, 'freeThrowsPercentage': 1.0, 'minus': 42.0, 'minutes': 'PT20M53.02S', 'minutesCalculated': 'PT21M', 'plus': 56.0, 'plusMinusPoints': 14.0, 'points': 17, 'pointsFastBreak': 2, 'pointsInThePaint': 6, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 2, 'threePointersAttempted': 4, 'threePointersMade': 2, 'threePointersPercentage': 0.5, 'turnovers': 1, 'twoPointersAttempted': 6, 'twoPointersMade': 3, 'twoPointersPercentage': 0.5}, 'name': 'Jeff Teague', 'nameI': 'J. Teague', 'firstName': 'Jeff', 'familyName': 'Teague'}, {'status': 'ACTIVE', 'order': 5, 'personId': 203935, 'jerseyNum': '36', 'position': 'PG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 13, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.384615384615385, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 54.0, 'minutes': 'PT27M49.00S', 'minutesCalculated': 'PT28M', 'plus': 82.0, 'plusMinusPoints': 28.0, 'points': 14, 'pointsFastBreak': 3, 'pointsInThePaint': 0, 'pointsSecondChance': 3, 'reboundsDefensive': 2, 'reboundsOffensive': 0, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 10, 'threePointersMade': 4, 'threePointersPercentage': 0.4, 'turnovers': 1, 'twoPointersAttempted': 3, 'twoPointersMade': 1, 'twoPointersPercentage': 0.333333333333333}, 'name': 'Marcus Smart', 'nameI': 'M. Smart', 'firstName': 'Marcus', 'familyName': 'Smart'}, {'status': 'ACTIVE', 'order': 6, 'personId': 1628464, 'jerseyNum': '27', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 5, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.8, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 40.0, 'minutes': 'PT20M44.00S', 'minutesCalculated': 'PT21M', 'plus': 50.0, 'plusMinusPoints': 10.0, 'points': 8, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 4, 'reboundsDefensive': 7, 'reboundsOffensive': 3, 'reboundsTotal': 10, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 5, 'twoPointersMade': 4, 'twoPointersPercentage': 0.8}, 'name': 'Daniel Theis', 'nameI': 'D. Theis', 'firstName': 'Daniel', 'familyName': 'Theis'}, {'status': 'ACTIVE', 'order': 7, 'personId': 1630202, 'jerseyNum': '11', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 3, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 13, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.461538461538462, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 40.0, 'minutes': 'PT25M16.93S', 'minutesCalculated': 'PT25M', 'plus': 64.0, 'plusMinusPoints': 24.0, 'points': 16, 'pointsFastBreak': 6, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 4, 'reboundsOffensive': 0, 'reboundsTotal': 4, 'steals': 0, 'threePointersAttempted': 8, 'threePointersMade': 4, 'threePointersPercentage': 0.5, 'turnovers': 0, 'twoPointersAttempted': 5, 'twoPointersMade': 2, 'twoPointersPercentage': 0.4}, 'name': 'Payton Pritchard', 'nameI': 'P. Pritchard', 'firstName': 'Payton', 'familyName': 'Pritchard'}, {'status': 'ACTIVE', 'order': 8, 'personId': 1628400, 'jerseyNum': '37', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 10, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.6, 'foulsOffensive': 0, 'foulsDrawn': 3, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 4, 'freeThrowsMade': 3, 'freeThrowsPercentage': 0.75, 'minus': 45.0, 'minutes': 'PT20M29.00S', 'minutesCalculated': 'PT20M', 'plus': 53.0, 'plusMinusPoints': 8.0, 'points': 18, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 2, 'reboundsDefensive': 6, 'reboundsOffensive': 0, 'reboundsTotal': 6, 'steals': 0, 'threePointersAttempted': 6, 'threePointersMade': 3, 'threePointersPercentage': 0.5, 'turnovers': 0, 'twoPointersAttempted': 4, 'twoPointersMade': 3, 'twoPointersPercentage': 0.75}, 'name': 'Semi Ojeleye', 'nameI': 'S. Ojeleye', 'firstName': 'Semi', 'familyName': 'Ojeleye'}, {'status': 'ACTIVE', 'order': 9, 'personId': 1630174, 'jerseyNum': '26', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 2, 'blocks': 1, 'blocksReceived': 1, 'fieldGoalsAttempted': 7, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.28571428571428603, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 43.0, 'minutes': 'PT18M27.00S', 'minutesCalculated': 'PT18M', 'plus': 39.0, 'plusMinusPoints': -4.0, 'points': 5, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 5, 'threePointersMade': 1, 'threePointersPercentage': 0.2, 'turnovers': 1, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Aaron Nesmith', 'nameI': 'A. Nesmith', 'firstName': 'Aaron', 'familyName': 'Nesmith'}, {'status': 'ACTIVE', 'order': 10, 'personId': 1629750, 'jerseyNum': '43', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 6, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.666666666666666, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 3, 'freeThrowsMade': 2, 'freeThrowsPercentage': 0.666666666666666, 'minus': 43.0, 'minutes': 'PT20M55.98S', 'minutesCalculated': 'PT21M', 'plus': 53.0, 'plusMinusPoints': 10.0, 'points': 10, 'pointsFastBreak': 0, 'pointsInThePaint': 8, 'pointsSecondChance': 2, 'reboundsDefensive': 1, 'reboundsOffensive': 1, 'reboundsTotal': 2, 'steals': 2, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 4, 'twoPointersMade': 4, 'twoPointersPercentage': 1.0}, 'name': 'Javonte Green', 'nameI': 'J. Green', 'firstName': 'Javonte', 'familyName': 'Green'}, {'status': 'ACTIVE', 'order': 11, 'personId': 1629682, 'jerseyNum': '51', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 5, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 1, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 1.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 23.0, 'minutes': 'PT09M00.00S', 'minutesCalculated': 'PT09M', 'plus': 22.0, 'plusMinusPoints': -1.0, 'points': 3, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 1, 'threePointersMade': 1, 'threePointersPercentage': 1.0, 'turnovers': 2, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Tremont Waters', 'nameI': 'T. Waters', 'firstName': 'Tremont', 'familyName': 'Waters'}, {'status': 'ACTIVE', 'order': 12, 'personId': 1629605, 'jerseyNum': '99', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 3, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 1.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 16.0, 'minutes': 'PT07M55.00S', 'minutesCalculated': 'PT08M', 'plus': 20.0, 'plusMinusPoints': 4.0, 'points': 6, 'pointsFastBreak': 0, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 5, 'reboundsOffensive': 0, 'reboundsTotal': 5, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 3, 'twoPointersMade': 3, 'twoPointersPercentage': 1.0}, 'name': 'Tacko Fall', 'nameI': 'T. Fall', 'firstName': 'Tacko', 'familyName': 'Fall'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_HEALTH_AND_SAFETY_PROTOCOLS', 'order': 13, 'personId': 1629035, 'jerseyNum': '4', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Carsen Edwards', 'nameI': 'C. Edwards', 'firstName': 'Carsen', 'familyName': 'Edwards'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Wrist; Surgery', 'order': 14, 'personId': 1629641, 'jerseyNum': '45', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Romeo Langford', 'nameI': 'R. Langford', 'firstName': 'Romeo', 'familyName': 'Langford'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_HEALTH_AND_SAFETY_PROTOCOLS', 'order': 15, 'personId': 1628369, 'jerseyNum': '0', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jayson Tatum', 'nameI': 'J. Tatum', 'firstName': 'Jayson', 'familyName': 'Tatum'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Injury Recovery', 'order': 16, 'personId': 202689, 'jerseyNum': '8', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Kemba Walker', 'nameI': 'K. Walker', 'firstName': 'Kemba', 'familyName': 'Walker'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_HEALTH_AND_SAFETY_PROTOCOLS', 'order': 17, 'personId': 1629057, 'jerseyNum': '44', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Robert Williams III', 'nameI': 'R. Williams III', 'firstName': 'Robert', 'familyName': 'Williams III'}], 'statistics': {'assists': 25, 'assistsTurnoverRatio': 2.27272727272727, 'benchPoints': 66, 'biggestLead': 29, 'biggestLeadScore': '72-101', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 4, 'blocksReceived': 1, 'fastBreakPointsAttempted': 9, 'fastBreakPointsMade': 5, 'fastBreakPointsPercentage': 0.555555555555556, 'fieldGoalsAttempted': 88, 'fieldGoalsEffectiveAdjusted': 0.607954545454545, 'fieldGoalsMade': 45, 'fieldGoalsPercentage': 0.511363636363636, 'foulsOffensive': 0, 'foulsDrawn': 16, 'foulsPersonal': 18, 'foulsTeam': 18, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 19, 'freeThrowsMade': 17, 'freeThrowsPercentage': 0.894736842105263, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 124, 'pointsAgainst': 97, 'pointsFastBreak': 13, 'pointsFromTurnovers': 16, 'pointsInThePaint': 48, 'pointsInThePaintAttempted': 36, 'pointsInThePaintMade': 24, 'pointsInThePaintPercentage': 0.666666666666666, 'pointsSecondChance': 11, 'reboundsDefensive': 39, 'reboundsOffensive': 6, 'reboundsPersonal': 45, 'reboundsTeam': 6, 'reboundsTeamDefensive': 2, 'reboundsTeamOffensive': 4, 'reboundsTotal': 51, 'secondChancePointsAttempted': 6, 'secondChancePointsMade': 4, 'secondChancePointsPercentage': 0.666666666666666, 'steals': 7, 'threePointersAttempted': 42, 'threePointersMade': 17, 'threePointersPercentage': 0.40476190476190504, 'timeLeading': 'PT47M16.00S', 'timesTied': 0, 'trueShootingAttempts': 96.36, 'trueShootingPercentage': 0.6434205064342051, 'turnovers': 10, 'turnoversTeam': 1, 'turnoversTotal': 11, 'twoPointersAttempted': 46, 'twoPointersMade': 28, 'twoPointersPercentage': 0.608695652173913}}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'score': 97, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28}, {'period': 2, 'periodType': 'REGULAR', 'score': 20}, {'period': 3, 'periodType': 'REGULAR', 'score': 24}, {'period': 4, 'periodType': 'REGULAR', 'score': 25}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203516, 'jerseyNum': '11', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 4, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 41.0, 'minutes': 'PT14M34.00S', 'minutesCalculated': 'PT14M', 'plus': 36.0, 'plusMinusPoints': -5.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'James Ennis III', 'nameI': 'J. Ennis III', 'firstName': 'James', 'familyName': 'Ennis III'}, {'status': 'ACTIVE', 'order': 2, 'personId': 203932, 'jerseyNum': '00', 'position': 'PF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 3, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.416666666666667, 'foulsOffensive': 0, 'foulsDrawn': 5, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 8, 'freeThrowsMade': 4, 'freeThrowsPercentage': 0.5, 'minus': 74.0, 'minutes': 'PT28M43.00S', 'minutesCalculated': 'PT29M', 'plus': 62.0, 'plusMinusPoints': -12.0, 'points': 17, 'pointsFastBreak': 2, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 2, 'reboundsTotal': 2, 'steals': 0, 'threePointersAttempted': 5, 'threePointersMade': 3, 'threePointersPercentage': 0.6, 'turnovers': 2, 'twoPointersAttempted': 7, 'twoPointersMade': 2, 'twoPointersPercentage': 0.28571428571428603}, 'name': 'Aaron Gordon', 'nameI': 'A. Gordon', 'firstName': 'Aaron', 'familyName': 'Gordon'}, {'status': 'ACTIVE', 'order': 3, 'personId': 202696, 'jerseyNum': '9', 'position': 'C', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 4, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 13, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.461538461538462, 'foulsOffensive': 1, 'foulsDrawn': 1, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 2, 'freeThrowsPercentage': 1.0, 'minus': 70.0, 'minutes': 'PT25M58.00S', 'minutesCalculated': 'PT26M', 'plus': 51.0, 'plusMinusPoints': -19.0, 'points': 15, 'pointsFastBreak': 0, 'pointsInThePaint': 8, 'pointsSecondChance': 2, 'reboundsDefensive': 4, 'reboundsOffensive': 2, 'reboundsTotal': 6, 'steals': 2, 'threePointersAttempted': 4, 'threePointersMade': 1, 'threePointersPercentage': 0.25, 'turnovers': 1, 'twoPointersAttempted': 9, 'twoPointersMade': 5, 'twoPointersPercentage': 0.555555555555556}, 'name': 'Nikola Vucevic', 'nameI': 'N. Vucevic', 'firstName': 'Nikola', 'familyName': 'Vucevic'}, {'status': 'ACTIVE', 'order': 4, 'personId': 1628407, 'jerseyNum': '8', 'position': 'SG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 14, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.357142857142857, 'foulsOffensive': 0, 'foulsDrawn': 5, 'foulsPersonal': 1, 'foulsTechnical': 1, 'freeThrowsAttempted': 7, 'freeThrowsMade': 5, 'freeThrowsPercentage': 0.714285714285714, 'minus': 67.0, 'minutes': 'PT25M36.00S', 'minutesCalculated': 'PT26M', 'plus': 56.0, 'plusMinusPoints': -11.0, 'points': 15, 'pointsFastBreak': 6, 'pointsInThePaint': 10, 'pointsSecondChance': 5, 'reboundsDefensive': 5, 'reboundsOffensive': 3, 'reboundsTotal': 8, 'steals': 0, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 13, 'twoPointersMade': 5, 'twoPointersPercentage': 0.384615384615385}, 'name': 'Dwayne Bacon', 'nameI': 'D. Bacon', 'firstName': 'Dwayne', 'familyName': 'Bacon'}, {'status': 'ACTIVE', 'order': 5, 'personId': 1630175, 'jerseyNum': '50', 'position': 'PG', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 3, 'blocks': 0, 'blocksReceived': 2, 'fieldGoalsAttempted': 18, 'fieldGoalsMade': 7, 'fieldGoalsPercentage': 0.388888888888889, 'foulsOffensive': 1, 'foulsDrawn': 3, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 1, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 74.0, 'minutes': 'PT27M24.00S', 'minutesCalculated': 'PT27M', 'plus': 52.0, 'plusMinusPoints': -22.0, 'points': 15, 'pointsFastBreak': 0, 'pointsInThePaint': 10, 'pointsSecondChance': 0, 'reboundsDefensive': 5, 'reboundsOffensive': 1, 'reboundsTotal': 6, 'steals': 0, 'threePointersAttempted': 6, 'threePointersMade': 1, 'threePointersPercentage': 0.166666666666667, 'turnovers': 5, 'twoPointersAttempted': 12, 'twoPointersMade': 6, 'twoPointersPercentage': 0.5}, 'name': 'Cole Anthony', 'nameI': 'C. Anthony', 'firstName': 'Cole', 'familyName': 'Anthony'}, {'status': 'ACTIVE', 'order': 6, 'personId': 203920, 'jerseyNum': '24', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 8, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.625, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 2, 'freeThrowsPercentage': 1.0, 'minus': 84.0, 'minutes': 'PT32M51.00S', 'minutesCalculated': 'PT33M', 'plus': 63.0, 'plusMinusPoints': -21.0, 'points': 12, 'pointsFastBreak': 0, 'pointsInThePaint': 10, 'pointsSecondChance': 10, 'reboundsDefensive': 5, 'reboundsOffensive': 7, 'reboundsTotal': 12, 'steals': 1, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 7, 'twoPointersMade': 5, 'twoPointersPercentage': 0.714285714285714}, 'name': 'Khem Birch', 'nameI': 'K. Birch', 'firstName': 'Khem', 'familyName': 'Birch'}, {'status': 'ACTIVE', 'order': 7, 'personId': 203082, 'jerseyNum': '31', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 11, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 0.272727272727273, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 61.0, 'minutes': 'PT25M04.00S', 'minutesCalculated': 'PT25M', 'plus': 50.0, 'plusMinusPoints': -11.0, 'points': 6, 'pointsFastBreak': 0, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 5, 'reboundsOffensive': 0, 'reboundsTotal': 5, 'steals': 0, 'threePointersAttempted': 3, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 8, 'twoPointersMade': 3, 'twoPointersPercentage': 0.375}, 'name': 'Terrence Ross', 'nameI': 'T. Ross', 'firstName': 'Terrence', 'familyName': 'Ross'}, {'status': 'ACTIVE', 'order': 8, 'personId': 1629109, 'jerseyNum': '12', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 4, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 66.0, 'minutes': 'PT26M49.00S', 'minutesCalculated': 'PT27M', 'plus': 53.0, 'plusMinusPoints': -13.0, 'points': 3, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 3, 'reboundsDefensive': 3, 'reboundsOffensive': 0, 'reboundsTotal': 3, 'steals': 1, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Gary Clark', 'nameI': 'G. Clark', 'firstName': 'Gary', 'familyName': 'Clark'}, {'status': 'ACTIVE', 'order': 9, 'personId': 1629648, 'jerseyNum': '23', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 8, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 66.0, 'minutes': 'PT26M49.00S', 'minutesCalculated': 'PT27M', 'plus': 53.0, 'plusMinusPoints': -13.0, 'points': 9, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 3, 'reboundsOffensive': 0, 'reboundsTotal': 3, 'steals': 1, 'threePointersAttempted': 3, 'threePointersMade': 1, 'threePointersPercentage': 0.333333333333333, 'turnovers': 0, 'twoPointersAttempted': 5, 'twoPointersMade': 3, 'twoPointersPercentage': 0.6}, 'name': 'Jordan Bone', 'nameI': 'J. Bone', 'firstName': 'Jordan', 'familyName': 'Bone'}, {'status': 'ACTIVE', 'order': 10, 'personId': 1630211, 'jerseyNum': '4', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 2, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 17.0, 'minutes': 'PT06M12.00S', 'minutesCalculated': 'PT06M', 'plus': 9.0, 'plusMinusPoints': -8.0, 'points': 3, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 1, 'threePointersMade': 1, 'threePointersPercentage': 1.0, 'turnovers': 0, 'twoPointersAttempted': 1, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Karim Mane', 'nameI': 'K. Mane', 'firstName': 'Karim', 'familyName': 'Mane'}, {'status': 'ACTIVE', 'notPlayingReason': 'NWT_HEALTH_AND_SAFETY_PROTOCOLS', 'order': 11, 'personId': 1628964, 'jerseyNum': '5', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Mo Bamba', 'nameI': 'M. Bamba', 'firstName': 'Mo', 'familyName': 'Bamba'}, {'status': 'ACTIVE', 'notPlayingReason': 'DND_INJURY', 'notPlayingDescription': 'Back; Low spasms ', 'order': 12, 'personId': 203095, 'jerseyNum': '10', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Evan Fournier', 'nameI': 'E. Fournier', 'firstName': 'Evan', 'familyName': 'Fournier'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Knee; Injury recovery', 'order': 13, 'personId': 202329, 'jerseyNum': '2', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Al-Farouq Aminu', 'nameI': 'A. Aminu', 'firstName': 'Al-Farouq', 'familyName': 'Aminu'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Foot; Sprain', 'order': 14, 'personId': 203487, 'jerseyNum': '7', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Michael Carter-Williams', 'nameI': 'M. Carter-Williams', 'firstName': 'Michael', 'familyName': 'Carter-Williams'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Torn ACL', 'order': 15, 'personId': 1628365, 'jerseyNum': '20', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Markelle Fultz', 'nameI': 'M. Fultz', 'firstName': 'Markelle', 'familyName': 'Fultz'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Injury recovery', 'order': 16, 'personId': 1628371, 'jerseyNum': '1', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jonathan Isaac', 'nameI': 'J. Isaac', 'firstName': 'Jonathan', 'familyName': 'Isaac'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Bone bruise', 'order': 17, 'personId': 1629643, 'jerseyNum': '3', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Chuma Okeke', 'nameI': 'C. Okeke', 'firstName': 'Chuma', 'familyName': 'Okeke'}], 'statistics': {'assists': 14, 'assistsTurnoverRatio': 1.07692307692308, 'benchPoints': 33, 'biggestLead': 1, 'biggestLeadScore': '4-3', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 1, 'blocksReceived': 4, 'fastBreakPointsAttempted': 7, 'fastBreakPointsMade': 2, 'fastBreakPointsPercentage': 0.28571428571428603, 'fieldGoalsAttempted': 94, 'fieldGoalsEffectiveAdjusted': 0.441489361702128, 'fieldGoalsMade': 38, 'fieldGoalsPercentage': 0.404255319148936, 'foulsOffensive': 2, 'foulsDrawn': 18, 'foulsPersonal': 16, 'foulsTeam': 14, 'foulsTechnical': 1, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 22, 'freeThrowsMade': 14, 'freeThrowsPercentage': 0.636363636363636, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 97, 'pointsAgainst': 124, 'pointsFastBreak': 8, 'pointsFromTurnovers': 10, 'pointsInThePaint': 52, 'pointsInThePaintAttempted': 47, 'pointsInThePaintMade': 26, 'pointsInThePaintPercentage': 0.553191489361702, 'pointsSecondChance': 20, 'reboundsDefensive': 31, 'reboundsOffensive': 15, 'reboundsPersonal': 46, 'reboundsTeam': 12, 'reboundsTeamDefensive': 4, 'reboundsTeamOffensive': 8, 'reboundsTotal': 58, 'secondChancePointsAttempted': 16, 'secondChancePointsMade': 9, 'secondChancePointsPercentage': 0.5625, 'steals': 5, 'threePointersAttempted': 28, 'threePointersMade': 7, 'threePointersPercentage': 0.25, 'timeLeading': 'PT00M30.00S', 'timesTied': 0, 'trueShootingAttempts': 103.68, 'trueShootingPercentage': 0.46778549382716, 'turnovers': 11, 'turnoversTeam': 2, 'turnoversTotal': 13, 'twoPointersAttempted': 66, 'twoPointersMade': 31, 'twoPointersPercentage': 0.46969696969696995}}}}\n" ] } ], "source": [ "# Query nba.live.endpoints for the game Odds of GameID 002200011 = IND vs NYK)\n", - "from nba_api.live.endpoints import gameodds\n", - "data = gameodds.GameOdds('0022000011').get_dict()\n", + "from nba_api.live.nba.endpoints import boxscore\n", + "data = boxscore.BoxScore('0022000180').get_dict()\n", "print(data)" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "{'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000011/boxscore?Format=json', 'time': '2020-12-23 23:29:01.442782'}, 'game': {'gameId': '0022000011', 'gameTimeLocal': '2020-12-23T19:00:00-05:00', 'gameTimeUTC': '2020-12-24T00:00:00Z', 'gameTimeHome': '2020-12-23T19:00:00-05:00', 'gameTimeAway': '2020-12-23T19:00:00-05:00', 'gameEt': '2020-12-23T19:00:00-05:00', 'duration': 133, 'gameCode': '20201223/NYKIND', 'gameStatusText': 'Final', 'gameStatus': 3, 'regulationPeriods': 4, 'period': 4, 'gameClock': 'PT00M00.00S', 'attendance': 0, 'sellout': '0', 'arena': {'arenaId': 136, 'arenaName': 'Bankers Life Fieldhouse', 'arenaCity': 'Indianapolis', 'arenaState': 'IN', 'arenaCountry': 'US', 'arenaTimezone': 'America/New_York'}, 'officials': [{'personId': 200832, 'name': 'Curtis Blair', 'nameI': 'C. Blair', 'firstName': 'Curtis', 'familyName': 'Blair', 'jerseyNum': '74', 'assignment': 'OFFICIAL1'}, {'personId': 202053, 'name': 'Scott Twardoski', 'nameI': 'S. Twardoski', 'firstName': 'Scott', 'familyName': 'Twardoski', 'jerseyNum': '52', 'assignment': 'OFFICIAL2'}, {'personId': 1627541, 'name': 'Natalie Sago', 'nameI': 'N. Sago', 'firstName': 'Natalie', 'familyName': 'Sago', 'jerseyNum': '9', 'assignment': 'OFFICIAL3'}], 'homeTeam': {'teamId': 1610612754, 'teamName': 'Pacers', 'teamCity': 'Indiana', 'teamTricode': 'IND', 'score': 121, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 35}, {'period': 2, 'periodType': 'REGULAR', 'score': 26}, {'period': 3, 'periodType': 'REGULAR', 'score': 27}, {'period': 4, 'periodType': 'REGULAR', 'score': 33}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203933, 'jerseyNum': '1', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 8, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 1, 'freeThrowsMade': 1, 'freeThrowsPercentage': 1.0, 'minus': 53.0, 'minutes': 'PT22M58.00S', 'minutesCalculated': 'PT23M', 'plus': 59.0, 'plusMinusPoints': 6.0, 'points': 5, 'pointsFastBreak': 5, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 6, 'twoPointersMade': 2, 'twoPointersPercentage': 0.333333333333333}, 'name': 'T.J. Warren', 'nameI': 'T. Warren', 'firstName': 'T.J.', 'familyName': 'Warren'}, {'status': 'ACTIVE', 'order': 2, 'personId': 1627734, 'jerseyNum': '11', 'position': 'PF', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 5, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 18, 'fieldGoalsMade': 11, 'fieldGoalsPercentage': 0.611111111111111, 'foulsOffensive': 1, 'foulsDrawn': 10, 'foulsPersonal': 5, 'foulsTechnical': 0, 'freeThrowsAttempted': 12, 'freeThrowsMade': 8, 'freeThrowsPercentage': 0.666666666666666, 'minus': 81.0, 'minutes': 'PT36M48.05S', 'minutesCalculated': 'PT37M', 'plus': 93.0, 'plusMinusPoints': 12.0, 'points': 32, 'pointsFastBreak': 6, 'pointsInThePaint': 18, 'pointsSecondChance': 4, 'reboundsDefensive': 9, 'reboundsOffensive': 4, 'reboundsTotal': 13, 'steals': 1, 'threePointersAttempted': 4, 'threePointersMade': 2, 'threePointersPercentage': 0.5, 'turnovers': 4, 'twoPointersAttempted': 14, 'twoPointersMade': 9, 'twoPointersPercentage': 0.642857142857143}, 'name': 'Domantas Sabonis', 'nameI': 'D. Sabonis', 'firstName': 'Domantas', 'familyName': 'Sabonis'}, {'status': 'ACTIVE', 'order': 3, 'personId': 1626167, 'jerseyNum': '33', 'position': 'C', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 8, 'blocksReceived': 1, 'fieldGoalsAttempted': 9, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.444444444444444, 'foulsOffensive': 1, 'foulsDrawn': 3, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 2, 'freeThrowsPercentage': 1.0, 'minus': 61.0, 'minutes': 'PT28M48.00S', 'minutesCalculated': 'PT29M', 'plus': 81.0, 'plusMinusPoints': 20.0, 'points': 10, 'pointsFastBreak': 4, 'pointsInThePaint': 8, 'pointsSecondChance': 2, 'reboundsDefensive': 7, 'reboundsOffensive': 1, 'reboundsTotal': 8, 'steals': 0, 'threePointersAttempted': 4, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 2, 'twoPointersAttempted': 5, 'twoPointersMade': 4, 'twoPointersPercentage': 0.8}, 'name': 'Myles Turner', 'nameI': 'M. Turner', 'firstName': 'Myles', 'familyName': 'Turner'}, {'status': 'ACTIVE', 'order': 4, 'personId': 203506, 'jerseyNum': '4', 'position': 'SG', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 4, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 14, 'fieldGoalsMade': 9, 'fieldGoalsPercentage': 0.642857142857143, 'foulsOffensive': 0, 'foulsDrawn': 4, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 3, 'freeThrowsMade': 2, 'freeThrowsPercentage': 0.666666666666666, 'minus': 69.0, 'minutes': 'PT28M16.00S', 'minutesCalculated': 'PT28M', 'plus': 74.0, 'plusMinusPoints': 5.0, 'points': 22, 'pointsFastBreak': 2, 'pointsInThePaint': 10, 'pointsSecondChance': 4, 'reboundsDefensive': 4, 'reboundsOffensive': 0, 'reboundsTotal': 4, 'steals': 1, 'threePointersAttempted': 5, 'threePointersMade': 2, 'threePointersPercentage': 0.4, 'turnovers': 1, 'twoPointersAttempted': 9, 'twoPointersMade': 7, 'twoPointersPercentage': 0.777777777777778}, 'name': 'Victor Oladipo', 'nameI': 'V. Oladipo', 'firstName': 'Victor', 'familyName': 'Oladipo'}, {'status': 'ACTIVE', 'order': 5, 'personId': 1627763, 'jerseyNum': '7', 'position': 'PG', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 8, 'blocks': 0, 'blocksReceived': 4, 'fieldGoalsAttempted': 16, 'fieldGoalsMade': 8, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 1, 'foulsDrawn': 4, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 3, 'freeThrowsMade': 3, 'freeThrowsPercentage': 1.0, 'minus': 87.0, 'minutes': 'PT34M51.00S', 'minutesCalculated': 'PT35M', 'plus': 87.0, 'plusMinusPoints': 0.0, 'points': 21, 'pointsFastBreak': 4, 'pointsInThePaint': 8, 'pointsSecondChance': 4, 'reboundsDefensive': 5, 'reboundsOffensive': 2, 'reboundsTotal': 7, 'steals': 2, 'threePointersAttempted': 4, 'threePointersMade': 2, 'threePointersPercentage': 0.5, 'turnovers': 1, 'twoPointersAttempted': 12, 'twoPointersMade': 6, 'twoPointersPercentage': 0.5}, 'name': 'Malcolm Brogdon', 'nameI': 'M. Brogdon', 'firstName': 'Malcolm', 'familyName': 'Brogdon'}, {'status': 'ACTIVE', 'order': 6, 'personId': 203200, 'jerseyNum': '8', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 6, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.333333333333333, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 51.0, 'minutes': 'PT22M23.00S', 'minutesCalculated': 'PT23M', 'plus': 50.0, 'plusMinusPoints': -1.0, 'points': 6, 'pointsFastBreak': 2, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 4, 'reboundsOffensive': 0, 'reboundsTotal': 4, 'steals': 0, 'threePointersAttempted': 5, 'threePointersMade': 1, 'threePointersPercentage': 0.2, 'turnovers': 1, 'twoPointersAttempted': 1, 'twoPointersMade': 1, 'twoPointersPercentage': 1.0}, 'name': 'Justin Holiday', 'nameI': 'J. Holiday', 'firstName': 'Justin', 'familyName': 'Holiday'}, {'status': 'ACTIVE', 'order': 7, 'personId': 203926, 'jerseyNum': '20', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.416666666666667, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 4, 'freeThrowsMade': 3, 'freeThrowsPercentage': 0.75, 'minus': 60.0, 'minutes': 'PT28M17.00S', 'minutesCalculated': 'PT28M', 'plus': 66.0, 'plusMinusPoints': 6.0, 'points': 13, 'pointsFastBreak': 4, 'pointsInThePaint': 10, 'pointsSecondChance': 2, 'reboundsDefensive': 5, 'reboundsOffensive': 1, 'reboundsTotal': 6, 'steals': 1, 'threePointersAttempted': 6, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 6, 'twoPointersMade': 5, 'twoPointersPercentage': 0.833333333333334}, 'name': 'Doug McDermott', 'nameI': 'D. McDermott', 'firstName': 'Doug', 'familyName': 'McDermott'}, {'status': 'ACTIVE', 'order': 8, 'personId': 1628988, 'jerseyNum': '3', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 8, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 0.375, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 36.0, 'minutes': 'PT17M19.00S', 'minutesCalculated': 'PT17M', 'plus': 41.0, 'plusMinusPoints': 5.0, 'points': 7, 'pointsFastBreak': 2, 'pointsInThePaint': 4, 'pointsSecondChance': 3, 'reboundsDefensive': 2, 'reboundsOffensive': 1, 'reboundsTotal': 3, 'steals': 0, 'threePointersAttempted': 4, 'threePointersMade': 1, 'threePointersPercentage': 0.25, 'turnovers': 2, 'twoPointersAttempted': 4, 'twoPointersMade': 2, 'twoPointersPercentage': 0.5}, 'name': 'Aaron Holiday', 'nameI': 'A. Holiday', 'firstName': 'Aaron', 'familyName': 'Holiday'}, {'status': 'ACTIVE', 'order': 9, 'personId': 204456, 'jerseyNum': '9', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 5, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 3, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.666666666666666, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 4, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 37.0, 'minutes': 'PT20M19.95S', 'minutesCalculated': 'PT20M', 'plus': 54.0, 'plusMinusPoints': 17.0, 'points': 5, 'pointsFastBreak': 1, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 3, 'reboundsOffensive': 1, 'reboundsTotal': 4, 'steals': 1, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 3, 'twoPointersMade': 2, 'twoPointersPercentage': 0.666666666666666}, 'name': 'T.J. McConnell', 'nameI': 'T. McConnell', 'firstName': 'T.J.', 'familyName': 'McConnell'}, {'status': 'ACTIVE', 'order': 10, 'personId': 1629665, 'jerseyNum': '0', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jalen Lecque', 'nameI': 'J. Lecque', 'firstName': 'Jalen', 'familyName': 'Lecque'}, {'status': 'ACTIVE', 'order': 11, 'personId': 1629103, 'jerseyNum': '21', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Kelan Martin', 'nameI': 'K. Martin', 'firstName': 'Kelan', 'familyName': 'Martin'}, {'status': 'ACTIVE', 'order': 12, 'personId': 203960, 'jerseyNum': '14', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'JaKarr Sampson', 'nameI': 'J. Sampson', 'firstName': 'JaKarr', 'familyName': 'Sampson'}, {'status': 'ACTIVE', 'order': 13, 'personId': 1630199, 'jerseyNum': '2', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Cassius Stanley', 'nameI': 'C. Stanley', 'firstName': 'Cassius', 'familyName': 'Stanley'}, {'status': 'ACTIVE', 'order': 14, 'personId': 1628410, 'jerseyNum': '5', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Edmond Sumner', 'nameI': 'E. Sumner', 'firstName': 'Edmond', 'familyName': 'Sumner'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Ankle; Sprain', 'order': 15, 'personId': 1629048, 'jerseyNum': '88', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Goga Bitadze', 'nameI': 'G. Bitadze', 'firstName': 'Goga', 'familyName': 'Bitadze'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Groin; Partial Tear', 'order': 16, 'personId': 1628968, 'jerseyNum': '10', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Brian Bowen II', 'nameI': 'B. Bowen II', 'firstName': 'Brian', 'familyName': 'Bowen II'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Torn ACL', 'order': 17, 'personId': 203087, 'jerseyNum': '26', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jeremy Lamb', 'nameI': 'J. Lamb', 'firstName': 'Jeremy', 'familyName': 'Lamb'}], 'statistics': {'assists': 28, 'assistsTurnoverRatio': 2.15384615384615, 'benchPoints': 31, 'biggestLead': 18, 'biggestLeadScore': '93-111', 'biggestScoringRun': 9, 'biggestScoringRunScore': '77-83', 'blocks': 9, 'blocksReceived': 8, 'fastBreakPointsAttempted': 19, 'fastBreakPointsMade': 13, 'fastBreakPointsPercentage': 0.68421052631579, 'fieldGoalsAttempted': 94, 'fieldGoalsEffectiveAdjusted': 0.531914893617021, 'fieldGoalsMade': 46, 'fieldGoalsPercentage': 0.48936170212766, 'foulsOffensive': 3, 'foulsDrawn': 27, 'foulsPersonal': 24, 'foulsTeam': 21, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 29, 'freeThrowsMade': 21, 'freeThrowsPercentage': 0.724137931034483, 'leadChanges': 6, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 121, 'pointsAgainst': 107, 'pointsFastBreak': 30, 'pointsFromTurnovers': 21, 'pointsInThePaint': 68, 'pointsInThePaintAttempted': 54, 'pointsInThePaintMade': 34, 'pointsInThePaintPercentage': 0.62962962962963, 'pointsSecondChance': 19, 'reboundsDefensive': 40, 'reboundsOffensive': 10, 'reboundsPersonal': 50, 'reboundsTeam': 14, 'reboundsTeamDefensive': 4, 'reboundsTeamOffensive': 10, 'reboundsTotal': 64, 'secondChancePointsAttempted': 10, 'secondChancePointsMade': 7, 'secondChancePointsPercentage': 0.7, 'steals': 6, 'threePointersAttempted': 34, 'threePointersMade': 8, 'threePointersPercentage': 0.235294117647059, 'timeLeading': 'PT30M27.00S', 'timesTied': 9, 'trueShootingAttempts': 106.76, 'trueShootingPercentage': 0.56669164481079, 'turnovers': 13, 'turnoversTeam': 0, 'turnoversTotal': 13, 'twoPointersAttempted': 60, 'twoPointersMade': 38, 'twoPointersPercentage': 0.633333333333333}}, 'awayTeam': {'teamId': 1610612752, 'teamName': 'Knicks', 'teamCity': 'New York', 'teamTricode': 'NYK', 'score': 107, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 33}, {'period': 2, 'periodType': 'REGULAR', 'score': 33}, {'period': 3, 'periodType': 'REGULAR', 'score': 16}, {'period': 4, 'periodType': 'REGULAR', 'score': 25}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203493, 'jerseyNum': '25', 'position': 'SF', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 10, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.4, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 65.0, 'minutes': 'PT25M38.00S', 'minutesCalculated': 'PT26M', 'plus': 49.0, 'plusMinusPoints': -16.0, 'points': 11, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 1, 'threePointersAttempted': 8, 'threePointersMade': 3, 'threePointersPercentage': 0.375, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Reggie Bullock', 'nameI': 'R. Bullock', 'firstName': 'Reggie', 'familyName': 'Bullock'}, {'status': 'ACTIVE', 'order': 2, 'personId': 203944, 'jerseyNum': '30', 'position': 'PF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 9, 'blocks': 0, 'blocksReceived': 2, 'fieldGoalsAttempted': 15, 'fieldGoalsMade': 7, 'fieldGoalsPercentage': 0.466666666666667, 'foulsOffensive': 3, 'foulsDrawn': 5, 'foulsPersonal': 5, 'foulsTechnical': 0, 'freeThrowsAttempted': 4, 'freeThrowsMade': 3, 'freeThrowsPercentage': 0.75, 'minus': 92.0, 'minutes': 'PT35M27.96S', 'minutesCalculated': 'PT35M', 'plus': 87.0, 'plusMinusPoints': -5.0, 'points': 17, 'pointsFastBreak': 0, 'pointsInThePaint': 14, 'pointsSecondChance': 0, 'reboundsDefensive': 8, 'reboundsOffensive': 1, 'reboundsTotal': 9, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 5, 'twoPointersAttempted': 13, 'twoPointersMade': 7, 'twoPointersPercentage': 0.538461538461538}, 'name': 'Julius Randle', 'nameI': 'J. Randle', 'firstName': 'Julius', 'familyName': 'Randle'}, {'status': 'ACTIVE', 'order': 3, 'personId': 1629011, 'jerseyNum': '23', 'position': 'C', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 3, 'blocksReceived': 1, 'fieldGoalsAttempted': 2, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 51.0, 'minutes': 'PT21M10.00S', 'minutesCalculated': 'PT21M', 'plus': 34.0, 'plusMinusPoints': -17.0, 'points': 3, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 2, 'reboundsDefensive': 4, 'reboundsOffensive': 2, 'reboundsTotal': 6, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Mitchell Robinson', 'nameI': 'M. Robinson', 'firstName': 'Mitchell', 'familyName': 'Robinson'}, {'status': 'ACTIVE', 'order': 4, 'personId': 1629628, 'jerseyNum': '9', 'position': 'SG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 5, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 15, 'fieldGoalsMade': 11, 'fieldGoalsPercentage': 0.733333333333333, 'foulsOffensive': 1, 'foulsDrawn': 4, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 89.0, 'minutes': 'PT34M21.96S', 'minutesCalculated': 'PT34M', 'plus': 79.0, 'plusMinusPoints': -10.0, 'points': 26, 'pointsFastBreak': 4, 'pointsInThePaint': 16, 'pointsSecondChance': 0, 'reboundsDefensive': 8, 'reboundsOffensive': 0, 'reboundsTotal': 8, 'steals': 0, 'threePointersAttempted': 3, 'threePointersMade': 3, 'threePointersPercentage': 1.0, 'turnovers': 1, 'twoPointersAttempted': 12, 'twoPointersMade': 8, 'twoPointersPercentage': 0.666666666666666}, 'name': 'RJ Barrett', 'nameI': 'R. Barrett', 'firstName': 'RJ', 'familyName': 'Barrett'}, {'status': 'ACTIVE', 'order': 5, 'personId': 203901, 'jerseyNum': '6', 'position': 'PG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 3, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 7, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 0.428571428571429, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 65.0, 'minutes': 'PT22M10.00S', 'minutesCalculated': 'PT22M', 'plus': 50.0, 'plusMinusPoints': -15.0, 'points': 7, 'pointsFastBreak': 2, 'pointsInThePaint': 4, 'pointsSecondChance': 2, 'reboundsDefensive': 1, 'reboundsOffensive': 1, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 1, 'threePointersMade': 1, 'threePointersPercentage': 1.0, 'turnovers': 5, 'twoPointersAttempted': 6, 'twoPointersMade': 2, 'twoPointersPercentage': 0.333333333333333}, 'name': 'Elfrid Payton', 'nameI': 'E. Payton', 'firstName': 'Elfrid', 'familyName': 'Payton'}, {'status': 'ACTIVE', 'order': 6, 'personId': 203457, 'jerseyNum': '3', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 2, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 1, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 26.0, 'minutes': 'PT09M22.00S', 'minutesCalculated': 'PT09M', 'plus': 26.0, 'plusMinusPoints': 0.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 2, 'reboundsDefensive': 2, 'reboundsOffensive': 1, 'reboundsTotal': 3, 'steals': 1, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 2, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Nerlens Noel', 'nameI': 'N. Noel', 'firstName': 'Nerlens', 'familyName': 'Noel'}, {'status': 'ACTIVE', 'order': 7, 'personId': 202692, 'jerseyNum': '18', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 3, 'blocks': 1, 'blocksReceived': 3, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 7, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 9, 'freeThrowsMade': 8, 'freeThrowsPercentage': 0.888888888888889, 'minus': 72.0, 'minutes': 'PT31M40.00S', 'minutesCalculated': 'PT32M', 'plus': 76.0, 'plusMinusPoints': 4.0, 'points': 22, 'pointsFastBreak': 2, 'pointsInThePaint': 8, 'pointsSecondChance': 0, 'reboundsDefensive': 4, 'reboundsOffensive': 0, 'reboundsTotal': 4, 'steals': 1, 'threePointersAttempted': 4, 'threePointersMade': 2, 'threePointersPercentage': 0.5, 'turnovers': 1, 'twoPointersAttempted': 8, 'twoPointersMade': 4, 'twoPointersPercentage': 0.5}, 'name': 'Alec Burks', 'nameI': 'A. Burks', 'firstName': 'Alec', 'familyName': 'Burks'}, {'status': 'ACTIVE', 'order': 8, 'personId': 1630193, 'jerseyNum': '5', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 3, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.333333333333333, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 3, 'freeThrowsMade': 3, 'freeThrowsPercentage': 1.0, 'minus': 28.0, 'minutes': 'PT12M26.00S', 'minutesCalculated': 'PT12M', 'plus': 33.0, 'plusMinusPoints': 5.0, 'points': 5, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 1, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Immanuel Quickley', 'nameI': 'I. Quickley', 'firstName': 'Immanuel', 'familyName': 'Quickley'}, {'status': 'ACTIVE', 'order': 9, 'personId': 1630167, 'jerseyNum': '1', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 1, 'blocks': 2, 'blocksReceived': 1, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 56.0, 'minutes': 'PT23M33.04S', 'minutesCalculated': 'PT24M', 'plus': 52.0, 'plusMinusPoints': -4.0, 'points': 9, 'pointsFastBreak': 3, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 3, 'reboundsOffensive': 0, 'reboundsTotal': 3, 'steals': 0, 'threePointersAttempted': 7, 'threePointersMade': 3, 'threePointersPercentage': 0.428571428571429, 'turnovers': 0, 'twoPointersAttempted': 5, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Obi Toppin', 'nameI': 'O. Toppin', 'firstName': 'Obi', 'familyName': 'Toppin'}, {'status': 'ACTIVE', 'order': 10, 'personId': 1628995, 'jerseyNum': '20', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 5, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.4, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 1, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 45.0, 'minutes': 'PT18M29.00S', 'minutesCalculated': 'PT19M', 'plus': 39.0, 'plusMinusPoints': -6.0, 'points': 4, 'pointsFastBreak': 0, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 3, 'reboundsOffensive': 0, 'reboundsTotal': 3, 'steals': 2, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 2, 'twoPointersAttempted': 4, 'twoPointersMade': 2, 'twoPointersPercentage': 0.5}, 'name': 'Kevin Knox II', 'nameI': 'K. Knox II', 'firstName': 'Kevin', 'familyName': 'Knox II'}, {'status': 'ACTIVE', 'order': 11, 'personId': 1628373, 'jerseyNum': '11', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 2, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 13.0, 'minutes': 'PT04M47.00S', 'minutesCalculated': 'PT05M', 'plus': 8.0, 'plusMinusPoints': -5.0, 'points': 1, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 1, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 1, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Frank Ntilikina', 'nameI': 'F. Ntilikina', 'firstName': 'Frank', 'familyName': 'Ntilikina'}, {'status': 'ACTIVE', 'order': 12, 'personId': 1629033, 'jerseyNum': '21', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 3.0, 'minutes': 'PT00M55.04S', 'minutesCalculated': 'PT01M', 'plus': 2.0, 'plusMinusPoints': -1.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Theo Pinson', 'nameI': 'T. Pinson', 'firstName': 'Theo', 'familyName': 'Pinson'}, {'status': 'ACTIVE', 'order': 13, 'personId': 1629649, 'jerseyNum': '17', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Ignas Brazdeikis', 'nameI': 'I. Brazdeikis', 'firstName': 'Ignas', 'familyName': 'Brazdeikis'}, {'status': 'ACTIVE', 'order': 14, 'personId': 1629607, 'jerseyNum': '0', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jared Harper', 'nameI': 'J. Harper', 'firstName': 'Jared', 'familyName': 'Harper'}, {'status': 'ACTIVE', 'order': 15, 'personId': 1628372, 'jerseyNum': '4', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Dennis Smith Jr.', 'nameI': 'D. Smith Jr.', 'firstName': 'Dennis', 'familyName': 'Smith Jr.'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Groin; sore', 'order': 16, 'personId': 203085, 'jerseyNum': '8', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Austin Rivers', 'nameI': 'A. Rivers', 'firstName': 'Austin', 'familyName': 'Rivers'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Knee; sore', 'order': 17, 'personId': 1629016, 'jerseyNum': '2', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Omari Spellman', 'nameI': 'O. Spellman', 'firstName': 'Omari', 'familyName': 'Spellman'}], 'statistics': {'assists': 25, 'assistsTurnoverRatio': 1.5625, 'benchPoints': 43, 'biggestLead': 6, 'biggestLeadScore': '59-53', 'biggestScoringRun': 8, 'biggestScoringRunScore': '30-27', 'blocks': 8, 'blocksReceived': 9, 'fastBreakPointsAttempted': 11, 'fastBreakPointsMade': 5, 'fastBreakPointsPercentage': 0.45454545454545503, 'fieldGoalsAttempted': 85, 'fieldGoalsEffectiveAdjusted': 0.529411764705882, 'fieldGoalsMade': 39, 'fieldGoalsPercentage': 0.458823529411765, 'foulsOffensive': 5, 'foulsDrawn': 24, 'foulsPersonal': 27, 'foulsTeam': 22, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 23, 'freeThrowsMade': 17, 'freeThrowsPercentage': 0.739130434782609, 'leadChanges': 6, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 107, 'pointsAgainst': 121, 'pointsFastBreak': 11, 'pointsFromTurnovers': 12, 'pointsInThePaint': 52, 'pointsInThePaintAttempted': 47, 'pointsInThePaintMade': 26, 'pointsInThePaintPercentage': 0.553191489361702, 'pointsSecondChance': 6, 'reboundsDefensive': 35, 'reboundsOffensive': 5, 'reboundsPersonal': 40, 'reboundsTeam': 4, 'reboundsTeamDefensive': 1, 'reboundsTeamOffensive': 3, 'reboundsTotal': 44, 'secondChancePointsAttempted': 5, 'secondChancePointsMade': 3, 'secondChancePointsPercentage': 0.6, 'steals': 8, 'threePointersAttempted': 28, 'threePointersMade': 12, 'threePointersPercentage': 0.428571428571429, 'timeLeading': 'PT12M53.00S', 'timesTied': 9, 'trueShootingAttempts': 95.12, 'trueShootingPercentage': 0.562447434819176, 'turnovers': 16, 'turnoversTeam': 0, 'turnoversTotal': 16, 'twoPointersAttempted': 57, 'twoPointersMade': 27, 'twoPointersPercentage': 0.473684210526316}}}}\n" + "{\"meta\": {\"version\": 1, \"request\": \"https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json\", \"time\": \"2021-01-17 04:23:20.2320\", \"code\": 200}, \"scoreboard\": {\"gameDate\": \"2021-01-17\", \"leagueId\": \"00\", \"leagueName\": \"National Basketball Association\", \"games\": [{\"gameId\": \"0022000198\", \"gameCode\": \"20210117/CHIDAL\", \"gameStatus\": 2, \"gameStatusText\": \"Half\", \"period\": 2, \"gameClock\": \"PT00M00.00S\", \"gameTimeUTC\": \"2021-01-17T20:00:00Z\", \"gameEt\": \"2021-01-17T15:00:00-05:00\", \"regulationPeriods\": 4, \"seriesGameNumber\": null, \"seriesText\": null, \"homeTeam\": {\"teamId\": 1610612742, \"teamName\": \"Mavericks\", \"teamCity\": \"Dallas\", \"teamTricode\": \"DAL\", \"wins\": 6, \"losses\": 5, \"score\": 52, \"inBonus\": \"1\", \"timeoutsRemaining\": 4, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 23}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 29}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612741, \"teamName\": \"Bulls\", \"teamCity\": \"Chicago\", \"teamTricode\": \"CHI\", \"wins\": 4, \"losses\": 8, \"score\": 67, \"inBonus\": \"1\", \"timeoutsRemaining\": 5, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 27}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 40}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 1629029, \"name\": \"Luka Doncic\", \"jerseyNum\": \"77\", \"position\": \"GF\", \"teamTricode\": \"DAL\", \"playerSlug\": \"luka-doncic\", \"points\": 30, \"rebounds\": 7, \"assists\": 5}, \"awayLeaders\": {\"personId\": 202066, \"name\": \"Garrett Temple\", \"jerseyNum\": \"17\", \"position\": \"G\", \"teamTricode\": \"CHI\", \"playerSlug\": \"garrett-temple\", \"points\": 17, \"rebounds\": 1, \"assists\": 1}}, \"pbOdds\": {\"team\": \"CHI\", \"odds\": 78.06401, \"suspended\": 0}}, {\"gameId\": \"0022000196\", \"gameCode\": \"20210117/NYKBOS\", \"gameStatus\": 3, \"gameStatusText\": \"Final\", \"period\": 4, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T18:00:00Z\", \"gameEt\": \"2021-01-17T13:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612738, \"teamName\": \"Celtics\", \"teamCity\": \"Boston\", \"teamTricode\": \"BOS\", \"wins\": 8, \"losses\": 4, \"score\": 75, \"inBonus\": null, \"timeoutsRemaining\": 1, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 17}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 18}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 15}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 25}]}, \"awayTeam\": {\"teamId\": 1610612752, \"teamName\": \"Knicks\", \"teamCity\": \"New York\", \"teamTricode\": \"NYK\", \"wins\": 6, \"losses\": 8, \"score\": 105, \"inBonus\": null, \"timeoutsRemaining\": 1, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 28}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 20}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 27}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 30}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 1627759, \"name\": \"Jaylen Brown\", \"jerseyNum\": \"7\", \"position\": \"G-F\", \"teamTricode\": \"BOS\", \"playerSlug\": null, \"points\": 25, \"rebounds\": 6, \"assists\": 3}, \"awayLeaders\": {\"personId\": 203944, \"name\": \"Julius Randle\", \"jerseyNum\": \"30\", \"position\": \"F-C\", \"teamTricode\": \"NYK\", \"playerSlug\": null, \"points\": 20, \"rebounds\": 12, \"assists\": 4}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000197\", \"gameCode\": \"20210117/CLEWAS\", \"gameStatus\": 1, \"gameStatusText\": \"PPD\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T19:00:00Z\", \"gameEt\": \"2021-01-17T14:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612764, \"teamName\": \"Wizards\", \"teamCity\": \"Washington\", \"teamTricode\": \"WAS\", \"wins\": 3, \"losses\": 8, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612739, \"teamName\": \"Cavaliers\", \"teamCity\": \"Cleveland\", \"teamTricode\": \"CLE\", \"wins\": 6, \"losses\": 7, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"WAS\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"CLE\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000199\", \"gameCode\": \"20210117/PHIOKC\", \"gameStatus\": 1, \"gameStatusText\": \"7:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T00:00:00Z\", \"gameEt\": \"2021-01-17T19:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612760, \"teamName\": \"Thunder\", \"teamCity\": \"Oklahoma City\", \"teamTricode\": \"OKC\", \"wins\": 6, \"losses\": 6, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612755, \"teamName\": \"76ers\", \"teamCity\": \"Philadelphia\", \"teamTricode\": \"PHI\", \"wins\": 9, \"losses\": 5, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"OKC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"PHI\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000200\", \"gameCode\": \"20210117/UTADEN\", \"gameStatus\": 1, \"gameStatusText\": \"8:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T01:00:00Z\", \"gameEt\": \"2021-01-17T20:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612743, \"teamName\": \"Nuggets\", \"teamCity\": \"Denver\", \"teamTricode\": \"DEN\", \"wins\": 6, \"losses\": 6, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612762, \"teamName\": \"Jazz\", \"teamCity\": \"Utah\", \"teamTricode\": \"UTA\", \"wins\": 8, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"DEN\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"UTA\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000201\", \"gameCode\": \"20210117/NOPSAC\", \"gameStatus\": 1, \"gameStatusText\": \"9:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T02:00:00Z\", \"gameEt\": \"2021-01-17T21:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612758, \"teamName\": \"Kings\", \"teamCity\": \"Sacramento\", \"teamTricode\": \"SAC\", \"wins\": 5, \"losses\": 8, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612740, \"teamName\": \"Pelicans\", \"teamCity\": \"New Orleans\", \"teamTricode\": \"NOP\", \"wins\": 4, \"losses\": 7, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"SAC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"NOP\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000202\", \"gameCode\": \"20210117/INDLAC\", \"gameStatus\": 1, \"gameStatusText\": \"10:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T03:00:00Z\", \"gameEt\": \"2021-01-17T22:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612746, \"teamName\": \"Clippers\", \"teamCity\": \"LA\", \"teamTricode\": \"LAC\", \"wins\": 9, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612754, \"teamName\": \"Pacers\", \"teamCity\": \"Indiana\", \"teamTricode\": \"IND\", \"wins\": 8, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"LAC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"IND\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}]}}\n" ] } ], "source": [ "# Query nba.live.endpoints for the box score of GameID 002200011 = IND vs NYK\n", - "from nba_api.live.endpoints import boxscore\n", - "data = boxscore.BoxScore('0022000011').get_dict()\n", + "from nba_api.live.nba.endpoints import scoreboard\n", + "data = scoreboard.ScoreBoard().get_json()\n", "print(data)" ] }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "{'meta': {'version': 1, 'request': 'https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json', 'time': '2020-12-26 01:19:25.1925', 'code': 200}, 'scoreboard': {'gameDate': '2020-12-26', 'leagueId': '00', 'leagueName': 'National Basketball Association', 'games': [{'gameId': '0022000021', 'gameCode': '20201226/ATLMEM', 'gameStatus': 1, 'gameStatusText': '5:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-26T22:00:00Z', 'gameEt': '2020-12-26T17:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612763, 'teamName': 'Grizzlies', 'teamCity': 'Memphis', 'teamTricode': 'MEM', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612737, 'teamName': 'Hawks', 'teamCity': 'Atlanta', 'teamTricode': 'ATL', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'MEM', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'ATL', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000022', 'gameCode': '20201226/OKCCHA', 'gameStatus': 1, 'gameStatusText': '7:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T00:00:00Z', 'gameEt': '2020-12-26T19:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612766, 'teamName': 'Hornets', 'teamCity': 'Charlotte', 'teamTricode': 'CHA', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612760, 'teamName': 'Thunder', 'teamCity': 'Oklahoma City', 'teamTricode': 'OKC', 'wins': 0, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'CHA', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'OKC', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000023', 'gameCode': '20201226/CLEDET', 'gameStatus': 1, 'gameStatusText': '7:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T00:00:00Z', 'gameEt': '2020-12-26T19:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612765, 'teamName': 'Pistons', 'teamCity': 'Detroit', 'teamTricode': 'DET', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612739, 'teamName': 'Cavaliers', 'teamCity': 'Cleveland', 'teamTricode': 'CLE', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'DET', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'CLE', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000024', 'gameCode': '20201226/ORLWAS', 'gameStatus': 1, 'gameStatusText': '7:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T00:00:00Z', 'gameEt': '2020-12-26T19:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612764, 'teamName': 'Wizards', 'teamCity': 'Washington', 'teamTricode': 'WAS', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'WAS', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'ORL', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000025', 'gameCode': '20201226/PHINYK', 'gameStatus': 1, 'gameStatusText': '7:30 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T00:30:00Z', 'gameEt': '2020-12-26T19:30:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612752, 'teamName': 'Knicks', 'teamCity': 'New York', 'teamTricode': 'NYK', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612755, 'teamName': '76ers', 'teamCity': 'Philadelphia', 'teamTricode': 'PHI', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'NYK', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'PHI', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000026', 'gameCode': '20201226/INDCHI', 'gameStatus': 1, 'gameStatusText': '8:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T01:00:00Z', 'gameEt': '2020-12-26T20:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612741, 'teamName': 'Bulls', 'teamCity': 'Chicago', 'teamTricode': 'CHI', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612754, 'teamName': 'Pacers', 'teamCity': 'Indiana', 'teamTricode': 'IND', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'CHI', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'IND', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000027', 'gameCode': '20201226/TORSAS', 'gameStatus': 1, 'gameStatusText': '8:30 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T01:30:00Z', 'gameEt': '2020-12-26T20:30:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612759, 'teamName': 'Spurs', 'teamCity': 'San Antonio', 'teamTricode': 'SAS', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612761, 'teamName': 'Raptors', 'teamCity': 'Toronto', 'teamTricode': 'TOR', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'SAS', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'TOR', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000028', 'gameCode': '20201226/MINUTA', 'gameStatus': 1, 'gameStatusText': '9:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T02:00:00Z', 'gameEt': '2020-12-26T21:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612762, 'teamName': 'Jazz', 'teamCity': 'Utah', 'teamTricode': 'UTA', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612750, 'teamName': 'Timberwolves', 'teamCity': 'Minnesota', 'teamTricode': 'MIN', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'UTA', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'MIN', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000029', 'gameCode': '20201226/HOUPOR', 'gameStatus': 1, 'gameStatusText': '10:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T03:00:00Z', 'gameEt': '2020-12-26T22:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612757, 'teamName': 'Trail Blazers', 'teamCity': 'Portland', 'teamTricode': 'POR', 'wins': 0, 'losses': 1, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612745, 'teamName': 'Rockets', 'teamCity': 'Houston', 'teamTricode': 'HOU', 'wins': 0, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'POR', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'HOU', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000030', 'gameCode': '20201226/PHXSAC', 'gameStatus': 1, 'gameStatusText': '10:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2020-12-27T03:00:00Z', 'gameEt': '2020-12-26T22:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612758, 'teamName': 'Kings', 'teamCity': 'Sacramento', 'teamTricode': 'SAC', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612756, 'teamName': 'Suns', 'teamCity': 'Phoenix', 'teamTricode': 'PHX', 'wins': 1, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'SAC', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'PHX', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}]}}\n" + "{'meta': {'version': 1, 'request': 'https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json', 'time': '2021-01-17 08:37:04.374', 'code': 200}, 'scoreboard': {'gameDate': '2021-01-16', 'leagueId': '00', 'leagueName': 'National Basketball Association', 'games': [{'gameId': '0022000189', 'gameCode': '20210116/HOUSAS', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-16T22:00:00Z', 'gameEt': '2021-01-16T17:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612759, 'teamName': 'Spurs', 'teamCity': 'San Antonio', 'teamTricode': 'SAS', 'wins': 7, 'losses': 6, 'score': 103, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 21}, {'period': 2, 'periodType': 'REGULAR', 'score': 29}, {'period': 3, 'periodType': 'REGULAR', 'score': 25}, {'period': 4, 'periodType': 'REGULAR', 'score': 28}]}, 'awayTeam': {'teamId': 1610612745, 'teamName': 'Rockets', 'teamCity': 'Houston', 'teamTricode': 'HOU', 'wins': 4, 'losses': 7, 'score': 91, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 30}, {'period': 2, 'periodType': 'REGULAR', 'score': 23}, {'period': 3, 'periodType': 'REGULAR', 'score': 19}, {'period': 4, 'periodType': 'REGULAR', 'score': 19}]}, 'gameLeaders': {'homeLeaders': {'personId': 201942, 'name': 'DeMar DeRozan', 'jerseyNum': '10', 'position': 'G-F', 'teamTricode': 'SAS', 'playerSlug': None, 'points': 24, 'rebounds': 7, 'assists': 4}, 'awayLeaders': {'personId': 1626174, 'name': 'Christian Wood', 'jerseyNum': '35', 'position': 'F', 'teamTricode': 'HOU', 'playerSlug': None, 'points': 24, 'rebounds': 18, 'assists': 3}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000190', 'gameCode': '20210116/ORLBKN', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-16T23:00:00Z', 'gameEt': '2021-01-16T18:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612751, 'teamName': 'Nets', 'teamCity': 'Brooklyn', 'teamTricode': 'BKN', 'wins': 8, 'losses': 6, 'score': 122, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 29}, {'period': 2, 'periodType': 'REGULAR', 'score': 23}, {'period': 3, 'periodType': 'REGULAR', 'score': 32}, {'period': 4, 'periodType': 'REGULAR', 'score': 38}]}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'wins': 6, 'losses': 7, 'score': 115, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 26}, {'period': 2, 'periodType': 'REGULAR', 'score': 24}, {'period': 3, 'periodType': 'REGULAR', 'score': 33}, {'period': 4, 'periodType': 'REGULAR', 'score': 32}]}, 'gameLeaders': {'homeLeaders': {'personId': 201935, 'name': 'James Harden', 'jerseyNum': '13', 'position': 'G', 'teamTricode': 'BKN', 'playerSlug': None, 'points': 32, 'rebounds': 12, 'assists': 14}, 'awayLeaders': {'personId': 202696, 'name': 'Nikola Vucevic', 'jerseyNum': '9', 'position': 'C', 'teamTricode': 'ORL', 'playerSlug': None, 'points': 34, 'rebounds': 10, 'assists': 7}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000191', 'gameCode': '20210116/CHATOR', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-17T00:30:00Z', 'gameEt': '2021-01-16T19:30:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612761, 'teamName': 'Raptors', 'teamCity': 'Toronto', 'teamTricode': 'TOR', 'wins': 4, 'losses': 8, 'score': 116, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 31}, {'period': 2, 'periodType': 'REGULAR', 'score': 35}, {'period': 3, 'periodType': 'REGULAR', 'score': 22}, {'period': 4, 'periodType': 'REGULAR', 'score': 28}]}, 'awayTeam': {'teamId': 1610612766, 'teamName': 'Hornets', 'teamCity': 'Charlotte', 'teamTricode': 'CHA', 'wins': 6, 'losses': 8, 'score': 113, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 27}, {'period': 2, 'periodType': 'REGULAR', 'score': 37}, {'period': 3, 'periodType': 'REGULAR', 'score': 23}, {'period': 4, 'periodType': 'REGULAR', 'score': 26}]}, 'gameLeaders': {'homeLeaders': {'personId': 1627832, 'name': 'Fred VanVleet', 'jerseyNum': '23', 'position': 'G', 'teamTricode': 'TOR', 'playerSlug': None, 'points': 15, 'rebounds': 7, 'assists': 10}, 'awayLeaders': {'personId': 1626179, 'name': 'Terry Rozier', 'jerseyNum': '3', 'position': 'G', 'teamTricode': 'CHA', 'playerSlug': None, 'points': 24, 'rebounds': 9, 'assists': 2}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000192', 'gameCode': '20210116/DETMIA', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-17T01:00:00Z', 'gameEt': '2021-01-16T20:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612748, 'teamName': 'Heat', 'teamCity': 'Miami', 'teamTricode': 'MIA', 'wins': 4, 'losses': 7, 'score': 100, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 23}, {'period': 2, 'periodType': 'REGULAR', 'score': 33}, {'period': 3, 'periodType': 'REGULAR', 'score': 19}, {'period': 4, 'periodType': 'REGULAR', 'score': 25}]}, 'awayTeam': {'teamId': 1610612765, 'teamName': 'Pistons', 'teamCity': 'Detroit', 'teamTricode': 'DET', 'wins': 3, 'losses': 9, 'score': 120, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 29}, {'period': 2, 'periodType': 'REGULAR', 'score': 23}, {'period': 3, 'periodType': 'REGULAR', 'score': 38}, {'period': 4, 'periodType': 'REGULAR', 'score': 30}]}, 'gameLeaders': {'homeLeaders': {'personId': 1628389, 'name': 'Bam Adebayo', 'jerseyNum': '13', 'position': 'C-F', 'teamTricode': 'MIA', 'playerSlug': None, 'points': 28, 'rebounds': 7, 'assists': 6}, 'awayLeaders': {'personId': 203924, 'name': 'Jerami Grant', 'jerseyNum': '9', 'position': 'F', 'teamTricode': 'DET', 'playerSlug': None, 'points': 24, 'rebounds': 9, 'assists': 6}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000193', 'gameCode': '20210116/PHIMEM', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-17T01:00:00Z', 'gameEt': '2021-01-16T20:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612763, 'teamName': 'Grizzlies', 'teamCity': 'Memphis', 'teamTricode': 'MEM', 'wins': 6, 'losses': 6, 'score': 106, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 25}, {'period': 2, 'periodType': 'REGULAR', 'score': 35}, {'period': 3, 'periodType': 'REGULAR', 'score': 28}, {'period': 4, 'periodType': 'REGULAR', 'score': 18}]}, 'awayTeam': {'teamId': 1610612755, 'teamName': '76ers', 'teamCity': 'Philadelphia', 'teamTricode': 'PHI', 'wins': 9, 'losses': 5, 'score': 104, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 26}, {'period': 2, 'periodType': 'REGULAR', 'score': 28}, {'period': 3, 'periodType': 'REGULAR', 'score': 22}, {'period': 4, 'periodType': 'REGULAR', 'score': 28}]}, 'gameLeaders': {'homeLeaders': {'personId': 1629634, 'name': 'Brandon Clarke', 'jerseyNum': '15', 'position': 'F-G', 'teamTricode': 'MEM', 'playerSlug': None, 'points': 11, 'rebounds': 11, 'assists': 2}, 'awayLeaders': {'personId': 1627732, 'name': 'Ben Simmons', 'jerseyNum': '25', 'position': 'G-F', 'teamTricode': 'PHI', 'playerSlug': None, 'points': 11, 'rebounds': 16, 'assists': 9}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000194', 'gameCode': '20210116/INDPHX', 'gameStatus': 1, 'gameStatusText': 'PPD', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2021-01-17T02:00:00Z', 'gameEt': '2021-01-16T21:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612756, 'teamName': 'Suns', 'teamCity': 'Phoenix', 'teamTricode': 'PHX', 'wins': 7, 'losses': 4, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612754, 'teamName': 'Pacers', 'teamCity': 'Indiana', 'teamTricode': 'IND', 'wins': 8, 'losses': 4, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'PHX', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'IND', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000195', 'gameCode': '20210116/ATLPOR', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-17T03:00:00Z', 'gameEt': '2021-01-16T22:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612757, 'teamName': 'Trail Blazers', 'teamCity': 'Portland', 'teamTricode': 'POR', 'wins': 8, 'losses': 5, 'score': 112, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 34}, {'period': 2, 'periodType': 'REGULAR', 'score': 25}, {'period': 3, 'periodType': 'REGULAR', 'score': 27}, {'period': 4, 'periodType': 'REGULAR', 'score': 26}]}, 'awayTeam': {'teamId': 1610612737, 'teamName': 'Hawks', 'teamCity': 'Atlanta', 'teamTricode': 'ATL', 'wins': 5, 'losses': 7, 'score': 106, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 38}, {'period': 2, 'periodType': 'REGULAR', 'score': 28}, {'period': 3, 'periodType': 'REGULAR', 'score': 20}, {'period': 4, 'periodType': 'REGULAR', 'score': 20}]}, 'gameLeaders': {'homeLeaders': {'personId': 203081, 'name': 'Damian Lillard', 'jerseyNum': '0', 'position': 'G', 'teamTricode': 'POR', 'playerSlug': None, 'points': 36, 'rebounds': 7, 'assists': 7}, 'awayLeaders': {'personId': 1629027, 'name': 'Trae Young', 'jerseyNum': '11', 'position': 'G', 'teamTricode': 'ATL', 'playerSlug': None, 'points': 26, 'rebounds': 7, 'assists': 11}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}]}}\n" ] } ], "source": [ "# Query nba.live.endpoints for the score board of GameID 002200011 = IND vs NYK\n", - "from nba_api.live.endpoints import scoreboard\n", - "data = scoreboard.ScoreBoard().get_dict()\n", - "print(data)" + "from nba_api.live.nba.endpoints import todaysscoreboard\n", + "scoreboard = todaysscoreboard.TodaysScoreBoard()\n", + "print(scoreboard.get_dict())" ] }, { @@ -119,7 +488,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.5" + "version": "3.9.1" } }, "nbformat": 4, diff --git a/docs/nba_api/live/endpoints/boxscore.md b/docs/nba_api/live/endpoints/boxscore.md new file mode 100644 index 00000000..7d415fa9 --- /dev/null +++ b/docs/nba_api/live/endpoints/boxscore.md @@ -0,0 +1,343 @@ +# BoxScore +##### [nba_api/live/nba/endpoints/boxscore.py](https://github.com/swar/nba_api/blob/master/nba_api/live/nba/endpoints/boxscore.py) + +##### Endpoint URL +>[https://cdn.nba.com/static/json/liveData/boxscore/boxscore_{game_id}.json](https://cdn.nba.com/static/json/liveData/boxscore/boxscore_{game_id}.json) + +##### Valid URL +>[https://cdn.nba.com/static/json/liveData/boxscore/boxscore_0022000181.json](https://cdn.nba.com/static/json/liveData/boxscore/boxscore_0022000181.json) + +## Parameters +API Parameter Name | Python Parameter Variable | Pattern | Required | Nullable +------------ | ------------ | :-----------: | :---: | :---: +[_**GameID**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#GameID) | game_id | `^\d{10}$` | `Y` | | + + +## DataSets +#### Officials `officials` +```text +["personId", "name", "nameI", "firstName", "familyName", "jerseyNum", "assignment"] +``` + +#### HomeTeam `home_team` +```text +["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "players"["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"] +``` +#### AwayTeam `away_team` +```text +["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "players"["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"] +``` +#### Game `game` +```text +["gameId", "gameTimeLocal", "gameTimeUTC", "gameTimeHome", "gameTimeAway", "gameEt", "duration", "gameCode", "gameStatusText", "gameStatus", "regulationPeriods", "period", "gameClock", "attendance", "sellout", "arena""arenaId", "arenaName", "arenaCity", "arenaState", "arenaCountry", "arenaTimezone", "officials"["personId", "name", "nameI", "firstName", "familyName", "jerseyNum", "assignment"], "homeTeam" ["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "players"["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"], "awayTeam"["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "players"["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"]] +``` + +## JSON +```json +{ + "meta":{ + "version":1, + "code":200, + "request":"http://nba.cloud/games/0022000180/boxscore?Format=json", + "time":"2021-01-15 23:51:25.282704" + }, + "game":{ + "gameId":"0022000180", + "gameTimeLocal":"2021-01-15T19:30:00-05:00", + "gameTimeUTC":"2021-01-16T00:30:00Z", + "gameTimeHome":"2021-01-15T19:30:00-05:00", + "gameTimeAway":"2021-01-15T19:30:00-05:00", + "gameEt":"2021-01-15T19:30:00-05:00", + "duration":125, + "gameCode":"20210115/ORLBOS", + "gameStatusText":"Final", + "gameStatus":3, + "regulationPeriods":4, + "period":4, + "gameClock":"PT00M00.00S", + "attendance":0, + "sellout":"0", + "arena":{ + "arenaId":17, + "arenaName":"TD Garden", + "arenaCity":"Boston", + "arenaState":"MA", + "arenaCountry":"US", + "arenaTimezone":"America/New_York" + }, + "officials":[ + { + "personId":201638, + "name":"Brent Barnaky", + "nameI":"B. Barnaky", + "firstName":"Brent", + "familyName":"Barnaky", + "jerseyNum":"36", + "assignment":"OFFICIAL1" + } + ], + "homeTeam":{ + "teamId":1610612738, + "teamName":"Celtics", + "teamCity":"Boston", + "teamTricode":"BOS", + "score":124, + "inBonus":"1", + "timeoutsRemaining":2, + "periods":[ + { + "period":1, + "periodType":"REGULAR", + "score":34 + } + ], + "players":[ + { + "status":"ACTIVE", + "order":1, + "personId":1627759, + "jerseyNum":"7", + "position":"SF", + "starter":"1", + "oncourt":"0", + "played":"1", + "statistics":{ + "assists":8, + "blocks":0, + "blocksReceived":0, + "fieldGoalsAttempted":12, + "fieldGoalsMade":6, + "fieldGoalsPercentage":0.5, + "foulsOffensive":0, + "foulsDrawn":4, + "foulsPersonal":1, + "foulsTechnical":0, + "freeThrowsAttempted":7, + "freeThrowsMade":7, + "freeThrowsPercentage":1.0, + "minus":50.0, + "minutes":"PT25M01.00S", + "minutesCalculated":"PT25M", + "plus":65.0, + "plusMinusPoints":15.0, + "points":21, + "pointsFastBreak":0, + "pointsInThePaint":6, + "pointsSecondChance":0, + "reboundsDefensive":2, + "reboundsOffensive":0, + "reboundsTotal":2, + "steals":1, + "threePointersAttempted":5, + "threePointersMade":2, + "threePointersPercentage":0.4, + "turnovers":2, + "twoPointersAttempted":7, + "twoPointersMade":4, + "twoPointersPercentage":0.5714285714285711 + }, + "name":"Jaylen Brown", + "nameI":"J. Brown", + "firstName":"Jaylen", + "familyName":"Brown" + } + ], + "statistics":{ + "assists":25, + "assistsTurnoverRatio":2.27272727272727, + "benchPoints":66, + "biggestLead":29, + "biggestLeadScore":"72-101", + "biggestScoringRun":13, + "biggestScoringRunScore":"72-101", + "blocks":4, + "blocksReceived":1, + "fastBreakPointsAttempted":9, + "fastBreakPointsMade":5, + "fastBreakPointsPercentage":0.555555555555556, + "fieldGoalsAttempted":88, + "fieldGoalsEffectiveAdjusted":0.607954545454545, + "fieldGoalsMade":45, + "fieldGoalsPercentage":0.511363636363636, + "foulsOffensive":0, + "foulsDrawn":16, + "foulsPersonal":18, + "foulsTeam":18, + "foulsTechnical":0, + "foulsTeamTechnical":0, + "freeThrowsAttempted":19, + "freeThrowsMade":17, + "freeThrowsPercentage":0.894736842105263, + "leadChanges":4, + "minutes":"PT240M00.00S", + "minutesCalculated":"PT240M", + "points":124, + "pointsAgainst":97, + "pointsFastBreak":13, + "pointsFromTurnovers":16, + "pointsInThePaint":48, + "pointsInThePaintAttempted":36, + "pointsInThePaintMade":24, + "pointsInThePaintPercentage":0.666666666666666, + "pointsSecondChance":11, + "reboundsDefensive":39, + "reboundsOffensive":6, + "reboundsPersonal":45, + "reboundsTeam":6, + "reboundsTeamDefensive":2, + "reboundsTeamOffensive":4, + "reboundsTotal":51, + "secondChancePointsAttempted":6, + "secondChancePointsMade":4, + "secondChancePointsPercentage":0.666666666666666, + "steals":7, + "threePointersAttempted":42, + "threePointersMade":17, + "threePointersPercentage":0.40476190476190504, + "timeLeading":"PT47M16.00S", + "timesTied":0, + "trueShootingAttempts":96.36, + "trueShootingPercentage":0.6434205064342051, + "turnovers":10, + "turnoversTeam":1, + "turnoversTotal":11, + "twoPointersAttempted":46, + "twoPointersMade":28, + "twoPointersPercentage":0.608695652173913 + } + }, + "awayTeam":{ + "teamId":1610612753, + "teamName":"Magic", + "teamCity":"Orlando", + "teamTricode":"ORL", + "score":97, + "inBonus":"1", + "timeoutsRemaining":2, + "periods":[ + { + "period":1, + "periodType":"REGULAR", + "score":28 + } + ], + "players":[ + { + "status":"ACTIVE", + "order":1, + "personId":203516, + "jerseyNum":"11", + "position":"SF", + "starter":"1", + "oncourt":"0", + "played":"1", + "statistics":{ + "assists":0, + "blocks":0, + "blocksReceived":0, + "fieldGoalsAttempted":4, + "fieldGoalsMade":1, + "fieldGoalsPercentage":0.25, + "foulsOffensive":0, + "foulsDrawn":0, + "foulsPersonal":3, + "foulsTechnical":0, + "freeThrowsAttempted":0, + "freeThrowsMade":0, + "freeThrowsPercentage":0.0, + "minus":41.0, + "minutes":"PT14M34.00S", + "minutesCalculated":"PT14M", + "plus":36.0, + "plusMinusPoints":-5.0, + "points":2, + "pointsFastBreak":0, + "pointsInThePaint":2, + "pointsSecondChance":0, + "reboundsDefensive":1, + "reboundsOffensive":0, + "reboundsTotal":1, + "steals":0, + "threePointersAttempted":2, + "threePointersMade":0, + "threePointersPercentage":0.0, + "turnovers":0, + "twoPointersAttempted":2, + "twoPointersMade":1, + "twoPointersPercentage":0.5 + }, + "name":"James Ennis III", + "nameI":"J. Ennis III", + "firstName":"James", + "familyName":"Ennis III" + } + ], + "statistics":{ + "assists":14, + "assistsTurnoverRatio":1.07692307692308, + "benchPoints":33, + "biggestLead":1, + "biggestLeadScore":"4-3", + "biggestScoringRun":13, + "biggestScoringRunScore":"72-101", + "blocks":1, + "blocksReceived":4, + "fastBreakPointsAttempted":7, + "fastBreakPointsMade":2, + "fastBreakPointsPercentage":0.28571428571428603, + "fieldGoalsAttempted":94, + "fieldGoalsEffectiveAdjusted":0.441489361702128, + "fieldGoalsMade":38, + "fieldGoalsPercentage":0.404255319148936, + "foulsOffensive":2, + "foulsDrawn":18, + "foulsPersonal":16, + "foulsTeam":14, + "foulsTechnical":1, + "foulsTeamTechnical":0, + "freeThrowsAttempted":22, + "freeThrowsMade":14, + "freeThrowsPercentage":0.636363636363636, + "leadChanges":4, + "minutes":"PT240M00.00S", + "minutesCalculated":"PT240M", + "points":97, + "pointsAgainst":124, + "pointsFastBreak":8, + "pointsFromTurnovers":10, + "pointsInThePaint":52, + "pointsInThePaintAttempted":47, + "pointsInThePaintMade":26, + "pointsInThePaintPercentage":0.553191489361702, + "pointsSecondChance":20, + "reboundsDefensive":31, + "reboundsOffensive":15, + "reboundsPersonal":46, + "reboundsTeam":12, + "reboundsTeamDefensive":4, + "reboundsTeamOffensive":8, + "reboundsTotal":58, + "secondChancePointsAttempted":16, + "secondChancePointsMade":9, + "secondChancePointsPercentage":0.5625, + "steals":5, + "threePointersAttempted":28, + "threePointersMade":7, + "threePointersPercentage":0.25, + "timeLeading":"PT00M30.00S", + "timesTied":0, + "trueShootingAttempts":103.68, + "trueShootingPercentage":0.46778549382716, + "turnovers":11, + "turnoversTeam":2, + "turnoversTotal":13, + "twoPointersAttempted":66, + "twoPointersMade":31, + "twoPointersPercentage":0.46969696969696995 + } + } + } +} +``` + +Last validated 2020-08-16 \ No newline at end of file diff --git a/docs/nba_api/live/endpoints/playbyplay.md b/docs/nba_api/live/endpoints/playbyplay.md index 5df6e2b1..fc9ebbc1 100644 --- a/docs/nba_api/live/endpoints/playbyplay.md +++ b/docs/nba_api/live/endpoints/playbyplay.md @@ -1,66 +1,79 @@ # PlayByPlay -##### [nba_api/stats/endpoints/playbyplay.py](https://github.com/swar/nba_api/blob/master/nba_api/stats/endpoints/playbyplay.py) +##### [nba_api/live/nba/endpoints/playbyplay.py](https://github.com/swar/nba_api/blob/master/nba_api/live/nba/endpoints/playbyplay.py) ##### Endpoint URL ->[https://stats.nba.com/stats/playbyplay](https://stats.nba.com/stats/playbyplay) +>>[https://cdn.nba.com/static/json/liveData/playbyplay/playbyplay_{game_id}.json](playbyplay/playbyplay_{game_id}.json) ##### Valid URL ->[https://stats.nba.com/stats/playbyplay?EndPeriod=1&GameID=0021700807&StartPeriod=1](https://stats.nba.com/stats/playbyplay?EndPeriod=1&GameID=0021700807&StartPeriod=1) +>>[https://cdn.nba.com/static/json/liveData/playbyplay/playbyplay_0022000180.json](https://cdn.nba.com/static/json/liveData/playbyplay/playbyplay_0022000180.json) ## Parameters API Parameter Name | Python Parameter Variable | Pattern | Required | Nullable ------------ | ------------ | :-----------: | :---: | :---: -[_**EndPeriod**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#EndPeriod) | end_period | | `Y` | | [_**GameID**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#GameID) | game_id | `^\d{10}$` | `Y` | | -[_**StartPeriod**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#StartPeriod) | start_period | | `Y` | | ## Data Sets -#### AvailableVideo `available_video` +#### Actions `actions` ```text ['VIDEO_AVAILABLE_FLAG'] ``` -#### PlayByPlay `play_by_play` -```text -['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN'] -``` - - ## JSON ```json { - "meta": { - "version": 1, - "code":200, - "request":"http://nba.cloud/games/0022000011/playbyplay?Format=json", - "time":"2020-12-23 23:28:42.239540" - }, - "game":{ - "gameId":"0022000011", - "actions":[{ - "actionNumber":2, - "clock":"PT12M00.00S", - "timeActual":"2020-12-24T00:13:22.7Z", + "meta":{ + "version":1, + "code":200, + "request":"http://nba.cloud/games/0022000180/playbyplay?Format=json", + "time":"2021-01-15 23:48:58.906160" + }, + "game":{ + "gameId":"0022000180", + "actions":[ + { + "actionNumber":4, + "clock":"PT11M58.00S", + "timeActual":"2021-01-16T00:40:31.3Z", "period":1, "periodType":"REGULAR", - "actionType":"period", - "subType":"start", - "qualifiers":[], - "personId":0, + "teamId":1610612738, + "teamTricode":"BOS", + "actionType":"jumpball", + "subType":"recovered", + "descriptor":"startperiod", + "qualifiers":[ + + ], + "personId":1629684, "x":"None", "y":"None", - "possession":0, + "possession":1610612738, "scoreHome":"0", "scoreAway":"0", - "edited":"2020-12-24T00:13:22Z", - "orderNumber":20000, + "edited":"2021-01-16T00:40:31Z", + "orderNumber":40000, "xLegacy":"None", "yLegacy":"None", "isFieldGoal":0, + "jumpBallRecoveredName":"G. Williams", + "jumpBallRecoverdPersonId":1629684, "side":"None", - "description":"Period Start", - "personIdsFilter":[] - }]}} + "playerName":"Williams", + "playerNameI":"G. Williams", + "personIdsFilter":[ + 1629684, + 202684, + 202696 + ], + "jumpBallWonPlayerName":"Thompson", + "jumpBallWonPersonId":202684, + "description":"Jump Ball T. Thompson vs. N. Vucevic: Tip to G. Williams", + "jumpBallLostPlayerName":"Vucevic", + "jumpBallLostPersonId":202696 + } + ] + } +} ``` Last validated 2020-08-16 \ No newline at end of file diff --git a/docs/nba_api/live/endpoints/scoreboard.md b/docs/nba_api/live/endpoints/scoreboard.md new file mode 100644 index 00000000..6a6f2acf --- /dev/null +++ b/docs/nba_api/live/endpoints/scoreboard.md @@ -0,0 +1,124 @@ +# ScoreBoard +##### [nba_api/live/nba/endpoints/scoreboard.py](https://github.com/swar/nba_api/blob/master/nba_api/live/nba/endpoints/scoreboard.py) + +##### Endpoint URL +>[https://cdn.nba.com/static/json/liveData/scoreboard/todaysScoreboard_00.json](https://cdn.nba.com/static/json/liveData/scoreboard/todaysScoreboard_00.json) + +## Parameters +`None` + +## Properties +#### GameDate `game_date` +```text +#returns a string +scoreboard.ScoreBoard().game_date +``` + +#### Games `games` +```text +#returns all games as dictionary +scoreboard.ScoreBoard().games.get_dict() + +#returns all games as json +scoreboard.ScoreBoard().games.get_json() +``` + + +## JSON +```json +{ + "meta":{ + "version":1, + "request":"https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json", + "time":"2021-01-16 11:11:39.1139", + "code":200 + }, + "scoreboard":{ + "gameDate":"2021-01-15", + "leagueId":"00", + "leagueName":"National Basketball Association", + "games":[ + { + "gameId":"0022000181", + "gameCode":"20210115/NYKCLE", + "gameStatus":3, + "gameStatusText":"Final", + "period":4, + "gameClock":"", + "gameTimeUTC":"2021-01-16T00:30:00Z", + "gameEt":"2021-01-15T19:30:00Z", + "regulationPeriods":4, + "seriesGameNumber":"", + "seriesText":"", + "homeTeam":{ + "teamId":1610612739, + "teamName":"Cavaliers", + "teamCity":"Cleveland", + "teamTricode":"CLE", + "wins":6, + "losses":7, + "score":106, + "inBonus":"None", + "timeoutsRemaining":1, + "periods":[ + { + "period":1, + "periodType":"REGULAR", + "score":28 + } + ] + }, + "awayTeam":{ + "teamId":1610612752, + "teamName":"Knicks", + "teamCity":"New York", + "teamTricode":"NYK", + "wins":5, + "losses":8, + "score":103, + "inBonus":"None", + "timeoutsRemaining":0, + "periods":[ + { + "period":1, + "periodType":"REGULAR", + "score":25 + } + ] + }, + "gameLeaders":{ + "homeLeaders":{ + "personId":203083, + "name":"Andre Drummond", + "jerseyNum":"3", + "position":"C", + "teamTricode":"CLE", + "playerSlug":"None", + "points":33, + "rebounds":23, + "assists":3 + }, + "awayLeaders":{ + "personId":203944, + "name":"Julius Randle", + "jerseyNum":"30", + "position":"F-C", + "teamTricode":"NYK", + "playerSlug":"None", + "points":28, + "rebounds":6, + "assists":6 + } + }, + "pbOdds":{ + "team":"None", + "odds":0.0, + "suspended":1 + } + } + ] + } +} +``` + +Last validated 2020-08-16 \ No newline at end of file diff --git a/nba_api/live/__init__.py b/nba_api/live/__init__.py index 41c20c72..8b137891 100644 --- a/nba_api/live/__init__.py +++ b/nba_api/live/__init__.py @@ -1 +1 @@ -name = "nba_api" + diff --git a/nba_api/live/endpoints/_base.py b/nba_api/live/endpoints/_base.py deleted file mode 100644 index 4ee6f0ce..00000000 --- a/nba_api/live/endpoints/_base.py +++ /dev/null @@ -1,52 +0,0 @@ -import json - -try: - from pandas import DataFrame - PANDAS = True -except ImportError: - PANDAS = False - - -class Endpoint: - - class DataSet: - key = None - data = {} - - def __init__(self, data): - self.data = data - - def get_json(self): - return json.dumps(self.data) - - def get_dict(self): - return self.data - - def get_data_frame(self): - if not PANDAS: - raise Exception('Import Missing - Failed to import DataFrame from pandas.') - return DataFrame(self.data['data'], columns=self.data['headers']) - - def get_request_url(self): - return self.nba_response.get_url() - - def get_available_data(self): - return self.get_normalized_dict().keys() - - def get_response(self): - return self.nba_response.get_response() - - def get_dict(self): - return self.nba_response.get_dict() - - def get_json(self): - return self.nba_response.get_json() - - def get_normalized_dict(self): - return self.nba_response.get_normalized_dict() - - def get_normalized_json(self): - return self.nba_response.get_normalized_json() - - def get_data_frames(self): - return [data_set.get_data_frame() for data_set in self.data_sets] diff --git a/nba_api/live/endpoints/boxscore.py b/nba_api/live/endpoints/boxscore.py deleted file mode 100644 index ce07a73e..00000000 --- a/nba_api/live/endpoints/boxscore.py +++ /dev/null @@ -1,42 +0,0 @@ -from nba_api.live.endpoints._base import Endpoint -from nba_api.live.library.http import NBAStatsHTTP - -class BoxScore(Endpoint): - endpoint_url = 'boxscore/boxscore_{game_id}.json' - #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} - - nba_response = None - data_sets = None - player_stats = None - team_stats = None - headers = None - - def __init__(self, - game_id, - proxy=None, - headers=None, - timeout=30, - get_request=True): - self.game_id = game_id - self.proxy = proxy - if headers is not None: - self.headers = headers - self.timeout = timeout - if get_request: - self.get_request() - - def get_request(self): - self.nba_response = NBAStatsHTTP().send_api_request( - endpoint=self.endpoint_url.format(game_id=self.game_id), - parameters = {}, - proxy=self.proxy, - headers=self.headers, - timeout=self.timeout - ) - #self.load_response() - - def load_response(self): - data_sets = self.nba_response.get_data_sets() - self.data_sets = [Endpoint.DataSet(data=data_set) for data_set_name, data_set in data_sets.items()] - self.meta = Endpoint.DataSet(data=data_sets['meta']) - self.game = Endpoint.DataSet(data=data_sets['game']) diff --git a/nba_api/live/endpoints/gameodds.py b/nba_api/live/endpoints/gameodds.py deleted file mode 100644 index 59f9e92c..00000000 --- a/nba_api/live/endpoints/gameodds.py +++ /dev/null @@ -1,42 +0,0 @@ -from nba_api.live.endpoints._base import Endpoint -from nba_api.live.library.http import NBAStatsHTTP - -class GameOdds(Endpoint): - endpoint_url = 'gameOdds/{game_id}.json' - #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} - - nba_response = None - data_sets = None - player_stats = None - team_stats = None - headers = None - - def __init__(self, - game_id, - proxy=None, - headers=None, - timeout=30, - get_request=True): - self.game_id = game_id - self.proxy = proxy - if headers is not None: - self.headers = headers - self.timeout = timeout - if get_request: - self.get_request() - - def get_request(self): - self.nba_response = NBAStatsHTTP().send_api_request( - endpoint=self.endpoint_url.format(game_id=self.game_id), - parameters = {}, - proxy=self.proxy, - headers=self.headers, - timeout=self.timeout - ) - #self.load_response() - - def load_response(self): - data_sets = self.nba_response.get_data_sets() - self.data_sets = [Endpoint.DataSet(data=data_set) for data_set_name, data_set in data_sets.items()] - self.meta = Endpoint.DataSet(data=data_sets['meta']) - self.game = Endpoint.DataSet(data=data_sets['game']) diff --git a/nba_api/live/endpoints/playbyplay.py b/nba_api/live/endpoints/playbyplay.py deleted file mode 100644 index 55da2d4d..00000000 --- a/nba_api/live/endpoints/playbyplay.py +++ /dev/null @@ -1,41 +0,0 @@ -from nba_api.live.endpoints._base import Endpoint -from nba_api.live.library.http import NBAStatsHTTP -class PlayByPlay(Endpoint): - endpoint_url = 'playbyplay/playbyplay_{game_id}.json' - #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} - - nba_response = None - data_sets = None - player_stats = None - team_stats = None - headers = None - - def __init__(self, - game_id, - proxy=None, - headers=None, - timeout=30, - get_request=True): - self.game_id = game_id - self.proxy = proxy - if headers is not None: - self.headers = headers - self.timeout = timeout - if get_request: - self.get_request() - - def get_request(self): - self.nba_response = NBAStatsHTTP().send_api_request( - endpoint=self.endpoint_url.format(game_id=self.game_id), - parameters = {}, - proxy=self.proxy, - headers=self.headers, - timeout=self.timeout - ) - #self.load_response() - - def load_response(self): - data_sets = self.nba_response.get_data_sets() - self.data_sets = [Endpoint.DataSet(data=data_set) for data_set_name, data_set in data_sets.items()] - self.meta = Endpoint.DataSet(data=data_sets['meta']) - self.game = Endpoint.DataSet(data=data_sets['game']) diff --git a/nba_api/live/endpoints/scoreboard.py b/nba_api/live/endpoints/scoreboard.py deleted file mode 100644 index 01339d3c..00000000 --- a/nba_api/live/endpoints/scoreboard.py +++ /dev/null @@ -1,39 +0,0 @@ -from nba_api.live.endpoints._base import Endpoint -from nba_api.live.library.http import NBAStatsHTTP -class ScoreBoard(Endpoint): - endpoint_url = 'scoreboard/todaysScoreboard_00.json' - #expected_data = {'AvailableVideo': ['VIDEO_AVAILABLE_FLAG'], 'PlayByPlay': ['GAME_ID', 'EVENTNUM', 'EVENTMSGTYPE', 'EVENTMSGACTIONTYPE', 'PERIOD', 'WCTIMESTRING', 'PCTIMESTRING', 'HOMEDESCRIPTION', 'NEUTRALDESCRIPTION', 'VISITORDESCRIPTION', 'SCORE', 'SCOREMARGIN']} - - nba_response = None - data_sets = None - player_stats = None - team_stats = None - headers = None - - def __init__(self, - proxy=None, - headers=None, - timeout=30, - get_request=True): - self.proxy = proxy - if headers is not None: - self.headers = headers - self.timeout = timeout - if get_request: - self.get_request() - - def get_request(self): - self.nba_response = NBAStatsHTTP().send_api_request( - endpoint=self.endpoint_url, - parameters = {}, - proxy=self.proxy, - headers=self.headers, - timeout=self.timeout - ) - #self.load_response() - - def load_response(self): - data_sets = self.nba_response.get_data_sets() - self.data_sets = [Endpoint.DataSet(data=data_set) for data_set_name, data_set in data_sets.items()] - self.meta = Endpoint.DataSet(data=data_sets['meta']) - self.game = Endpoint.DataSet(data=data_sets['game']) diff --git a/nba_api/live/library/http.py b/nba_api/live/library/http.py deleted file mode 100644 index 81491342..00000000 --- a/nba_api/live/library/http.py +++ /dev/null @@ -1,98 +0,0 @@ -import json -from nba_api.library import http - - -try: - from nba_api.library.debug.debug import STATS_HEADERS -except ImportError: - STATS_HEADERS = { - 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', - 'Accept-Encoding': 'gzip, deflate, br', - 'Accept-Language': 'en-US,en;q=0.9', - 'Cache-Control': 'max-age=0', - 'Connection': 'keep-alive', - 'Host': 'cdn.nba.com', - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', - } - - -class NBAStatsResponse(http.NBAResponse): - - def get_normalized_dict(self): - raw_data = self.get_dict() - - data = {} - - if 'resultSets' in raw_data: - results = raw_data['resultSets'] - if 'Meta' in results: - return results - else: - results = raw_data['resultSet'] - if isinstance(results, dict): - results = [results] - for result in results: - name = result['name'] - headers = result['headers'] - row_set = result['rowSet'] - - rows = [] - for raw_row in row_set: - row = {} - for i in range(len(headers)): - row[headers[i]] = raw_row[i] - rows.append(row) - data[name] = rows - - return data - - def get_normalized_json(self): - return json.dumps(self.get_normalized_dict()) - - def get_parameters(self): - if not self.valid_json() or 'parameters' not in self.get_dict(): - return None - - parameters = self.get_dict()['parameters'] - if isinstance(parameters, dict): - return parameters - - parameters = {} - for parameter in self.get_dict()['parameters']: - for key, value in parameter.items(): - parameters.update({key: value}) - return parameters - - def get_headers_from_data_sets(self): - raw_dict = self.get_dict() - if 'resultSets' in raw_dict: - results = raw_dict['resultSets'] - else: - results = raw_dict['resultSet'] - if isinstance(results, dict): - if 'name' not in results: - return {} - return {results['name']: results['headers']} - return {result_set['name']: result_set['headers'] for result_set in results} - - def get_data_sets(self): - raw_dict = self.get_dict() - results = raw_dict['game'] - if isinstance(results, dict): - if 'name' not in results: - return {} - return {results['name']: {'headers': results['headers'], 'data': results['rowSet']}} - return {result_set['name']: {'headers': result_set['headers'], 'data': result_set['rowSet']} - for result_set in results} - - -class NBAStatsHTTP(http.NBAHTTP): - - nba_response = NBAStatsResponse - base_url = 'https://cdn.nba.com/static/json/liveData/{endpoint}' - headers = STATS_HEADERS - - def clean_contents(self, contents): - if '{"Message":"An error has occurred."}' in contents: - return 'An error has occurred.' - return contents diff --git a/nba_api/live/library/__init__.py b/nba_api/live/nba/__init__.py similarity index 100% rename from nba_api/live/library/__init__.py rename to nba_api/live/nba/__init__.py diff --git a/nba_api/live/endpoints/__init__.py b/nba_api/live/nba/endpoints/__init__.py similarity index 60% rename from nba_api/live/endpoints/__init__.py rename to nba_api/live/nba/endpoints/__init__.py index eb872a5a..55361759 100644 --- a/nba_api/live/endpoints/__init__.py +++ b/nba_api/live/nba/endpoints/__init__.py @@ -1,8 +1,10 @@ __all__ = [ 'playbyplay', 'boxscore', - 'gameodds', 'scoreboard' ] from .playbyplay import PlayByPlay +from .boxscore import BoxScore +from .scoreboard import ScoreBoard + diff --git a/nba_api/live/nba/endpoints/_base.py b/nba_api/live/nba/endpoints/_base.py new file mode 100644 index 00000000..cd6e0d50 --- /dev/null +++ b/nba_api/live/nba/endpoints/_base.py @@ -0,0 +1,29 @@ +import json + + +class Endpoint: + + class DataSet: + key = None + data = {} + + def __init__(self, data={}): + self.data = data + + def get_json(self): + return json.dumps(self.data) + + def get_dict(self): + return self.data + + def get_request_url(self): + return self.nba_response.get_url() + + def get_response(self): + return self.nba_response.get_response() + + def get_dict(self): + return self.nba_response.get_dict() + + def get_json(self): + return self.nba_response.get_json() diff --git a/nba_api/live/nba/endpoints/boxscore.py b/nba_api/live/nba/endpoints/boxscore.py new file mode 100644 index 00000000..8afddc57 --- /dev/null +++ b/nba_api/live/nba/endpoints/boxscore.py @@ -0,0 +1,53 @@ +from nba_api.live.nba.endpoints._base import Endpoint +from nba_api.live.nba.library.http import NBALiveHTTP + +class BoxScore(Endpoint): + endpoint_url = 'boxscore/boxscore_{game_id}.json' + expected_data = {'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000180/boxscore?Format=json', 'time': '2021-01-15 23:51:25.282704'}, 'game': {'gameId': '0022000180', 'gameTimeLocal': '2021-01-15T19:30:00-05:00', 'gameTimeUTC': '2021-01-16T00:30:00Z', 'gameTimeHome': '2021-01-15T19:30:00-05:00', 'gameTimeAway': '2021-01-15T19:30:00-05:00', 'gameEt': '2021-01-15T19:30:00-05:00', 'duration': 125, 'gameCode': '20210115/ORLBOS', 'gameStatusText': 'Final', 'gameStatus': 3, 'regulationPeriods': 4, 'period': 4, 'gameClock': 'PT00M00.00S', 'attendance': 0, 'sellout': '0', 'arena': {'arenaId': 17, 'arenaName': 'TD Garden', 'arenaCity': 'Boston', 'arenaState': 'MA', 'arenaCountry': 'US', 'arenaTimezone': 'America/New_York'}, 'officials': [{'personId': 201638, 'name': 'Brent Barnaky', 'nameI': 'B. Barnaky', 'firstName': 'Brent', 'familyName': 'Barnaky', 'jerseyNum': '36', 'assignment': 'OFFICIAL1'}], 'homeTeam': {'teamId': 1610612738, 'teamName': 'Celtics', 'teamCity': 'Boston', 'teamTricode': 'BOS', 'score': 124, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 34}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 1627759, 'jerseyNum': '7', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 8, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 4, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 7, 'freeThrowsMade': 7, 'freeThrowsPercentage': 1.0, 'minus': 50.0, 'minutes': 'PT25M01.00S', 'minutesCalculated': 'PT25M', 'plus': 65.0, 'plusMinusPoints': 15.0, 'points': 21, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 0, 'reboundsDefensive': 2, 'reboundsOffensive': 0, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 5, 'threePointersMade': 2, 'threePointersPercentage': 0.4, 'turnovers': 2, 'twoPointersAttempted': 7, 'twoPointersMade': 4, 'twoPointersPercentage': 0.5714285714285711}, 'name': 'Jaylen Brown', 'nameI': 'J. Brown', 'firstName': 'Jaylen', 'familyName': 'Brown'}], 'statistics': {'assists': 25, 'assistsTurnoverRatio': 2.27272727272727, 'benchPoints': 66, 'biggestLead': 29, 'biggestLeadScore': '72-101', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 4, 'blocksReceived': 1, 'fastBreakPointsAttempted': 9, 'fastBreakPointsMade': 5, 'fastBreakPointsPercentage': 0.555555555555556, 'fieldGoalsAttempted': 88, 'fieldGoalsEffectiveAdjusted': 0.607954545454545, 'fieldGoalsMade': 45, 'fieldGoalsPercentage': 0.511363636363636, 'foulsOffensive': 0, 'foulsDrawn': 16, 'foulsPersonal': 18, 'foulsTeam': 18, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 19, 'freeThrowsMade': 17, 'freeThrowsPercentage': 0.894736842105263, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 124, 'pointsAgainst': 97, 'pointsFastBreak': 13, 'pointsFromTurnovers': 16, 'pointsInThePaint': 48, 'pointsInThePaintAttempted': 36, 'pointsInThePaintMade': 24, 'pointsInThePaintPercentage': 0.666666666666666, 'pointsSecondChance': 11, 'reboundsDefensive': 39, 'reboundsOffensive': 6, 'reboundsPersonal': 45, 'reboundsTeam': 6, 'reboundsTeamDefensive': 2, 'reboundsTeamOffensive': 4, 'reboundsTotal': 51, 'secondChancePointsAttempted': 6, 'secondChancePointsMade': 4, 'secondChancePointsPercentage': 0.666666666666666, 'steals': 7, 'threePointersAttempted': 42, 'threePointersMade': 17, 'threePointersPercentage': 0.40476190476190504, 'timeLeading': 'PT47M16.00S', 'timesTied': 0, 'trueShootingAttempts': 96.36, 'trueShootingPercentage': 0.6434205064342051, 'turnovers': 10, 'turnoversTeam': 1, 'turnoversTotal': 11, 'twoPointersAttempted': 46, 'twoPointersMade': 28, 'twoPointersPercentage': 0.608695652173913}}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'score': 97, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203516, 'jerseyNum': '11', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 4, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 41.0, 'minutes': 'PT14M34.00S', 'minutesCalculated': 'PT14M', 'plus': 36.0, 'plusMinusPoints': -5.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'James Ennis III', 'nameI': 'J. Ennis III', 'firstName': 'James', 'familyName': 'Ennis III'}], 'statistics': {'assists': 14, 'assistsTurnoverRatio': 1.07692307692308, 'benchPoints': 33, 'biggestLead': 1, 'biggestLeadScore': '4-3', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 1, 'blocksReceived': 4, 'fastBreakPointsAttempted': 7, 'fastBreakPointsMade': 2, 'fastBreakPointsPercentage': 0.28571428571428603, 'fieldGoalsAttempted': 94, 'fieldGoalsEffectiveAdjusted': 0.441489361702128, 'fieldGoalsMade': 38, 'fieldGoalsPercentage': 0.404255319148936, 'foulsOffensive': 2, 'foulsDrawn': 18, 'foulsPersonal': 16, 'foulsTeam': 14, 'foulsTechnical': 1, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 22, 'freeThrowsMade': 14, 'freeThrowsPercentage': 0.636363636363636, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 97, 'pointsAgainst': 124, 'pointsFastBreak': 8, 'pointsFromTurnovers': 10, 'pointsInThePaint': 52, 'pointsInThePaintAttempted': 47, 'pointsInThePaintMade': 26, 'pointsInThePaintPercentage': 0.553191489361702, 'pointsSecondChance': 20, 'reboundsDefensive': 31, 'reboundsOffensive': 15, 'reboundsPersonal': 46, 'reboundsTeam': 12, 'reboundsTeamDefensive': 4, 'reboundsTeamOffensive': 8, 'reboundsTotal': 58, 'secondChancePointsAttempted': 16, 'secondChancePointsMade': 9, 'secondChancePointsPercentage': 0.5625, 'steals': 5, 'threePointersAttempted': 28, 'threePointersMade': 7, 'threePointersPercentage': 0.25, 'timeLeading': 'PT00M30.00S', 'timesTied': 0, 'trueShootingAttempts': 103.68, 'trueShootingPercentage': 0.46778549382716, 'turnovers': 11, 'turnoversTeam': 2, 'turnoversTotal': 13, 'twoPointersAttempted': 66, 'twoPointersMade': 31, 'twoPointersPercentage': 0.46969696969696995}}}} + + #Data Sets + game = Endpoint.DataSet + officials = Endpoint.DataSet + home_team = Endpoint.DataSet + away_team = Endpoint.DataSet + + nba_response = None + data_sets = None + player_stats = None + team_stats = None + headers = None + + def __init__(self, + game_id, + proxy=None, + headers=None, + timeout=30, + get_request=True): + self.game_id = game_id + self.proxy = proxy + if headers is not None: + self.headers = headers + self.timeout = timeout + if get_request: + self.get_request() + + def get_request(self): + self.nba_response = NBALiveHTTP().send_api_request( + endpoint=self.endpoint_url.format(game_id=self.game_id), + parameters = {}, + proxy=self.proxy, + headers=self.headers, + timeout=self.timeout + ) + self.load_response() + + def load_response(self): + data_sets = self.nba_response.get_dict() + if 'game' in data_sets: + self.game = Endpoint.DataSet(data=data_sets['game']) + if 'officials' in self.game.get_dict(): + self.officials = Endpoint.DataSet(data=data_sets['game']['officials']) + if 'homeTeam' in self.game.get_dict(): + self.home_team = Endpoint.DataSet(data=data_sets['game']['homeTeam']) + if 'awayTeam' in self.game.get_dict(): + self.away_team = Endpoint.DataSet(data=data_sets['game']['awayTeam']) diff --git a/nba_api/live/nba/endpoints/playbyplay.py b/nba_api/live/nba/endpoints/playbyplay.py new file mode 100644 index 00000000..1921c6dd --- /dev/null +++ b/nba_api/live/nba/endpoints/playbyplay.py @@ -0,0 +1,44 @@ +from nba_api.live.nba.endpoints._base import Endpoint +from nba_api.live.nba.library.http import NBALiveHTTP + +class PlayByPlay(Endpoint): + endpoint_url = 'playbyplay/playbyplay_{game_id}.json' + expected_data = {'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000180/playbyplay?Format=json', 'time': '2021-01-15 23:48:58.906160'}, 'game': {'gameId': '0022000180', 'actions': [{'actionNumber': 4, 'clock': 'PT11M58.00S', 'timeActual': '2021-01-16T00:40:31.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612738, 'teamTricode': 'BOS', 'actionType': 'jumpball', 'subType': 'recovered', 'descriptor': 'startperiod', 'qualifiers': [], 'personId': 1629684, 'x': None, 'y': None, 'possession': 1610612738, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2021-01-16T00:40:31Z', 'orderNumber': 40000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'jumpBallRecoveredName': 'G. Williams', 'jumpBallRecoverdPersonId': 1629684, 'side': None, 'playerName': 'Williams', 'playerNameI': 'G. Williams', 'personIdsFilter': [1629684, 202684, 202696], 'jumpBallWonPlayerName': 'Thompson', 'jumpBallWonPersonId': 202684, 'description': 'Jump Ball T. Thompson vs. N. Vucevic: Tip to G. Williams', 'jumpBallLostPlayerName': 'Vucevic', 'jumpBallLostPersonId': 202696}]}} + + #DataSets + actions = Endpoint.DataSet() + + nba_response = None + data_sets = None + player_stats = None + team_stats = None + headers = None + + def __init__(self, + game_id, + proxy=None, + headers=None, + timeout=30, + get_request=True): + self.game_id = game_id + self.proxy = proxy + if headers is not None: + self.headers = headers + self.timeout = timeout + if get_request: + self.get_request() + + def get_request(self): + self.nba_response = NBALiveHTTP().send_api_request( + endpoint=self.endpoint_url.format(game_id=self.game_id), + parameters = {}, + proxy=self.proxy, + headers=self.headers, + timeout=self.timeout + ) + self.load_response() + + def load_response(self): + data_sets = self.nba_response.get_dict() + if 'game' in data_sets and 'actions' in data_sets['game']: + self.actions = Endpoint.DataSet(data=data_sets['game']['actions']) diff --git a/nba_api/live/nba/endpoints/scoreboard.py b/nba_api/live/nba/endpoints/scoreboard.py new file mode 100644 index 00000000..560ab8d7 --- /dev/null +++ b/nba_api/live/nba/endpoints/scoreboard.py @@ -0,0 +1,45 @@ +from nba_api.live.nba.endpoints._base import Endpoint +from nba_api.live.nba.library.http import NBALiveHTTP + +class ScoreBoard(Endpoint): + endpoint_url = 'scoreboard/todaysScoreboard_00.json' + expected_data = {'meta': {'version': 0, 'request': '', 'time': '', 'code': 0}, 'scoreboard': {'gameDate': '', 'leagueId': '', 'leagueName': '', 'games': [{'gameId': '', 'gameCode': '', 'gameStatus': 0, 'gameStatusText': '', 'period': 0, 'gameClock': '', 'gameTimeUTC': '', 'gameEt': '', 'regulationPeriods': 0, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 0, 'teamName': '', 'teamCity': '', 'teamTricode': '', 'wins': 0, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 0, 'periodType': '', 'score': 0}]}, 'awayTeam': {'teamId': 0, 'teamName': '', 'teamCity': '', 'teamTricode': '', 'wins': 0, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 0, 'periodType': '', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': '', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': '', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 0}}]}} + + #DataSets + games = Endpoint.DataSet() + game_date = None + + nba_response = None + data_sets = None + player_stats = None + team_stats = None + headers = None + + def __init__(self, + proxy=None, + headers=None, + timeout=30, + get_request=True): + self.proxy = proxy + if headers is not None: + self.headers = headers + self.timeout = timeout + if get_request: + self.get_request() + + def get_request(self): + self.nba_response = NBALiveHTTP().send_api_request( + endpoint=self.endpoint_url, + parameters = {}, + proxy=self.proxy, + headers=self.headers, + timeout=self.timeout + ) + self.load_response() + + def load_response(self): + data_sets = self.nba_response.get_dict() + if 'scoreboard' in data_sets and 'games' in data_sets['scoreboard']: + self.games = Endpoint.DataSet(data=data_sets['scoreboard']['games']) + if 'gameDate' in self.games.get_dict(): + self.gamedate = Endpoint.DataSet(data=data_sets['scoreboard']['gameDate']) diff --git a/nba_api/live/nba/library/__init__.py b/nba_api/live/nba/library/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/nba_api/live/nba/library/http.py b/nba_api/live/nba/library/http.py new file mode 100644 index 00000000..cd5ad7de --- /dev/null +++ b/nba_api/live/nba/library/http.py @@ -0,0 +1,27 @@ +from nba_api.library import http + + +try: + from nba_api.library.debug.debug import STATS_HEADERS +except ImportError: + STATS_HEADERS = { + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', + 'Accept-Encoding': 'gzip, deflate, br', + 'Accept-Language': 'en-US,en;q=0.9', + 'Cache-Control': 'max-age=0', + 'Connection': 'keep-alive', + 'Host': 'cdn.nba.com', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36', + } + + +class NBALiveHTTP(http.NBAHTTP): + + nba_response = http.NBAResponse + base_url = 'https://cdn.nba.com/static/json/liveData/{endpoint}' + headers = STATS_HEADERS + + def clean_contents(self, contents): + if '{"Message":"An error has occurred."}' in contents: + return 'An error has occurred.' + return contents diff --git a/tests/live/endpoints/test_boxscore.py b/tests/live/endpoints/test_boxscore.py new file mode 100644 index 00000000..4cc001b8 --- /dev/null +++ b/tests/live/endpoints/test_boxscore.py @@ -0,0 +1,57 @@ +import pytest +import json +from nba_api.library.http import NBAHTTP, NBAResponse +from nba_api.live.nba.endpoints import boxscore +from nba_api.live.nba.library.http import NBALiveHTTP + +content = {'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000180/boxscore?Format=json', 'time': '2021-01-15 23:51:25.282704'}, 'game': {'gameId': '0022000180', 'gameTimeLocal': '2021-01-15T19:30:00-05:00', 'gameTimeUTC': '2021-01-16T00:30:00Z', 'gameTimeHome': '2021-01-15T19:30:00-05:00', 'gameTimeAway': '2021-01-15T19:30:00-05:00', 'gameEt': '2021-01-15T19:30:00-05:00', 'duration': 125, 'gameCode': '20210115/ORLBOS', 'gameStatusText': 'Final', 'gameStatus': 3, 'regulationPeriods': 4, 'period': 4, 'gameClock': 'PT00M00.00S', 'attendance': 0, 'sellout': '0', 'arena': {'arenaId': 17, 'arenaName': 'TD Garden', 'arenaCity': 'Boston', 'arenaState': 'MA', 'arenaCountry': 'US', 'arenaTimezone': 'America/New_York'}, 'officials': [{'personId': 201638, 'name': 'Brent Barnaky', 'nameI': 'B. Barnaky', 'firstName': 'Brent', 'familyName': 'Barnaky', 'jerseyNum': '36', 'assignment': 'OFFICIAL1'}], 'homeTeam': {'teamId': 1610612738, 'teamName': 'Celtics', 'teamCity': 'Boston', 'teamTricode': 'BOS', 'score': 124, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 34}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 1627759, 'jerseyNum': '7', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 8, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 4, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 7, 'freeThrowsMade': 7, 'freeThrowsPercentage': 1.0, 'minus': 50.0, 'minutes': 'PT25M01.00S', 'minutesCalculated': 'PT25M', 'plus': 65.0, 'plusMinusPoints': 15.0, 'points': 21, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 0, 'reboundsDefensive': 2, 'reboundsOffensive': 0, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 5, 'threePointersMade': 2, 'threePointersPercentage': 0.4, 'turnovers': 2, 'twoPointersAttempted': 7, 'twoPointersMade': 4, 'twoPointersPercentage': 0.5714285714285711}, 'name': 'Jaylen Brown', 'nameI': 'J. Brown', 'firstName': 'Jaylen', 'familyName': 'Brown'}], 'statistics': {'assists': 25, 'assistsTurnoverRatio': 2.27272727272727, 'benchPoints': 66, 'biggestLead': 29, 'biggestLeadScore': '72-101', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 4, 'blocksReceived': 1, 'fastBreakPointsAttempted': 9, 'fastBreakPointsMade': 5, 'fastBreakPointsPercentage': 0.555555555555556, 'fieldGoalsAttempted': 88, 'fieldGoalsEffectiveAdjusted': 0.607954545454545, 'fieldGoalsMade': 45, 'fieldGoalsPercentage': 0.511363636363636, 'foulsOffensive': 0, 'foulsDrawn': 16, 'foulsPersonal': 18, 'foulsTeam': 18, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 19, 'freeThrowsMade': 17, 'freeThrowsPercentage': 0.894736842105263, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 124, 'pointsAgainst': 97, 'pointsFastBreak': 13, 'pointsFromTurnovers': 16, 'pointsInThePaint': 48, 'pointsInThePaintAttempted': 36, 'pointsInThePaintMade': 24, 'pointsInThePaintPercentage': 0.666666666666666, 'pointsSecondChance': 11, 'reboundsDefensive': 39, 'reboundsOffensive': 6, 'reboundsPersonal': 45, 'reboundsTeam': 6, 'reboundsTeamDefensive': 2, 'reboundsTeamOffensive': 4, 'reboundsTotal': 51, 'secondChancePointsAttempted': 6, 'secondChancePointsMade': 4, 'secondChancePointsPercentage': 0.666666666666666, 'steals': 7, 'threePointersAttempted': 42, 'threePointersMade': 17, 'threePointersPercentage': 0.40476190476190504, 'timeLeading': 'PT47M16.00S', 'timesTied': 0, 'trueShootingAttempts': 96.36, 'trueShootingPercentage': 0.6434205064342051, 'turnovers': 10, 'turnoversTeam': 1, 'turnoversTotal': 11, 'twoPointersAttempted': 46, 'twoPointersMade': 28, 'twoPointersPercentage': 0.608695652173913}}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'score': 97, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203516, 'jerseyNum': '11', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 4, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 41.0, 'minutes': 'PT14M34.00S', 'minutesCalculated': 'PT14M', 'plus': 36.0, 'plusMinusPoints': -5.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'James Ennis III', 'nameI': 'J. Ennis III', 'firstName': 'James', 'familyName': 'Ennis III'}], 'statistics': {'assists': 14, 'assistsTurnoverRatio': 1.07692307692308, 'benchPoints': 33, 'biggestLead': 1, 'biggestLeadScore': '4-3', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 1, 'blocksReceived': 4, 'fastBreakPointsAttempted': 7, 'fastBreakPointsMade': 2, 'fastBreakPointsPercentage': 0.28571428571428603, 'fieldGoalsAttempted': 94, 'fieldGoalsEffectiveAdjusted': 0.441489361702128, 'fieldGoalsMade': 38, 'fieldGoalsPercentage': 0.404255319148936, 'foulsOffensive': 2, 'foulsDrawn': 18, 'foulsPersonal': 16, 'foulsTeam': 14, 'foulsTechnical': 1, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 22, 'freeThrowsMade': 14, 'freeThrowsPercentage': 0.636363636363636, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 97, 'pointsAgainst': 124, 'pointsFastBreak': 8, 'pointsFromTurnovers': 10, 'pointsInThePaint': 52, 'pointsInThePaintAttempted': 47, 'pointsInThePaintMade': 26, 'pointsInThePaintPercentage': 0.553191489361702, 'pointsSecondChance': 20, 'reboundsDefensive': 31, 'reboundsOffensive': 15, 'reboundsPersonal': 46, 'reboundsTeam': 12, 'reboundsTeamDefensive': 4, 'reboundsTeamOffensive': 8, 'reboundsTotal': 58, 'secondChancePointsAttempted': 16, 'secondChancePointsMade': 9, 'secondChancePointsPercentage': 0.5625, 'steals': 5, 'threePointersAttempted': 28, 'threePointersMade': 7, 'threePointersPercentage': 0.25, 'timeLeading': 'PT00M30.00S', 'timesTied': 0, 'trueShootingAttempts': 103.68, 'trueShootingPercentage': 0.46778549382716, 'turnovers': 11, 'turnoversTeam': 2, 'turnoversTotal': 13, 'twoPointersAttempted': 66, 'twoPointersMade': 31, 'twoPointersPercentage': 0.46969696969696995}}}} +game_id = '0022000180' + +@pytest.fixture +def nba_http_patch(monkeypatch): + class MockResponse(object): + def __init__(*args, **kwargs): + pass + + def send_api_request(self, endpoint, parameters, referer=None, proxy=None, headers=None, timeout=None, raise_exception_on_error=False): + url = NBALiveHTTP.base_url.format(endpoint=endpoint) + return NBAResponse(response=json.dumps(content), status_code=200, url=url) + + monkeypatch.setattr(NBAHTTP, "send_api_request", MockResponse.send_api_request) + + +def test_get_request_url(): + assert boxscore.BoxScore(game_id).get_request_url() == 'https://cdn.nba.com/static/json/liveData/boxscore/boxscore_0022000180.json' + +def test_get_response(nba_http_patch): + assert json.dumps(content) == boxscore.BoxScore(game_id).get_response() + +def test_get_dict(nba_http_patch): + assert boxscore.BoxScore(game_id).get_dict() == content + +def test_get_json(nba_http_patch): + assert boxscore.BoxScore(game_id).get_json() == json.dumps(content) + +def test_game_json(nba_http_patch): + assert boxscore.BoxScore(game_id).game.get_json() == json.dumps(content['game']) + +def test_game_dict(nba_http_patch): + assert boxscore.BoxScore(game_id).game.get_dict() == content['game'] + +def test_home_team_json(nba_http_patch): + assert boxscore.BoxScore(game_id).home_team.get_json() == json.dumps(content['game']['homeTeam']) + +def test_home_team_dict(nba_http_patch): + assert boxscore.BoxScore(game_id).home_team.get_dict() == content['game']['homeTeam'] + +def test_away_team_json(nba_http_patch): + assert boxscore.BoxScore(game_id).away_team.get_json() == json.dumps(content['game']['awayTeam']) + +def test_away_team_dict(nba_http_patch): + assert boxscore.BoxScore(game_id).away_team.get_dict() == content['game']['awayTeam'] + +def test_officies_json(nba_http_patch): + assert boxscore.BoxScore(game_id).officials.get_json() == json.dumps(content['game']['officials']) + +def test_officials_dict(nba_http_patch): + assert boxscore.BoxScore(game_id).officials.get_dict() == content['game']['officials'] diff --git a/tests/live/endpoints/test_playbyplay.py b/tests/live/endpoints/test_playbyplay.py new file mode 100644 index 00000000..ffc43a4a --- /dev/null +++ b/tests/live/endpoints/test_playbyplay.py @@ -0,0 +1,41 @@ +import json +import pytest +from nba_api.library.http import NBAHTTP, NBAResponse +from nba_api.live.nba.endpoints import playbyplay +from nba_api.live.nba.library.http import NBALiveHTTP + +content = {'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000180/playbyplay?Format=json', 'time': '2021-01-15 23:48:58.906160'}, 'game': {'gameId': '0022000180', 'actions': [{'actionNumber': 4, 'clock': 'PT11M58.00S', 'timeActual': '2021-01-16T00:40:31.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612738, 'teamTricode': 'BOS', 'actionType': 'jumpball', 'subType': 'recovered', 'descriptor': 'startperiod', 'qualifiers': [], 'personId': 1629684, 'x': None, 'y': None, 'possession': 1610612738, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2021-01-16T00:40:31Z', 'orderNumber': 40000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'jumpBallRecoveredName': 'G. Williams', 'jumpBallRecoverdPersonId': 1629684, 'side': None, 'playerName': 'Williams', 'playerNameI': 'G. Williams', 'personIdsFilter': [1629684, 202684, 202696], 'jumpBallWonPlayerName': 'Thompson', 'jumpBallWonPersonId': 202684, 'description': 'Jump Ball T. Thompson vs. N. Vucevic: Tip to G. Williams', 'jumpBallLostPlayerName': 'Vucevic', 'jumpBallLostPersonId': 202696}]}} +actions = [{'actionNumber': 4, 'clock': 'PT11M58.00S', 'timeActual': '2021-01-16T00:40:31.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612738, 'teamTricode': 'BOS', 'actionType': 'jumpball', 'subType': 'recovered', 'descriptor': 'startperiod', 'qualifiers': [], 'personId': 1629684, 'x': None, 'y': None, 'possession': 1610612738, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2021-01-16T00:40:31Z', 'orderNumber': 40000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'jumpBallRecoveredName': 'G. Williams', 'jumpBallRecoverdPersonId': 1629684, 'side': None, 'playerName': 'Williams', 'playerNameI': 'G. Williams', 'personIdsFilter': [1629684, 202684, 202696], 'jumpBallWonPlayerName': 'Thompson', 'jumpBallWonPersonId': 202684, 'description': 'Jump Ball T. Thompson vs. N. Vucevic: Tip to G. Williams', 'jumpBallLostPlayerName': 'Vucevic', 'jumpBallLostPersonId': 202696}] +game_id = '0022000180' + +@pytest.fixture +def nba_http_patch(monkeypatch): + class MockResponse(object): + def __init__(*args, **kwargs): + pass + + def send_api_request(self, endpoint, parameters, referer=None, proxy=None, headers=None, timeout=None, raise_exception_on_error=False): + url = NBALiveHTTP.base_url.format(endpoint=endpoint) + return NBAResponse(response=json.dumps(content), status_code=200, url=url) + + monkeypatch.setattr(NBAHTTP, "send_api_request", MockResponse.send_api_request) + +def test_get_request_url(nba_http_patch): + assert playbyplay.PlayByPlay(game_id).get_request_url() == 'https://cdn.nba.com/static/json/liveData/playbyplay/playbyplay_0022000180.json' + +def test_response(nba_http_patch): + assert json.dumps(content) == playbyplay.PlayByPlay(game_id).get_response() + +def test_get_actions_dict(nba_http_patch): + assert playbyplay.PlayByPlay(game_id).actions.get_dict() == actions + +def test_get_actions_json(nba_http_patch): + assert playbyplay.PlayByPlay(game_id).actions.get_json() == json.dumps(actions) + +def test_get_response(nba_http_patch): + assert playbyplay.PlayByPlay(game_id).get_response() == json.dumps(content) +def test_get_dict(nba_http_patch): + assert playbyplay.PlayByPlay(game_id).get_dict() == content + +def test_get_json(nba_http_patch): + assert playbyplay.PlayByPlay('0022000180').get_json() == json.dumps(content) \ No newline at end of file diff --git a/tests/live/endpoints/test_scoreboard.py b/tests/live/endpoints/test_scoreboard.py new file mode 100644 index 00000000..68b0d705 --- /dev/null +++ b/tests/live/endpoints/test_scoreboard.py @@ -0,0 +1,44 @@ +import json +import pytest +from nba_api.library.http import NBAHTTP, NBAResponse +from nba_api.live.nba.endpoints import scoreboard +from nba_api.live.nba.library.http import NBALiveHTTP + +content = {'meta': {'version': 1, 'request': 'https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json', 'time': '2021-01-16 02:21:14.2114', 'code': 200}, 'scoreboard': {'gameDate': '2021-01-16', 'leagueId': '00', 'leagueName': 'National Basketball Association', 'games': [{'gameId': '0022000194', 'gameCode': '20210116/INDPHX', 'gameStatus': 1, 'gameStatusText': 'PPD', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2021-01-17T02:00:00Z', 'gameEt': '2021-01-16T21:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612756, 'teamName': 'Suns', 'teamCity': 'Phoenix', 'teamTricode': 'PHX', 'wins': 7, 'losses': 4, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612754, 'teamName': 'Pacers', 'teamCity': 'Indiana', 'teamTricode': 'IND', 'wins': 8, 'losses': 4, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'PHX', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'IND', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000189', 'gameCode': '20210116/HOUSAS', 'gameStatus': 1, 'gameStatusText': '5:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2021-01-16T22:00:00Z', 'gameEt': '2021-01-16T17:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612759, 'teamName': 'Spurs', 'teamCity': 'San Antonio', 'teamTricode': 'SAS', 'wins': 6, 'losses': 6, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612745, 'teamName': 'Rockets', 'teamCity': 'Houston', 'teamTricode': 'HOU', 'wins': 4, 'losses': 6, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'SAS', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'HOU', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}]}} +games = [{'gameId': '0022000194', 'gameCode': '20210116/INDPHX', 'gameStatus': 1, 'gameStatusText': 'PPD', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2021-01-17T02:00:00Z', 'gameEt': '2021-01-16T21:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612756, 'teamName': 'Suns', 'teamCity': 'Phoenix', 'teamTricode': 'PHX', 'wins': 7, 'losses': 4, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612754, 'teamName': 'Pacers', 'teamCity': 'Indiana', 'teamTricode': 'IND', 'wins': 8, 'losses': 4, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'PHX', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'IND', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000189', 'gameCode': '20210116/HOUSAS', 'gameStatus': 1, 'gameStatusText': '5:00 pm ET', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2021-01-16T22:00:00Z', 'gameEt': '2021-01-16T17:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612759, 'teamName': 'Spurs', 'teamCity': 'San Antonio', 'teamTricode': 'SAS', 'wins': 6, 'losses': 6, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612745, 'teamName': 'Rockets', 'teamCity': 'Houston', 'teamTricode': 'HOU', 'wins': 4, 'losses': 6, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'SAS', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'HOU', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}] + +@pytest.fixture +def nba_http_patch(monkeypatch): + class MockResponse(object): + def __init__(*args, **kwargs): + pass + + def send_api_request(self, endpoint, parameters, referer=None, proxy=None, headers=None, timeout=None, raise_exception_on_error=False): + url = NBALiveHTTP.base_url.format(endpoint=endpoint) + return NBAResponse(response=json.dumps(content), status_code=200, url=url) + + monkeypatch.setattr(NBAHTTP, "send_api_request", MockResponse.send_api_request) + +def test_get_games_dict(nba_http_patch): + assert scoreboard.ScoreBoard().game_date == '2021-01-16' + +def test_get_games_dict(nba_http_patch): + assert scoreboard.ScoreBoard().games.get_dict() == games + +def test_get_games_dict(nba_http_patch): + assert scoreboard.ScoreBoard().games.get_json() == json.dumps(games) + +def test_get_request_url(nba_http_patch): + assert scoreboard.ScoreBoard().get_request_url() == 'https://cdn.nba.com/static/json/liveData/scoreboard/todaysScoreboard_00.json' + +def test_get_response(nba_http_patch): + assert json.dumps(content) == scoreboard.ScoreBoard().get_response() + +def test_get_dict(nba_http_patch): + assert scoreboard.ScoreBoard().get_dict() == content + +def test_get_json(nba_http_patch): + assert scoreboard.ScoreBoard().get_json() == json.dumps(content) + + + \ No newline at end of file From cefb32b6c55780abd93af53aef2ef035a84d5bc7 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Sun, 17 Jan 2021 23:25:28 -0500 Subject: [PATCH 11/20] Updated info on playbyplay.md --- docs/nba_api/live/endpoints/playbyplay.md | 146 +++++++++++++++++----- 1 file changed, 112 insertions(+), 34 deletions(-) diff --git a/docs/nba_api/live/endpoints/playbyplay.md b/docs/nba_api/live/endpoints/playbyplay.md index fc9ebbc1..1c15a323 100644 --- a/docs/nba_api/live/endpoints/playbyplay.md +++ b/docs/nba_api/live/endpoints/playbyplay.md @@ -10,13 +10,71 @@ ## Parameters API Parameter Name | Python Parameter Variable | Pattern | Required | Nullable ------------ | ------------ | :-----------: | :---: | :---: -[_**GameID**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#GameID) | game_id | `^\d{10}$` | `Y` | | +[_**GameID**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#GameID) | game_id | `^\d{10}$` | `Y` | | ## Data Sets #### Actions `actions` ```text ['VIDEO_AVAILABLE_FLAG'] ``` +## Actions Insights +Key | Class | Sample | Description | Nullable +------------ | ------------ | :-----------: | :---: | :---: +`actionNumber`|``| `4` | `actionNumber is guaranteed to be sequential but not consectutive ([2, 5, 6, 7, 9, 10])` | | +`actionType`|``| `"period"` | `-` | | +`assistPersonId`|``| `1627759` | `-` | | +`assistPlayerNameInitial`|``| `J. Brown` | `-` | | +`assistTotal`|``| `3` | `-` | | +`blockPersonId`|``| `1627759` | `-` | | +`blockPlayerName`|``| `J. Brown` | `-` | | +`clock`|``| `PT03M59.00S` | `clock is the Period Time in which the play occurred` | | +`description`|``| `J. Brown 14' pullup Jump Shot (2 PTS)` | `description of the action` | | +`descriptor`|``| `pullup` | `a key phrase with regards to the play. Examples: ("heldball","technical","pullup","bad pass","driving finger roll"` ) | | +`edited`|``| `2021-01-16T02:01:02Z` | `The time in which the play was edited` | | +`foulDrawnPersonId`|``| `1627759` | `-` | | +`foulDrawnPlayerName`|``| `Brown` | `-` | | +`foulPersonalTotal`|``| `1` | `-` | | +`foulTechnicalTotal`|``| `0` | `-` | | +`isFieldGoal`|``| `0` | `0 | 1` | | +`jumpBallLostPersonId`|``| `203935` | `-` | | +`jumpBallLostPlayerName`|``| `Smart` | `-` | | +`jumpBallRecoverdPersonId`|``| `203932` | `-` | | +`jumpBallRecoveredName`|``| `A. Gordon` | `-` | | +`jumpBallWonPersonId`|``| `203920` | `-` | | +`jumpBallWonPlayerName`|``| `Birch` | `-` | | +`officialId`|``| `-` | `-` | | +`orderNumber`|``| `4560000` | `unknown consecutive number` | | +`period`|``| `3` | `-` | | +`periodType`|``| `-` | `-` | | +`personId`|``| `1629109` | `-` | | +`personIdsFilter`|``| `[203932, 203920, 203935]` | `players involved in the play. In this case ti was a jump ball (recovered, won, lost)` | | +`playerName`|``| `Clark` | `-` | | +`playerNameI`|``| `G. Clark` | `-` | | +`pointsTotal`|``| `6` | `-` | | +`possession`|``| `1610612753` | `The teamId who has possession` | | +`qualifiers`|``| `["pointsinthepaint"]` | `-` | | +`reboundDefensiveTotal`|``| `6` | `-` | | +`reboundOffensiveTotal`|``| `2` | `-` | | +`reboundTotal`|``| `8` | `-` | | +`scoreAway`|``| `68` | `-` | | +`scoreHome`|``| `83` | `-` | | +`shotActionNumber`|``| `10` | `shotActionNumber is guaranteed to be sequential but not consectutive ([10, 14, 18, 38])` | | +`shotDistance`|``| `4.44` | `-` | | +`shotResult`|``| `"Made" | "Missed"` | `` | | +`side`|``| `null | "left" | "right"` | `-` | | +`stealPersonId`|``| `1629750` | `-` | | +`stealPlayerName`|``| `Green` | `-` | | +`subType`|``| `"request` | `substitution type` | | +`teamId`|``| `1610612738` | `-` | | +`teamTricode`|``| `BOS` | `-` | | +`timeActual`|``| `2021-01-16T02:14:17.3Z` | `The time in which the play occurred` | | +`turnoverTotal`|``| `1` | `-` | | +`value`|``| `"Corrected to Offensive Foul on C. Anthony"` | `Was found to be present on an actionType of "instantreplay" and subType of "challenge" with a descriptor of "overturned"` | | +`x`|``| `90.22667542706965` | `-` | | +`xLegacy`|``| `-20` | `-` | | +`y`|``| `45.90226715686275` | `-` | | +`yLegacy`|``| `39` | `-` | | + ## JSON ```json @@ -31,45 +89,65 @@ API Parameter Name | Python Parameter Variable | Pattern | Required | Nullable "gameId":"0022000180", "actions":[ { - "actionNumber":4, - "clock":"PT11M58.00S", - "timeActual":"2021-01-16T00:40:31.3Z", + "actionNumber":2, + "actionType":"period", + "assistPersonId":1627759, + "assistPlayerNameInitial":"J. Brown", + "assistTotal":1, + "blockPersonId":1630202, + "blockPlayerName":"Pritchard", + "clock":"PT10M53.00S", + "description":"N. Vucevic 14' turnaround Hook (2 PTS) (A. Gordon 1 AST)", + "descriptor":"turnaround", + "edited":"2021-01-16T00:42:13Z", + "foulDrawnPersonId":201952, + "foulDrawnPlayerName":"Teague", + "foulPersonalTotal":1, + "foulTechnicalTotal":0, + "isFieldGoal":1, + "jumpBallLostPersonId":1628407, + "jumpBallLostPlayerName":"Bacon", + "jumpBallRecoverdPersonId":1630202, + "jumpBallRecoveredName":"P. Pritchard", + "jumpBallWonPersonId":202684, + "jumpBallWonPlayerName":"Thompson", + "officialId":202041, + "orderNumber":20000, "period":1, "periodType":"REGULAR", - "teamId":1610612738, - "teamTricode":"BOS", - "actionType":"jumpball", - "subType":"recovered", - "descriptor":"startperiod", - "qualifiers":[ - + "personId":202696, + "personIdsFilter":[ + 1630175, + 201952 ], - "personId":1629684, - "x":"None", - "y":"None", - "possession":1610612738, - "scoreHome":"0", - "scoreAway":"0", - "edited":"2021-01-16T00:40:31Z", - "orderNumber":40000, - "xLegacy":"None", - "yLegacy":"None", - "isFieldGoal":0, - "jumpBallRecoveredName":"G. Williams", - "jumpBallRecoverdPersonId":1629684, - "side":"None", "playerName":"Williams", "playerNameI":"G. Williams", - "personIdsFilter":[ - 1629684, - 202684, - 202696 + "pointsTotal":8, + "possession":1610612753, + "qualifiers":[ + "pointsinthepaint" ], - "jumpBallWonPlayerName":"Thompson", - "jumpBallWonPersonId":202684, - "description":"Jump Ball T. Thompson vs. N. Vucevic: Tip to G. Williams", - "jumpBallLostPlayerName":"Vucevic", - "jumpBallLostPersonId":202696 + "reboundDefensiveTotal":4, + "reboundOffensiveTotal":3, + "reboundTotal":7, + "scoreAway":"68", + "scoreHome":"72", + "shotActionNumber":40, + "shotDistance":10.64, + "shotResult":"Missed", + "side":"right", + "stealPersonId":"202696", + "stealPlayerName":"Vucevic", + "subType":"out", + "teamId":1610612738, + "teamTricode":"BOS", + "timeActual":"2021-01-16T01:16:36.7Z", + "turnoverTotal":2, + "value":"Corrected to Offensive Foul on C. Anthony", + "x":80.81471747700394, + "xLegacy":-63, + "y":37.31234681372549, + "yLegacy":128 } ] } From 549c03e54fc49e0297cbfcf7d3dfc75bc9de14ef Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Mon, 18 Jan 2021 08:30:33 -0500 Subject: [PATCH 12/20] Added AlwaysPresent to playbyplay.md --- docs/nba_api/live/endpoints/playbyplay.md | 113 +++++++++++----------- 1 file changed, 57 insertions(+), 56 deletions(-) diff --git a/docs/nba_api/live/endpoints/playbyplay.md b/docs/nba_api/live/endpoints/playbyplay.md index 1c15a323..06f2e45b 100644 --- a/docs/nba_api/live/endpoints/playbyplay.md +++ b/docs/nba_api/live/endpoints/playbyplay.md @@ -18,62 +18,63 @@ API Parameter Name | Python Parameter Variable | Pattern | Required | Nullable ['VIDEO_AVAILABLE_FLAG'] ``` ## Actions Insights -Key | Class | Sample | Description | Nullable ------------- | ------------ | :-----------: | :---: | :---: -`actionNumber`|``| `4` | `actionNumber is guaranteed to be sequential but not consectutive ([2, 5, 6, 7, 9, 10])` | | -`actionType`|``| `"period"` | `-` | | -`assistPersonId`|``| `1627759` | `-` | | -`assistPlayerNameInitial`|``| `J. Brown` | `-` | | -`assistTotal`|``| `3` | `-` | | -`blockPersonId`|``| `1627759` | `-` | | -`blockPlayerName`|``| `J. Brown` | `-` | | -`clock`|``| `PT03M59.00S` | `clock is the Period Time in which the play occurred` | | -`description`|``| `J. Brown 14' pullup Jump Shot (2 PTS)` | `description of the action` | | -`descriptor`|``| `pullup` | `a key phrase with regards to the play. Examples: ("heldball","technical","pullup","bad pass","driving finger roll"` ) | | -`edited`|``| `2021-01-16T02:01:02Z` | `The time in which the play was edited` | | -`foulDrawnPersonId`|``| `1627759` | `-` | | -`foulDrawnPlayerName`|``| `Brown` | `-` | | -`foulPersonalTotal`|``| `1` | `-` | | -`foulTechnicalTotal`|``| `0` | `-` | | -`isFieldGoal`|``| `0` | `0 | 1` | | -`jumpBallLostPersonId`|``| `203935` | `-` | | -`jumpBallLostPlayerName`|``| `Smart` | `-` | | -`jumpBallRecoverdPersonId`|``| `203932` | `-` | | -`jumpBallRecoveredName`|``| `A. Gordon` | `-` | | -`jumpBallWonPersonId`|``| `203920` | `-` | | -`jumpBallWonPlayerName`|``| `Birch` | `-` | | -`officialId`|``| `-` | `-` | | -`orderNumber`|``| `4560000` | `unknown consecutive number` | | -`period`|``| `3` | `-` | | -`periodType`|``| `-` | `-` | | -`personId`|``| `1629109` | `-` | | -`personIdsFilter`|``| `[203932, 203920, 203935]` | `players involved in the play. In this case ti was a jump ball (recovered, won, lost)` | | -`playerName`|``| `Clark` | `-` | | -`playerNameI`|``| `G. Clark` | `-` | | -`pointsTotal`|``| `6` | `-` | | -`possession`|``| `1610612753` | `The teamId who has possession` | | -`qualifiers`|``| `["pointsinthepaint"]` | `-` | | -`reboundDefensiveTotal`|``| `6` | `-` | | -`reboundOffensiveTotal`|``| `2` | `-` | | -`reboundTotal`|``| `8` | `-` | | -`scoreAway`|``| `68` | `-` | | -`scoreHome`|``| `83` | `-` | | -`shotActionNumber`|``| `10` | `shotActionNumber is guaranteed to be sequential but not consectutive ([10, 14, 18, 38])` | | -`shotDistance`|``| `4.44` | `-` | | -`shotResult`|``| `"Made" | "Missed"` | `` | | -`side`|``| `null | "left" | "right"` | `-` | | -`stealPersonId`|``| `1629750` | `-` | | -`stealPlayerName`|``| `Green` | `-` | | -`subType`|``| `"request` | `substitution type` | | -`teamId`|``| `1610612738` | `-` | | -`teamTricode`|``| `BOS` | `-` | | -`timeActual`|``| `2021-01-16T02:14:17.3Z` | `The time in which the play occurred` | | -`turnoverTotal`|``| `1` | `-` | | -`value`|``| `"Corrected to Offensive Foul on C. Anthony"` | `Was found to be present on an actionType of "instantreplay" and subType of "challenge" with a descriptor of "overturned"` | | -`x`|``| `90.22667542706965` | `-` | | -`xLegacy`|``| `-20` | `-` | | -`y`|``| `45.90226715686275` | `-` | | -`yLegacy`|``| `39` | `-` | | +This is intended to be a comprehensive list of all possible `actions` availale. Note that not all keys appear on every `action` as it depends on the `action` type +Key | Class | Sample | Description | AlwaysPresent | +------------ | ------------ | :-----------: | :------------------: | :---------: +`actionNumber`|``| `4` | `actionNumber is guaranteed to be sequential but not consectutive ([2, 5, 6, 7, 9, 10])` | `Yes` | +`actionType`|``| `"period"` | `-` | `Yes` | +`assistPersonId`|``| `1627759` | `-` | `No` | +`assistPlayerNameInitial`|``| `J. Brown` | `-` | `No` | +`assistTotal`|``| `3` | `-` | `No` | +`blockPersonId`|``| `1627759` | `-` | `No` | +`blockPlayerName`|``| `J. Brown` | `-` | `No` | +`clock`|``| `PT03M59.00S` | `clock is the Period Time in which the play occurred` | `Yes` | +`description`|``| `J. Brown 14' pullup Jump Shot (2 PTS)` | `description of the action` | `No` | +`descriptor`|``| `pullup` | `a key phrase with regards to the play. Examples: ("heldball","technical","pullup","bad pass","driving finger roll"` ) | `No` | +`edited`|``| `2021-01-16T02:01:02Z` | `The time in which the play was edited` | `No` | +`foulDrawnPersonId`|``| `1627759` | `-` | `No` | +`foulDrawnPlayerName`|``| `Brown` | `-` | `No` | +`foulPersonalTotal`|``| `1` | `-` | `No` | +`foulTechnicalTotal`|``| `0` | `-` | `No` | +`isFieldGoal`|``| `0` | `0 | 1` | `Yes` | +`jumpBallLostPersonId`|``| `203935` | `-` | `No` | +`jumpBallLostPlayerName`|``| `Smart` | `-` | `No` | +`jumpBallRecoverdPersonId`|``| `203932` | `-` | `No` | +`jumpBallRecoveredName`|``| `A. Gordon` | `-` | `No` | +`jumpBallWonPersonId`|``| `203920` | `-` | `No` | +`jumpBallWonPlayerName`|``| `Birch` | `-` | `No` | +`officialId`|``| `-` | `-` | `No` | +`orderNumber`|``| `4560000` | `unknown consecutive number` | `Yes` | +`period`|``| `3` | `-` | `Yes` | +`periodType`|``| `-` | `-` | `Yes` | +`personId`|``| `1629109` | `-` | `Yes` | +`personIdsFilter`|``| `[203932, 203920, 203935]` | `players involved in the play. In this case ti was a jump ball (recovered, won, lost)` | `Yes` | +`playerName`|``| `Clark` | `-` | `No` | +`playerNameI`|``| `G. Clark` | `-` | `No` | +`pointsTotal`|``| `6` | `-` | `No` | +`possession`|``| `1610612753` | `The teamId who has possession` | `Yes` | +`qualifiers`|``| `["pointsinthepaint"]` | `-` | `yes` | +`reboundDefensiveTotal`|``| `6` | `-` | `No` | +`reboundOffensiveTotal`|``| `2` | `-` | `No` | +`reboundTotal`|``| `8` | `-` | `No` | +`scoreAway`|``| `68` | `-` | `Yes` | +`scoreHome`|``| `83` | `-` | `Yes` | +`shotActionNumber`|``| `10` | `shotActionNumber is guaranteed to be sequential but not consectutive ([10, 14, 18, 38])` | +`shotDistance`|``| `4.44` | `-` | `No` | +`shotResult`|``| `"Made" | "Missed"` | `-` | `No` | +`side`|``| `null | "left" | "right"` | `-` | `Yes` | +`stealPersonId`|``| `1629750` | `-` | `No` | +`stealPlayerName`|``| `Green` | `-` | `No` | +`subType`|``| `"request` | `subType of the actonType` | `No` | +`teamId`|``| `1610612738` | `-` | `No` | +`teamTricode`|``| `BOS` | `-` | `No` | +`timeActual`|``| `2021-01-16T02:14:17.3Z` | `The time in which the play occurred` | `Yes` | +`turnoverTotal`|``| `1` | `-` | `No` | +`value`|``| `"Corrected to Offensive Foul on C. Anthony"` | `Was found to be present on an actionType of "instantreplay" and subType of "challenge" with a descriptor of "overturned"` | `No` | +`x`|``| `90.22667542706965` | `-` | `Yes` | +`xLegacy`|``| `-20` | `-` | `Yes` | +`y`|``| `45.90226715686275` | `-` | `Yes` | +`yLegacy`|``| `39` | `-` | `Yes` | ## JSON From 2ca63a1f491d898ab1b515f68b00aa2c02cb5d27 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Mon, 18 Jan 2021 08:49:38 -0500 Subject: [PATCH 13/20] Updated test for 3.4 & 3.5 backwards compatability --- docs/nba_api/live/endpoints/playbyplay.md | 6 +++--- tests/live/endpoints/test_boxscore.py | 15 --------------- tests/live/endpoints/test_playbyplay.py | 13 +------------ tests/live/endpoints/test_scoreboard.py | 9 --------- 4 files changed, 4 insertions(+), 39 deletions(-) diff --git a/docs/nba_api/live/endpoints/playbyplay.md b/docs/nba_api/live/endpoints/playbyplay.md index 06f2e45b..ae974e39 100644 --- a/docs/nba_api/live/endpoints/playbyplay.md +++ b/docs/nba_api/live/endpoints/playbyplay.md @@ -15,10 +15,10 @@ API Parameter Name | Python Parameter Variable | Pattern | Required | Nullable ## Data Sets #### Actions `actions` ```text -['VIDEO_AVAILABLE_FLAG'] +["actionNumber", "actionType", "assistPersonId", "assistPlayerNameInitial", "assistTotal", "blockPersonId", "blockPlayerName", "clock", "description", "descriptor", "edited", "foulDrawnPersonId", "foulDrawnPlayerName", "foulPersonalTotal", "foulTechnicalTotal", "isFieldGoal", "jumpBallLostPersonId", "jumpBallLostPlayerName", "jumpBallRecoverdPersonId", "jumpBallRecoveredName", "jumpBallWonPersonId", "jumpBallWonPlayerName", "officialId", "orderNumber", "period", "periodType", "personId", "personIdsFilter"[], "playerName", "playerNameI", "pointsTotal", "possession", "qualifiers"[], "reboundDefensiveTotal", "reboundOffensiveTotal", "reboundTotal", "scoreAway", "scoreHome", "shotActionNumber", "shotDistance", "shotResult", "side", "stealPersonId", "stealPlayerName", "subType", "teamId", "teamTricode", "timeActual", "turnoverTotal", "value", "x", "xLegacy", "y", "yLegacy"] ``` -## Actions Insights -This is intended to be a comprehensive list of all possible `actions` availale. Note that not all keys appear on every `action` as it depends on the `action` type +## About `Actions` Data Set +This is intended to be a comprehensive list of all possible `actions` available. Note that not all keys appear on every `action` as it depends on the `actionType` Key | Class | Sample | Description | AlwaysPresent | ------------ | ------------ | :-----------: | :------------------: | :---------: `actionNumber`|``| `4` | `actionNumber is guaranteed to be sequential but not consectutive ([2, 5, 6, 7, 9, 10])` | `Yes` | diff --git a/tests/live/endpoints/test_boxscore.py b/tests/live/endpoints/test_boxscore.py index 4cc001b8..30b51e79 100644 --- a/tests/live/endpoints/test_boxscore.py +++ b/tests/live/endpoints/test_boxscore.py @@ -29,29 +29,14 @@ def test_get_response(nba_http_patch): def test_get_dict(nba_http_patch): assert boxscore.BoxScore(game_id).get_dict() == content -def test_get_json(nba_http_patch): - assert boxscore.BoxScore(game_id).get_json() == json.dumps(content) - -def test_game_json(nba_http_patch): - assert boxscore.BoxScore(game_id).game.get_json() == json.dumps(content['game']) - def test_game_dict(nba_http_patch): assert boxscore.BoxScore(game_id).game.get_dict() == content['game'] -def test_home_team_json(nba_http_patch): - assert boxscore.BoxScore(game_id).home_team.get_json() == json.dumps(content['game']['homeTeam']) - def test_home_team_dict(nba_http_patch): assert boxscore.BoxScore(game_id).home_team.get_dict() == content['game']['homeTeam'] -def test_away_team_json(nba_http_patch): - assert boxscore.BoxScore(game_id).away_team.get_json() == json.dumps(content['game']['awayTeam']) - def test_away_team_dict(nba_http_patch): assert boxscore.BoxScore(game_id).away_team.get_dict() == content['game']['awayTeam'] -def test_officies_json(nba_http_patch): - assert boxscore.BoxScore(game_id).officials.get_json() == json.dumps(content['game']['officials']) - def test_officials_dict(nba_http_patch): assert boxscore.BoxScore(game_id).officials.get_dict() == content['game']['officials'] diff --git a/tests/live/endpoints/test_playbyplay.py b/tests/live/endpoints/test_playbyplay.py index ffc43a4a..a8bfbb04 100644 --- a/tests/live/endpoints/test_playbyplay.py +++ b/tests/live/endpoints/test_playbyplay.py @@ -23,19 +23,8 @@ def send_api_request(self, endpoint, parameters, referer=None, proxy=None, heade def test_get_request_url(nba_http_patch): assert playbyplay.PlayByPlay(game_id).get_request_url() == 'https://cdn.nba.com/static/json/liveData/playbyplay/playbyplay_0022000180.json' -def test_response(nba_http_patch): - assert json.dumps(content) == playbyplay.PlayByPlay(game_id).get_response() - def test_get_actions_dict(nba_http_patch): assert playbyplay.PlayByPlay(game_id).actions.get_dict() == actions -def test_get_actions_json(nba_http_patch): - assert playbyplay.PlayByPlay(game_id).actions.get_json() == json.dumps(actions) - -def test_get_response(nba_http_patch): - assert playbyplay.PlayByPlay(game_id).get_response() == json.dumps(content) def test_get_dict(nba_http_patch): - assert playbyplay.PlayByPlay(game_id).get_dict() == content - -def test_get_json(nba_http_patch): - assert playbyplay.PlayByPlay('0022000180').get_json() == json.dumps(content) \ No newline at end of file + assert playbyplay.PlayByPlay(game_id).get_dict() == content \ No newline at end of file diff --git a/tests/live/endpoints/test_scoreboard.py b/tests/live/endpoints/test_scoreboard.py index 68b0d705..97d71709 100644 --- a/tests/live/endpoints/test_scoreboard.py +++ b/tests/live/endpoints/test_scoreboard.py @@ -25,20 +25,11 @@ def test_get_games_dict(nba_http_patch): def test_get_games_dict(nba_http_patch): assert scoreboard.ScoreBoard().games.get_dict() == games -def test_get_games_dict(nba_http_patch): - assert scoreboard.ScoreBoard().games.get_json() == json.dumps(games) - def test_get_request_url(nba_http_patch): assert scoreboard.ScoreBoard().get_request_url() == 'https://cdn.nba.com/static/json/liveData/scoreboard/todaysScoreboard_00.json' -def test_get_response(nba_http_patch): - assert json.dumps(content) == scoreboard.ScoreBoard().get_response() - def test_get_dict(nba_http_patch): assert scoreboard.ScoreBoard().get_dict() == content -def test_get_json(nba_http_patch): - assert scoreboard.ScoreBoard().get_json() == json.dumps(content) - \ No newline at end of file From 58e429668a989b1bdd478d0fc416f23171ed75dd Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Mon, 18 Jan 2021 15:42:54 -0500 Subject: [PATCH 14/20] finilized testing and documentation for BoxScore --- .vscode/settings.json | 9 - .../{PlayByPlay_Live.ipynb => LiveData.ipynb} | 501 +++++++----------- docs/nba_api/live/endpoints/boxscore.md | 34 +- nba_api/live/nba/endpoints/boxscore.py | 56 +- nba_api/live/nba/endpoints/playbyplay.py | 7 +- nba_api/live/nba/endpoints/scoreboard.py | 17 +- tests/live/endpoints/test_boxscore.py | 22 + tests/live/endpoints/test_scoreboard.py | 4 +- 8 files changed, 305 insertions(+), 345 deletions(-) delete mode 100644 .vscode/settings.json rename docs/examples/{PlayByPlay_Live.ipynb => LiveData.ipynb} (78%) diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index cd5d5f7f..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "python.pythonPath": "venv\\Scripts\\python.exe", - "python.testing.pytestArgs": [ - "tests" - ], - "python.testing.unittestEnabled": false, - "python.testing.nosetestsEnabled": false, - "python.testing.pytestEnabled": true -} \ No newline at end of file diff --git a/docs/examples/PlayByPlay_Live.ipynb b/docs/examples/LiveData.ipynb similarity index 78% rename from docs/examples/PlayByPlay_Live.ipynb rename to docs/examples/LiveData.ipynb index 9eb563d6..6e769668 100644 --- a/docs/examples/PlayByPlay_Live.ipynb +++ b/docs/examples/LiveData.ipynb @@ -4,331 +4,305 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Working with live PlayByPlay data...\n", - "\n", - "In order to work with live data, you'll need to use a combination of data from nba_api.live and nba_api.stats.\n", - " \n", - "Live Data does not include any support for Pandas as the data is not structured in a way that is useful\n" + "# Working with NBA live data...\n", + "Libraries supporting live data do not include support for Pandas. Note: Any call to `{endpoint}.{Class}()` will perform a request. Example: `scoreboard.ScoreBoard()`. In order to avoid multiple requests, set `{endpoint}.{Class}()` to a variable. See sample code below.\n" ] }, { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 1, + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "from nba_api.stats.static import teams\n", - "\n", - "nba_teams = teams.get_teams()\n", - "# Select the dictionary for the Celtics, which contains their team ID\n", - "celtics = [team for team in nba_teams if team['abbreviation'] == 'BOS'][0]\n", - "celtics_id = celtics['id']" + "## Today's Score Board\n" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 1, "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "'https://stats.nba.com/stats/assisttracker?College=&Conference=&Country=&DateFrom=&DateTo=&Division=&DraftPick=&DraftYear=&GameScope=&Height=&LastNGames=&LeagueID=&Location=&Month=&OpponentTeamID=&Outcome=&PORound=&PerMode=&PlayerExperience=&PlayerPosition=&Season=&SeasonSegment=&SeasonType=&StarterBench=&TeamID=&VsConference=&VsDivision=&Weight='" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "ScoreBoardDate: 2021-01-17\n", + "0022000196: Knicks vs. Celtics @ 2021-01-17 13:00:00-05:00\n", + "0022000197: Cavaliers vs. Wizards @ 2021-01-17 14:00:00-05:00\n", + "0022000198: Bulls vs. Mavericks @ 2021-01-17 15:00:00-05:00\n", + "0022000199: 76ers vs. Thunder @ 2021-01-17 19:00:00-05:00\n", + "0022000200: Jazz vs. Nuggets @ 2021-01-17 20:00:00-05:00\n", + "0022000201: Pelicans vs. Kings @ 2021-01-17 21:00:00-05:00\n", + "0022000202: Pacers vs. Clippers @ 2021-01-17 22:00:00-05:00\n" + ] } ], "source": [ - "from nba_api.stats.endpoints import assisttracker\n", + "# Query nba.live.endpoints.scoreboard and list games in localTimeZone\n", + "from datetime import datetime, timezone\n", + "from dateutil import parser\n", + "from nba_api.live.nba.endpoints import scoreboard\n", "\n", - "assisttracker.AssistTracker().get_request_url()" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "dict_keys(['AssistTracker'])" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "assisttracker.AssistTracker().get_available_data()" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'{\"resource\":\"assisttracker\",\"parameters\":{\"PerMode\":null,\"LeagueID\":null,\"Season\":null,\"SeasonType\":null,\"PORound\":null,\"Outcome\":null,\"Location\":null,\"Month\":null,\"SeasonSegment\":null,\"DateFrom\":null,\"DateTo\":null,\"OpponentTeamID\":null,\"VsConference\":null,\"VsDivision\":null,\"TeamID\":null,\"Conference\":null,\"Division\":null,\"LastNGames\":null,\"GameScope\":null,\"PlayerExperience\":null,\"PlayerPosition\":null,\"StarterBench\":null,\"DraftYear\":null,\"DraftPick\":null,\"College\":null,\"Country\":null,\"Height\":null,\"Weight\":null},\"resultSets\":[{\"name\":\"AssistTracker\",\"headers\":[\"ASSISTS\"],\"rowSet\":[[54202]]}]}'" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "assisttracker.AssistTracker().get_response()" + "f = \"{gameId}: {awayTeam} vs. {homeTeam} @ {gameTimeLTZ}\" \n", + "\n", + "board = scoreboard.ScoreBoard()\n", + "print(\"ScoreBoardDate: \" + board.score_board_date)\n", + "games = board.games.get_dict()\n", + "for game in games:\n", + " gameTimeLTZ = parser.parse(game[\"gameTimeUTC\"]).replace(tzinfo=timezone.utc).astimezone(tz=None)\n", + " print(f.format(gameId=game['gameId'], awayTeam=game['awayTeam']['teamName'], homeTeam=game['homeTeam']['teamName'], gameTimeLTZ=gameTimeLTZ))" ] }, { - "cell_type": "code", - "execution_count": 13, + "cell_type": "markdown", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'resource': 'assisttracker',\n", - " 'parameters': {'PerMode': None,\n", - " 'LeagueID': None,\n", - " 'Season': None,\n", - " 'SeasonType': None,\n", - " 'PORound': None,\n", - " 'Outcome': None,\n", - " 'Location': None,\n", - " 'Month': None,\n", - " 'SeasonSegment': None,\n", - " 'DateFrom': None,\n", - " 'DateTo': None,\n", - " 'OpponentTeamID': None,\n", - " 'VsConference': None,\n", - " 'VsDivision': None,\n", - " 'TeamID': None,\n", - " 'Conference': None,\n", - " 'Division': None,\n", - " 'LastNGames': None,\n", - " 'GameScope': None,\n", - " 'PlayerExperience': None,\n", - " 'PlayerPosition': None,\n", - " 'StarterBench': None,\n", - " 'DraftYear': None,\n", - " 'DraftPick': None,\n", - " 'College': None,\n", - " 'Country': None,\n", - " 'Height': None,\n", - " 'Weight': None},\n", - " 'resultSets': [{'name': 'AssistTracker',\n", - " 'headers': ['ASSISTS'],\n", - " 'rowSet': [[54202]]}]}" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], "source": [ - "assisttracker.AssistTracker().get_dict()" + "## Box Score" ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 1, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'{\"resource\": \"assisttracker\", \"parameters\": {\"PerMode\": null, \"LeagueID\": null, \"Season\": null, \"SeasonType\": null, \"PORound\": null, \"Outcome\": null, \"Location\": null, \"Month\": null, \"SeasonSegment\": null, \"DateFrom\": null, \"DateTo\": null, \"OpponentTeamID\": null, \"VsConference\": null, \"VsDivision\": null, \"TeamID\": null, \"Conference\": null, \"Division\": null, \"LastNGames\": null, \"GameScope\": null, \"PlayerExperience\": null, \"PlayerPosition\": null, \"StarterBench\": null, \"DraftYear\": null, \"DraftPick\": null, \"College\": null, \"Country\": null, \"Height\": null, \"Weight\": null}, \"resultSets\": [{\"name\": \"AssistTracker\", \"headers\": [\"ASSISTS\"], \"rowSet\": [[54202]]}]}'" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ - "assisttracker.AssistTracker().get_json()" + "# Get BoxScore\n", + "from nba_api.live.nba.endpoints import boxscore\n", + "box = boxscore.BoxScore('0022000196') " ] }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "[{'ASSISTS': 54202}]" + "{'gameId': '0022000196',\n", + " 'gameTimeLocal': '2021-01-17T13:00:00-05:00',\n", + " 'gameTimeUTC': '2021-01-17T18:00:00Z',\n", + " 'gameTimeHome': '2021-01-17T13:00:00-05:00',\n", + " 'gameTimeAway': '2021-01-17T13:00:00-05:00',\n", + " 'gameEt': '2021-01-17T13:00:00-05:00',\n", + " 'duration': 134,\n", + " 'gameCode': '20210117/NYKBOS',\n", + " 'gameStatusText': 'Final',\n", + " 'gameStatus': 3,\n", + " 'regulationPeriods': 4,\n", + " 'period': 4,\n", + " 'gameClock': 'PT00M00.00S',\n", + " 'attendance': 0,\n", + " 'sellout': '0'}" ] }, - "execution_count": 21, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "assisttracker.AssistTracker().get_normalized_dict()['AssistTracker']" + "#Game Details\n", + "box.game_info.get_dict()" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "'{\"AssistTracker\": [{\"ASSISTS\": 54202}]}'" + "{'arenaId': 17,\n", + " 'arenaName': 'TD Garden',\n", + " 'arenaCity': 'Boston',\n", + " 'arenaState': 'MA',\n", + " 'arenaCountry': 'US',\n", + " 'arenaTimezone': 'America/New_York'}" ] }, - "execution_count": 16, + "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "assisttracker.AssistTracker().get_normalized_json()" + "#Arena\n", + "box.arena.get_dict()" ] }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'https://cdn.nba.com/static/json/liveData/scoreboard/todaysScoreboard_00.json'" - ] - }, - "execution_count": 23, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Query nba.live.endpoints for the score board of GameID 002200011 = IND vs NYK\n", - "from nba_api.live.nba.endpoints import scoreboard\n", - "scoreboard.ScoreBoard().get_request_url()" - ] - }, - { - "cell_type": "code", - "execution_count": 28, + "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "'{\\r\\n \"meta\": {\\r\\n \"version\": 1,\\r\\n \"request\": \"https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json\",\\r\\n \"time\": \"2021-01-17 05:30:36.3036\",\\r\\n \"code\": 200\\r\\n },\\r\\n \"scoreboard\": {\\r\\n \"gameDate\": \"2021-01-17\",\\r\\n \"leagueId\": \"00\",\\r\\n \"leagueName\": \"National Basketball Association\",\\r\\n \"games\": [\\r\\n {\\r\\n \"gameId\": \"0022000196\",\\r\\n \"gameCode\": \"20210117/NYKBOS\",\\r\\n \"gameStatus\": 3,\\r\\n \"gameStatusText\": \"Final\",\\r\\n \"period\": 4,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-17T18:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T13:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612738,\\r\\n \"teamName\": \"Celtics\",\\r\\n \"teamCity\": \"Boston\",\\r\\n \"teamTricode\": \"BOS\",\\r\\n \"wins\": 8,\\r\\n \"losses\": 4,\\r\\n \"score\": 75,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 1,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 17\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 18\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 15\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 25\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612752,\\r\\n \"teamName\": \"Knicks\",\\r\\n \"teamCity\": \"New York\",\\r\\n \"teamTricode\": \"NYK\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 8,\\r\\n \"score\": 105,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 1,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 28\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 20\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 27\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 30\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 1627759,\\r\\n \"name\": \"Jaylen Brown\",\\r\\n \"jerseyNum\": \"7\",\\r\\n \"position\": \"G-F\",\\r\\n \"teamTricode\": \"BOS\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 25,\\r\\n \"rebounds\": 6,\\r\\n \"assists\": 3\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 203944,\\r\\n \"name\": \"Julius Randle\",\\r\\n \"jerseyNum\": \"30\",\\r\\n \"position\": \"F-C\",\\r\\n \"teamTricode\": \"NYK\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 20,\\r\\n \"rebounds\": 12,\\r\\n \"assists\": 4\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000197\",\\r\\n \"gameCode\": \"20210117/CLEWAS\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"PPD\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-17T19:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T14:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612764,\\r\\n \"teamName\": \"Wizards\",\\r\\n \"teamCity\": \"Washington\",\\r\\n \"teamTricode\": \"WAS\",\\r\\n \"wins\": 3,\\r\\n \"losses\": 8,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612739,\\r\\n \"teamName\": \"Cavaliers\",\\r\\n \"teamCity\": \"Cleveland\",\\r\\n \"teamTricode\": \"CLE\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 7,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"WAS\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"CLE\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000198\",\\r\\n \"gameCode\": \"20210117/CHIDAL\",\\r\\n \"gameStatus\": 3,\\r\\n \"gameStatusText\": \"Final\",\\r\\n \"period\": 4,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-17T20:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T15:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612742,\\r\\n \"teamName\": \"Mavericks\",\\r\\n \"teamCity\": \"Dallas\",\\r\\n \"teamTricode\": \"DAL\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 6,\\r\\n \"score\": 101,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 23\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 29\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 23\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 26\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612741,\\r\\n \"teamName\": \"Bulls\",\\r\\n \"teamCity\": \"Chicago\",\\r\\n \"teamTricode\": \"CHI\",\\r\\n \"wins\": 5,\\r\\n \"losses\": 8,\\r\\n \"score\": 117,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 27\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 40\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 22\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 28\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 1629029,\\r\\n \"name\": \"Luka Doncic\",\\r\\n \"jerseyNum\": \"77\",\\r\\n \"position\": \"F-G\",\\r\\n \"teamTricode\": \"DAL\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 36,\\r\\n \"rebounds\": 16,\\r\\n \"assists\": 15\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 1628374,\\r\\n \"name\": \"Lauri Markkanen\",\\r\\n \"jerseyNum\": \"24\",\\r\\n \"position\": \"F-C\",\\r\\n \"teamTricode\": \"CHI\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 29,\\r\\n \"rebounds\": 10,\\r\\n \"assists\": 3\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000199\",\\r\\n \"gameCode\": \"20210117/PHIOKC\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"7:00 pm ET\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-18T00:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T19:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612760,\\r\\n \"teamName\": \"Thunder\",\\r\\n \"teamCity\": \"Oklahoma City\",\\r\\n \"teamTricode\": \"OKC\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 6,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612755,\\r\\n \"teamName\": \"76ers\",\\r\\n \"teamCity\": \"Philadelphia\",\\r\\n \"teamTricode\": \"PHI\",\\r\\n \"wins\": 9,\\r\\n \"losses\": 5,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"OKC\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"PHI\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000200\",\\r\\n \"gameCode\": \"20210117/UTADEN\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"8:00 pm ET\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-18T01:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T20:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612743,\\r\\n \"teamName\": \"Nuggets\",\\r\\n \"teamCity\": \"Denver\",\\r\\n \"teamTricode\": \"DEN\",\\r\\n \"wins\": 6,\\r\\n \"losses\": 6,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612762,\\r\\n \"teamName\": \"Jazz\",\\r\\n \"teamCity\": \"Utah\",\\r\\n \"teamTricode\": \"UTA\",\\r\\n \"wins\": 8,\\r\\n \"losses\": 4,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"DEN\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"UTA\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000201\",\\r\\n \"gameCode\": \"20210117/NOPSAC\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"9:00 pm ET\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-18T02:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T21:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612758,\\r\\n \"teamName\": \"Kings\",\\r\\n \"teamCity\": \"Sacramento\",\\r\\n \"teamTricode\": \"SAC\",\\r\\n \"wins\": 5,\\r\\n \"losses\": 8,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612740,\\r\\n \"teamName\": \"Pelicans\",\\r\\n \"teamCity\": \"New Orleans\",\\r\\n \"teamTricode\": \"NOP\",\\r\\n \"wins\": 4,\\r\\n \"losses\": 7,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"SAC\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"NOP\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n },\\r\\n {\\r\\n \"gameId\": \"0022000202\",\\r\\n \"gameCode\": \"20210117/INDLAC\",\\r\\n \"gameStatus\": 1,\\r\\n \"gameStatusText\": \"10:00 pm ET\",\\r\\n \"period\": 0,\\r\\n \"gameClock\": \"\",\\r\\n \"gameTimeUTC\": \"2021-01-18T03:00:00Z\",\\r\\n \"gameEt\": \"2021-01-17T22:00:00Z\",\\r\\n \"regulationPeriods\": 4,\\r\\n \"seriesGameNumber\": \"\",\\r\\n \"seriesText\": \"\",\\r\\n \"homeTeam\": {\\r\\n \"teamId\": 1610612746,\\r\\n \"teamName\": \"Clippers\",\\r\\n \"teamCity\": \"LA\",\\r\\n \"teamTricode\": \"LAC\",\\r\\n \"wins\": 9,\\r\\n \"losses\": 4,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"awayTeam\": {\\r\\n \"teamId\": 1610612754,\\r\\n \"teamName\": \"Pacers\",\\r\\n \"teamCity\": \"Indiana\",\\r\\n \"teamTricode\": \"IND\",\\r\\n \"wins\": 8,\\r\\n \"losses\": 4,\\r\\n \"score\": 0,\\r\\n \"inBonus\": null,\\r\\n \"timeoutsRemaining\": 0,\\r\\n \"periods\": [\\r\\n {\\r\\n \"period\": 1,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 2,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 3,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n },\\r\\n {\\r\\n \"period\": 4,\\r\\n \"periodType\": \"REGULAR\",\\r\\n \"score\": 0\\r\\n }\\r\\n ]\\r\\n },\\r\\n \"gameLeaders\": {\\r\\n \"homeLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"LAC\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n },\\r\\n \"awayLeaders\": {\\r\\n \"personId\": 0,\\r\\n \"name\": \"\",\\r\\n \"jerseyNum\": \"\",\\r\\n \"position\": \"\",\\r\\n \"teamTricode\": \"IND\",\\r\\n \"playerSlug\": null,\\r\\n \"points\": 0,\\r\\n \"rebounds\": 0,\\r\\n \"assists\": 0\\r\\n }\\r\\n },\\r\\n \"pbOdds\": {\\r\\n \"team\": null,\\r\\n \"odds\": 0.0,\\r\\n \"suspended\": 1\\r\\n }\\r\\n }\\r\\n ]\\r\\n }\\r\\n}'" + "[{'personId': 2882,\n", + " 'name': 'Sean Wright',\n", + " 'nameI': 'S. Wright',\n", + " 'firstName': 'Sean',\n", + " 'familyName': 'Wright',\n", + " 'jerseyNum': '4',\n", + " 'assignment': 'OFFICIAL1'},\n", + " {'personId': 201638,\n", + " 'name': 'Brent Barnaky',\n", + " 'nameI': 'B. Barnaky',\n", + " 'firstName': 'Brent',\n", + " 'familyName': 'Barnaky',\n", + " 'jerseyNum': '36',\n", + " 'assignment': 'OFFICIAL2'},\n", + " {'personId': 1627524,\n", + " 'name': 'Nate Green',\n", + " 'nameI': 'N. Green',\n", + " 'firstName': 'Nate',\n", + " 'familyName': 'Green',\n", + " 'jerseyNum': '65',\n", + " 'assignment': 'OFFICIAL3'}]" ] }, - "execution_count": 28, + "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "scoreboard.ScoreBoard().get_response()" + "#Officials\n", + "box.officials.get_dict()" ] }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 32, "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 31, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "203493: Reggie Bullock: 11 PTS\n", + "203944: Julius Randle: 20 PTS\n", + "1629011: Mitchell Robinson: 8 PTS\n", + "1629628: RJ Barrett: 19 PTS\n", + "203901: Elfrid Payton: 9 PTS\n", + "203457: Nerlens Noel: 5 PTS\n", + "203085: Austin Rivers: 0 PTS\n", + "1630193: Immanuel Quickley: 17 PTS\n", + "1630167: Obi Toppin: 12 PTS\n", + "1628995: Kevin Knox II: 3 PTS\n", + "1628372: Dennis Smith Jr.: 1 PTS\n", + "1629033: Theo Pinson: 0 PTS\n", + "1629649: Ignas Brazdeikis: 0 PTS\n", + "201959: Taj Gibson: 0 PTS\n", + "1629607: Jared Harper: 0 PTS\n", + "202692: Alec Burks: 0 PTS\n", + "1628373: Frank Ntilikina: 0 PTS\n" + ] } ], "source": [ - "scoreboard.ScoreBoard().games.get" + "#homeTeam & #awayTeam have the identicial data structure.\n", + "players = box.away_team.get_dict()['players']\n", + "f = \"{player_id}: {name}: {points} PTS\"\n", + "for player in players:\n", + " print(f.format(player_id=player['personId'],name=player['name'],points=player['statistics']['points']))" ] }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "'{\"meta\": {\"version\": 1, \"request\": \"https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json\", \"time\": \"2021-01-17 05:31:11.3111\", \"code\": 200}, \"scoreboard\": {\"gameDate\": \"2021-01-17\", \"leagueId\": \"00\", \"leagueName\": \"National Basketball Association\", \"games\": [{\"gameId\": \"0022000196\", \"gameCode\": \"20210117/NYKBOS\", \"gameStatus\": 3, \"gameStatusText\": \"Final\", \"period\": 4, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T18:00:00Z\", \"gameEt\": \"2021-01-17T13:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612738, \"teamName\": \"Celtics\", \"teamCity\": \"Boston\", \"teamTricode\": \"BOS\", \"wins\": 8, \"losses\": 4, \"score\": 75, \"inBonus\": null, \"timeoutsRemaining\": 1, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 17}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 18}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 15}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 25}]}, \"awayTeam\": {\"teamId\": 1610612752, \"teamName\": \"Knicks\", \"teamCity\": \"New York\", \"teamTricode\": \"NYK\", \"wins\": 6, \"losses\": 8, \"score\": 105, \"inBonus\": null, \"timeoutsRemaining\": 1, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 28}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 20}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 27}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 30}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 1627759, \"name\": \"Jaylen Brown\", \"jerseyNum\": \"7\", \"position\": \"G-F\", \"teamTricode\": \"BOS\", \"playerSlug\": null, \"points\": 25, \"rebounds\": 6, \"assists\": 3}, \"awayLeaders\": {\"personId\": 203944, \"name\": \"Julius Randle\", \"jerseyNum\": \"30\", \"position\": \"F-C\", \"teamTricode\": \"NYK\", \"playerSlug\": null, \"points\": 20, \"rebounds\": 12, \"assists\": 4}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000197\", \"gameCode\": \"20210117/CLEWAS\", \"gameStatus\": 1, \"gameStatusText\": \"PPD\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T19:00:00Z\", \"gameEt\": \"2021-01-17T14:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612764, \"teamName\": \"Wizards\", \"teamCity\": \"Washington\", \"teamTricode\": \"WAS\", \"wins\": 3, \"losses\": 8, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612739, \"teamName\": \"Cavaliers\", \"teamCity\": \"Cleveland\", \"teamTricode\": \"CLE\", \"wins\": 6, \"losses\": 7, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"WAS\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"CLE\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000198\", \"gameCode\": \"20210117/CHIDAL\", \"gameStatus\": 3, \"gameStatusText\": \"Final\", \"period\": 4, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T20:00:00Z\", \"gameEt\": \"2021-01-17T15:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612742, \"teamName\": \"Mavericks\", \"teamCity\": \"Dallas\", \"teamTricode\": \"DAL\", \"wins\": 6, \"losses\": 6, \"score\": 101, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 23}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 29}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 23}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 26}]}, \"awayTeam\": {\"teamId\": 1610612741, \"teamName\": \"Bulls\", \"teamCity\": \"Chicago\", \"teamTricode\": \"CHI\", \"wins\": 5, \"losses\": 8, \"score\": 117, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 27}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 40}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 22}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 28}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 1629029, \"name\": \"Luka Doncic\", \"jerseyNum\": \"77\", \"position\": \"F-G\", \"teamTricode\": \"DAL\", \"playerSlug\": null, \"points\": 36, \"rebounds\": 16, \"assists\": 15}, \"awayLeaders\": {\"personId\": 1628374, \"name\": \"Lauri Markkanen\", \"jerseyNum\": \"24\", \"position\": \"F-C\", \"teamTricode\": \"CHI\", \"playerSlug\": null, \"points\": 29, \"rebounds\": 10, \"assists\": 3}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000199\", \"gameCode\": \"20210117/PHIOKC\", \"gameStatus\": 1, \"gameStatusText\": \"7:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T00:00:00Z\", \"gameEt\": \"2021-01-17T19:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612760, \"teamName\": \"Thunder\", \"teamCity\": \"Oklahoma City\", \"teamTricode\": \"OKC\", \"wins\": 6, \"losses\": 6, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612755, \"teamName\": \"76ers\", \"teamCity\": \"Philadelphia\", \"teamTricode\": \"PHI\", \"wins\": 9, \"losses\": 5, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"OKC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"PHI\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000200\", \"gameCode\": \"20210117/UTADEN\", \"gameStatus\": 1, \"gameStatusText\": \"8:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T01:00:00Z\", \"gameEt\": \"2021-01-17T20:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612743, \"teamName\": \"Nuggets\", \"teamCity\": \"Denver\", \"teamTricode\": \"DEN\", \"wins\": 6, \"losses\": 6, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612762, \"teamName\": \"Jazz\", \"teamCity\": \"Utah\", \"teamTricode\": \"UTA\", \"wins\": 8, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"DEN\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"UTA\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000201\", \"gameCode\": \"20210117/NOPSAC\", \"gameStatus\": 1, \"gameStatusText\": \"9:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T02:00:00Z\", \"gameEt\": \"2021-01-17T21:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612758, \"teamName\": \"Kings\", \"teamCity\": \"Sacramento\", \"teamTricode\": \"SAC\", \"wins\": 5, \"losses\": 8, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612740, \"teamName\": \"Pelicans\", \"teamCity\": \"New Orleans\", \"teamTricode\": \"NOP\", \"wins\": 4, \"losses\": 7, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"SAC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"NOP\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000202\", \"gameCode\": \"20210117/INDLAC\", \"gameStatus\": 1, \"gameStatusText\": \"10:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T03:00:00Z\", \"gameEt\": \"2021-01-17T22:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612746, \"teamName\": \"Clippers\", \"teamCity\": \"LA\", \"teamTricode\": \"LAC\", \"wins\": 9, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612754, \"teamName\": \"Pacers\", \"teamCity\": \"Indiana\", \"teamTricode\": \"IND\", \"wins\": 8, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"LAC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"IND\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}]}}'" + "{'teamId': 1610612752,\n", + " 'teamName': 'Knicks',\n", + " 'teamCity': 'New York',\n", + " 'teamTricode': 'NYK',\n", + " 'score': 105,\n", + " 'inBonus': '1',\n", + " 'timeoutsRemaining': 2,\n", + " 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28},\n", + " {'period': 2, 'periodType': 'REGULAR', 'score': 20},\n", + " {'period': 3, 'periodType': 'REGULAR', 'score': 27},\n", + " {'period': 4, 'periodType': 'REGULAR', 'score': 30}],\n", + " 'statistics': {'assists': 22,\n", + " 'assistsTurnoverRatio': 1.29411764705882,\n", + " 'benchPoints': 38,\n", + " 'biggestLead': 37,\n", + " 'biggestLeadScore': '101-64',\n", + " 'biggestScoringRun': 12,\n", + " 'biggestScoringRunScore': '101-64',\n", + " 'blocks': 7,\n", + " 'blocksReceived': 2,\n", + " 'fastBreakPointsAttempted': 3,\n", + " 'fastBreakPointsMade': 2,\n", + " 'fastBreakPointsPercentage': 0.666666666666666,\n", + " 'fieldGoalsAttempted': 80,\n", + " 'fieldGoalsEffectiveAdjusted': 0.55,\n", + " 'fieldGoalsMade': 38,\n", + " 'fieldGoalsPercentage': 0.475,\n", + " 'foulsOffensive': 3,\n", + " 'foulsDrawn': 22,\n", + " 'foulsPersonal': 28,\n", + " 'foulsTeam': 25,\n", + " 'foulsTechnical': 0,\n", + " 'foulsTeamTechnical': 0,\n", + " 'freeThrowsAttempted': 21,\n", + " 'freeThrowsMade': 17,\n", + " 'freeThrowsPercentage': 0.8095238095238101,\n", + " 'leadChanges': 0,\n", + " 'minutes': 'PT240M00.00S',\n", + " 'minutesCalculated': 'PT240M',\n", + " 'points': 105,\n", + " 'pointsAgainst': 75,\n", + " 'pointsFastBreak': 7,\n", + " 'pointsFromTurnovers': 22,\n", + " 'pointsInThePaint': 48,\n", + " 'pointsInThePaintAttempted': 41,\n", + " 'pointsInThePaintMade': 24,\n", + " 'pointsInThePaintPercentage': 0.585365853658536,\n", + " 'pointsSecondChance': 17,\n", + " 'reboundsDefensive': 43,\n", + " 'reboundsOffensive': 10,\n", + " 'reboundsPersonal': 53,\n", + " 'reboundsTeam': 10,\n", + " 'reboundsTeamDefensive': 6,\n", + " 'reboundsTeamOffensive': 4,\n", + " 'reboundsTotal': 63,\n", + " 'secondChancePointsAttempted': 7,\n", + " 'secondChancePointsMade': 5,\n", + " 'secondChancePointsPercentage': 0.714285714285714,\n", + " 'steals': 11,\n", + " 'threePointersAttempted': 31,\n", + " 'threePointersMade': 12,\n", + " 'threePointersPercentage': 0.387096774193548,\n", + " 'timeLeading': 'PT46M30.00S',\n", + " 'timesTied': 1,\n", + " 'trueShootingAttempts': 89.24,\n", + " 'trueShootingPercentage': 0.588301210219632,\n", + " 'turnovers': 16,\n", + " 'turnoversTeam': 1,\n", + " 'turnoversTotal': 17,\n", + " 'twoPointersAttempted': 49,\n", + " 'twoPointersMade': 26,\n", + " 'twoPointersPercentage': 0.530612244897959}}" ] }, - "execution_count": 30, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "scoreboard.ScoreBoard().get_json()" + "# Get BoxScore\n", + "from nba_api.live.nba.endpoints import boxscore\n", + "box = boxscore.BoxScore('0022000196') \n", + "box.home_team_stats.get_dict()\n", + "box.away_team_stats.get_dict()" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, { "cell_type": "code", "execution_count": 2, @@ -352,7 +326,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 49, "metadata": { "scrolled": true }, @@ -361,18 +335,9 @@ "name": "stdout", "output_type": "stream", "text": [ - "2\n" - ] - }, - { - "ename": "TypeError", - "evalue": "'list' object is not callable", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 19\u001b[0m \u001b[1;32mif\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[0misinstance\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mactions\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mlist\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 20\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mactions\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 21\u001b[1;33m \u001b[0maction_keys_values\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0me\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mformat\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mk_key\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0mv_value\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mactions\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 22\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0msorted\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0maction_keys\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 23\u001b[0m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0msorted\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0maction_keys\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", - "\u001b[1;31mTypeError\u001b[0m: 'list' object is not callable" + "[\"actionNumber:\", \"actionType:\", \"assistPersonId:\", \"assistPlayerNameInitial:\", \"assistTotal:\", \"blockPersonId:\", \"blockPlayerName:\", \"clock:\", \"description:\", \"descriptor:\", \"edited:\", \"foulDrawnPersonId:\", \"foulDrawnPlayerName:\", \"foulPersonalTotal:\", \"foulTechnicalTotal:\", \"isFieldGoal:\", \"jumpBallLostPersonId:\", \"jumpBallLostPlayerName:\", \"jumpBallRecoverdPersonId:\", \"jumpBallRecoveredName:\", \"jumpBallWonPersonId:\", \"jumpBallWonPlayerName:\", \"officialId:\", \"orderNumber:\", \"period:\", \"periodType:\", \"personId:\", \"personIdsFilter:\", \"playerName:\", \"playerNameI:\", \"pointsTotal:\", \"possession:\", \"qualifiers:\", \"reboundDefensiveTotal:\", \"reboundOffensiveTotal:\", \"reboundTotal:\", \"scoreAway:\", \"scoreHome:\", \"shotActionNumber:\", \"shotDistance:\", \"shotResult:\", \"side:\", \"side:\", \"stealPersonId:\", \"stealPlayerName:\", \"subType:\", \"teamId:\", \"teamTricode:\", \"timeActual:\", \"turnoverTotal:\", \"value:\", \"x:\", \"x:\", \"xLegacy:\", \"xLegacy:\", \"y:\", \"y:\", \"yLegacy:\", \"yLegacy:\"]\n", + "537\n", + "59\n" ] } ], @@ -384,86 +349,20 @@ "\n", "actions = playbyplay.PlayByPlay('0022000180').get_dict()['game']['actions']\n", "action_keys = []\n", - "action_keys_values = []\n", "no_actions = 0\n", "no_keys = 0\n", "for actions in actions:\n", " no_actions = no_actions + 1\n", " for key in actions.keys():\n", - " if (actions[key] == None): continue\n", " value = f.format(k_key=key,v_type=type(actions[key]))\n", " if value not in action_keys :\n", " no_keys = no_keys + 1\n", " action_keys.append(value)\n", - " if not isinstance(actions[key], list):\n", - " print(actions[key])\n", - " action_keys_values(e.format(k_key=key,v_value=actions[key]))\n", - "print(sorted(action_keys))\n", "print(sorted(action_keys))\n", "print(no_actions)\n", "print(no_keys)" ] }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000180/boxscore?Format=json', 'time': '2021-01-15 23:51:25.282704'}, 'game': {'gameId': '0022000180', 'gameTimeLocal': '2021-01-15T19:30:00-05:00', 'gameTimeUTC': '2021-01-16T00:30:00Z', 'gameTimeHome': '2021-01-15T19:30:00-05:00', 'gameTimeAway': '2021-01-15T19:30:00-05:00', 'gameEt': '2021-01-15T19:30:00-05:00', 'duration': 125, 'gameCode': '20210115/ORLBOS', 'gameStatusText': 'Final', 'gameStatus': 3, 'regulationPeriods': 4, 'period': 4, 'gameClock': 'PT00M00.00S', 'attendance': 0, 'sellout': '0', 'arena': {'arenaId': 17, 'arenaName': 'TD Garden', 'arenaCity': 'Boston', 'arenaState': 'MA', 'arenaCountry': 'US', 'arenaTimezone': 'America/New_York'}, 'officials': [{'personId': 201638, 'name': 'Brent Barnaky', 'nameI': 'B. Barnaky', 'firstName': 'Brent', 'familyName': 'Barnaky', 'jerseyNum': '36', 'assignment': 'OFFICIAL2'}, {'personId': 202041, 'name': 'Kevin Scott', 'nameI': 'K. Scott', 'firstName': 'Kevin', 'familyName': 'Scott', 'jerseyNum': '24', 'assignment': 'OFFICIAL1'}, {'personId': 1627541, 'name': 'Natalie Sago', 'nameI': 'N. Sago', 'firstName': 'Natalie', 'familyName': 'Sago', 'jerseyNum': '9', 'assignment': 'OFFICIAL3'}], 'homeTeam': {'teamId': 1610612738, 'teamName': 'Celtics', 'teamCity': 'Boston', 'teamTricode': 'BOS', 'score': 124, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 34}, {'period': 2, 'periodType': 'REGULAR', 'score': 26}, {'period': 3, 'periodType': 'REGULAR', 'score': 28}, {'period': 4, 'periodType': 'REGULAR', 'score': 36}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 1627759, 'jerseyNum': '7', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 8, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 4, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 7, 'freeThrowsMade': 7, 'freeThrowsPercentage': 1.0, 'minus': 50.0, 'minutes': 'PT25M01.00S', 'minutesCalculated': 'PT25M', 'plus': 65.0, 'plusMinusPoints': 15.0, 'points': 21, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 0, 'reboundsDefensive': 2, 'reboundsOffensive': 0, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 5, 'threePointersMade': 2, 'threePointersPercentage': 0.4, 'turnovers': 2, 'twoPointersAttempted': 7, 'twoPointersMade': 4, 'twoPointersPercentage': 0.5714285714285711}, 'name': 'Jaylen Brown', 'nameI': 'J. Brown', 'firstName': 'Jaylen', 'familyName': 'Brown'}, {'status': 'ACTIVE', 'order': 2, 'personId': 1629684, 'jerseyNum': '12', 'position': 'PF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 3, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.333333333333333, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 45.0, 'minutes': 'PT23M00.00S', 'minutesCalculated': 'PT23M', 'plus': 59.0, 'plusMinusPoints': 14.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 1, 'reboundsTotal': 2, 'steals': 0, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Grant Williams', 'nameI': 'G. Williams', 'firstName': 'Grant', 'familyName': 'Williams'}, {'status': 'ACTIVE', 'order': 3, 'personId': 202684, 'jerseyNum': '13', 'position': 'C', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 5, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.4, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 44.0, 'minutes': 'PT20M29.07S', 'minutesCalculated': 'PT21M', 'plus': 57.0, 'plusMinusPoints': 13.0, 'points': 4, 'pointsFastBreak': 2, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 10, 'reboundsOffensive': 1, 'reboundsTotal': 11, 'steals': 1, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 2, 'twoPointersAttempted': 5, 'twoPointersMade': 2, 'twoPointersPercentage': 0.4}, 'name': 'Tristan Thompson', 'nameI': 'T. Thompson', 'firstName': 'Tristan', 'familyName': 'Thompson'}, {'status': 'ACTIVE', 'order': 4, 'personId': 201952, 'jerseyNum': '55', 'position': 'SG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 10, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 5, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 5, 'freeThrowsMade': 5, 'freeThrowsPercentage': 1.0, 'minus': 42.0, 'minutes': 'PT20M53.02S', 'minutesCalculated': 'PT21M', 'plus': 56.0, 'plusMinusPoints': 14.0, 'points': 17, 'pointsFastBreak': 2, 'pointsInThePaint': 6, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 2, 'threePointersAttempted': 4, 'threePointersMade': 2, 'threePointersPercentage': 0.5, 'turnovers': 1, 'twoPointersAttempted': 6, 'twoPointersMade': 3, 'twoPointersPercentage': 0.5}, 'name': 'Jeff Teague', 'nameI': 'J. Teague', 'firstName': 'Jeff', 'familyName': 'Teague'}, {'status': 'ACTIVE', 'order': 5, 'personId': 203935, 'jerseyNum': '36', 'position': 'PG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 13, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.384615384615385, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 54.0, 'minutes': 'PT27M49.00S', 'minutesCalculated': 'PT28M', 'plus': 82.0, 'plusMinusPoints': 28.0, 'points': 14, 'pointsFastBreak': 3, 'pointsInThePaint': 0, 'pointsSecondChance': 3, 'reboundsDefensive': 2, 'reboundsOffensive': 0, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 10, 'threePointersMade': 4, 'threePointersPercentage': 0.4, 'turnovers': 1, 'twoPointersAttempted': 3, 'twoPointersMade': 1, 'twoPointersPercentage': 0.333333333333333}, 'name': 'Marcus Smart', 'nameI': 'M. Smart', 'firstName': 'Marcus', 'familyName': 'Smart'}, {'status': 'ACTIVE', 'order': 6, 'personId': 1628464, 'jerseyNum': '27', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 5, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.8, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 40.0, 'minutes': 'PT20M44.00S', 'minutesCalculated': 'PT21M', 'plus': 50.0, 'plusMinusPoints': 10.0, 'points': 8, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 4, 'reboundsDefensive': 7, 'reboundsOffensive': 3, 'reboundsTotal': 10, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 5, 'twoPointersMade': 4, 'twoPointersPercentage': 0.8}, 'name': 'Daniel Theis', 'nameI': 'D. Theis', 'firstName': 'Daniel', 'familyName': 'Theis'}, {'status': 'ACTIVE', 'order': 7, 'personId': 1630202, 'jerseyNum': '11', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 3, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 13, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.461538461538462, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 40.0, 'minutes': 'PT25M16.93S', 'minutesCalculated': 'PT25M', 'plus': 64.0, 'plusMinusPoints': 24.0, 'points': 16, 'pointsFastBreak': 6, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 4, 'reboundsOffensive': 0, 'reboundsTotal': 4, 'steals': 0, 'threePointersAttempted': 8, 'threePointersMade': 4, 'threePointersPercentage': 0.5, 'turnovers': 0, 'twoPointersAttempted': 5, 'twoPointersMade': 2, 'twoPointersPercentage': 0.4}, 'name': 'Payton Pritchard', 'nameI': 'P. Pritchard', 'firstName': 'Payton', 'familyName': 'Pritchard'}, {'status': 'ACTIVE', 'order': 8, 'personId': 1628400, 'jerseyNum': '37', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 10, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.6, 'foulsOffensive': 0, 'foulsDrawn': 3, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 4, 'freeThrowsMade': 3, 'freeThrowsPercentage': 0.75, 'minus': 45.0, 'minutes': 'PT20M29.00S', 'minutesCalculated': 'PT20M', 'plus': 53.0, 'plusMinusPoints': 8.0, 'points': 18, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 2, 'reboundsDefensive': 6, 'reboundsOffensive': 0, 'reboundsTotal': 6, 'steals': 0, 'threePointersAttempted': 6, 'threePointersMade': 3, 'threePointersPercentage': 0.5, 'turnovers': 0, 'twoPointersAttempted': 4, 'twoPointersMade': 3, 'twoPointersPercentage': 0.75}, 'name': 'Semi Ojeleye', 'nameI': 'S. Ojeleye', 'firstName': 'Semi', 'familyName': 'Ojeleye'}, {'status': 'ACTIVE', 'order': 9, 'personId': 1630174, 'jerseyNum': '26', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 2, 'blocks': 1, 'blocksReceived': 1, 'fieldGoalsAttempted': 7, 'fieldGoalsMade': 2, 'fieldGoalsPercentage': 0.28571428571428603, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 43.0, 'minutes': 'PT18M27.00S', 'minutesCalculated': 'PT18M', 'plus': 39.0, 'plusMinusPoints': -4.0, 'points': 5, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 5, 'threePointersMade': 1, 'threePointersPercentage': 0.2, 'turnovers': 1, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Aaron Nesmith', 'nameI': 'A. Nesmith', 'firstName': 'Aaron', 'familyName': 'Nesmith'}, {'status': 'ACTIVE', 'order': 10, 'personId': 1629750, 'jerseyNum': '43', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 6, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.666666666666666, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 3, 'freeThrowsMade': 2, 'freeThrowsPercentage': 0.666666666666666, 'minus': 43.0, 'minutes': 'PT20M55.98S', 'minutesCalculated': 'PT21M', 'plus': 53.0, 'plusMinusPoints': 10.0, 'points': 10, 'pointsFastBreak': 0, 'pointsInThePaint': 8, 'pointsSecondChance': 2, 'reboundsDefensive': 1, 'reboundsOffensive': 1, 'reboundsTotal': 2, 'steals': 2, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 4, 'twoPointersMade': 4, 'twoPointersPercentage': 1.0}, 'name': 'Javonte Green', 'nameI': 'J. Green', 'firstName': 'Javonte', 'familyName': 'Green'}, {'status': 'ACTIVE', 'order': 11, 'personId': 1629682, 'jerseyNum': '51', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 5, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 1, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 1.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 23.0, 'minutes': 'PT09M00.00S', 'minutesCalculated': 'PT09M', 'plus': 22.0, 'plusMinusPoints': -1.0, 'points': 3, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 1, 'threePointersMade': 1, 'threePointersPercentage': 1.0, 'turnovers': 2, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Tremont Waters', 'nameI': 'T. Waters', 'firstName': 'Tremont', 'familyName': 'Waters'}, {'status': 'ACTIVE', 'order': 12, 'personId': 1629605, 'jerseyNum': '99', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 3, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 1.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 16.0, 'minutes': 'PT07M55.00S', 'minutesCalculated': 'PT08M', 'plus': 20.0, 'plusMinusPoints': 4.0, 'points': 6, 'pointsFastBreak': 0, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 5, 'reboundsOffensive': 0, 'reboundsTotal': 5, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 3, 'twoPointersMade': 3, 'twoPointersPercentage': 1.0}, 'name': 'Tacko Fall', 'nameI': 'T. Fall', 'firstName': 'Tacko', 'familyName': 'Fall'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_HEALTH_AND_SAFETY_PROTOCOLS', 'order': 13, 'personId': 1629035, 'jerseyNum': '4', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Carsen Edwards', 'nameI': 'C. Edwards', 'firstName': 'Carsen', 'familyName': 'Edwards'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Wrist; Surgery', 'order': 14, 'personId': 1629641, 'jerseyNum': '45', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Romeo Langford', 'nameI': 'R. Langford', 'firstName': 'Romeo', 'familyName': 'Langford'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_HEALTH_AND_SAFETY_PROTOCOLS', 'order': 15, 'personId': 1628369, 'jerseyNum': '0', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jayson Tatum', 'nameI': 'J. Tatum', 'firstName': 'Jayson', 'familyName': 'Tatum'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Injury Recovery', 'order': 16, 'personId': 202689, 'jerseyNum': '8', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Kemba Walker', 'nameI': 'K. Walker', 'firstName': 'Kemba', 'familyName': 'Walker'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_HEALTH_AND_SAFETY_PROTOCOLS', 'order': 17, 'personId': 1629057, 'jerseyNum': '44', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Robert Williams III', 'nameI': 'R. Williams III', 'firstName': 'Robert', 'familyName': 'Williams III'}], 'statistics': {'assists': 25, 'assistsTurnoverRatio': 2.27272727272727, 'benchPoints': 66, 'biggestLead': 29, 'biggestLeadScore': '72-101', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 4, 'blocksReceived': 1, 'fastBreakPointsAttempted': 9, 'fastBreakPointsMade': 5, 'fastBreakPointsPercentage': 0.555555555555556, 'fieldGoalsAttempted': 88, 'fieldGoalsEffectiveAdjusted': 0.607954545454545, 'fieldGoalsMade': 45, 'fieldGoalsPercentage': 0.511363636363636, 'foulsOffensive': 0, 'foulsDrawn': 16, 'foulsPersonal': 18, 'foulsTeam': 18, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 19, 'freeThrowsMade': 17, 'freeThrowsPercentage': 0.894736842105263, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 124, 'pointsAgainst': 97, 'pointsFastBreak': 13, 'pointsFromTurnovers': 16, 'pointsInThePaint': 48, 'pointsInThePaintAttempted': 36, 'pointsInThePaintMade': 24, 'pointsInThePaintPercentage': 0.666666666666666, 'pointsSecondChance': 11, 'reboundsDefensive': 39, 'reboundsOffensive': 6, 'reboundsPersonal': 45, 'reboundsTeam': 6, 'reboundsTeamDefensive': 2, 'reboundsTeamOffensive': 4, 'reboundsTotal': 51, 'secondChancePointsAttempted': 6, 'secondChancePointsMade': 4, 'secondChancePointsPercentage': 0.666666666666666, 'steals': 7, 'threePointersAttempted': 42, 'threePointersMade': 17, 'threePointersPercentage': 0.40476190476190504, 'timeLeading': 'PT47M16.00S', 'timesTied': 0, 'trueShootingAttempts': 96.36, 'trueShootingPercentage': 0.6434205064342051, 'turnovers': 10, 'turnoversTeam': 1, 'turnoversTotal': 11, 'twoPointersAttempted': 46, 'twoPointersMade': 28, 'twoPointersPercentage': 0.608695652173913}}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'score': 97, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28}, {'period': 2, 'periodType': 'REGULAR', 'score': 20}, {'period': 3, 'periodType': 'REGULAR', 'score': 24}, {'period': 4, 'periodType': 'REGULAR', 'score': 25}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203516, 'jerseyNum': '11', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 4, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 41.0, 'minutes': 'PT14M34.00S', 'minutesCalculated': 'PT14M', 'plus': 36.0, 'plusMinusPoints': -5.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'James Ennis III', 'nameI': 'J. Ennis III', 'firstName': 'James', 'familyName': 'Ennis III'}, {'status': 'ACTIVE', 'order': 2, 'personId': 203932, 'jerseyNum': '00', 'position': 'PF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 3, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.416666666666667, 'foulsOffensive': 0, 'foulsDrawn': 5, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 8, 'freeThrowsMade': 4, 'freeThrowsPercentage': 0.5, 'minus': 74.0, 'minutes': 'PT28M43.00S', 'minutesCalculated': 'PT29M', 'plus': 62.0, 'plusMinusPoints': -12.0, 'points': 17, 'pointsFastBreak': 2, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 2, 'reboundsTotal': 2, 'steals': 0, 'threePointersAttempted': 5, 'threePointersMade': 3, 'threePointersPercentage': 0.6, 'turnovers': 2, 'twoPointersAttempted': 7, 'twoPointersMade': 2, 'twoPointersPercentage': 0.28571428571428603}, 'name': 'Aaron Gordon', 'nameI': 'A. Gordon', 'firstName': 'Aaron', 'familyName': 'Gordon'}, {'status': 'ACTIVE', 'order': 3, 'personId': 202696, 'jerseyNum': '9', 'position': 'C', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 4, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 13, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.461538461538462, 'foulsOffensive': 1, 'foulsDrawn': 1, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 2, 'freeThrowsPercentage': 1.0, 'minus': 70.0, 'minutes': 'PT25M58.00S', 'minutesCalculated': 'PT26M', 'plus': 51.0, 'plusMinusPoints': -19.0, 'points': 15, 'pointsFastBreak': 0, 'pointsInThePaint': 8, 'pointsSecondChance': 2, 'reboundsDefensive': 4, 'reboundsOffensive': 2, 'reboundsTotal': 6, 'steals': 2, 'threePointersAttempted': 4, 'threePointersMade': 1, 'threePointersPercentage': 0.25, 'turnovers': 1, 'twoPointersAttempted': 9, 'twoPointersMade': 5, 'twoPointersPercentage': 0.555555555555556}, 'name': 'Nikola Vucevic', 'nameI': 'N. Vucevic', 'firstName': 'Nikola', 'familyName': 'Vucevic'}, {'status': 'ACTIVE', 'order': 4, 'personId': 1628407, 'jerseyNum': '8', 'position': 'SG', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 14, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.357142857142857, 'foulsOffensive': 0, 'foulsDrawn': 5, 'foulsPersonal': 1, 'foulsTechnical': 1, 'freeThrowsAttempted': 7, 'freeThrowsMade': 5, 'freeThrowsPercentage': 0.714285714285714, 'minus': 67.0, 'minutes': 'PT25M36.00S', 'minutesCalculated': 'PT26M', 'plus': 56.0, 'plusMinusPoints': -11.0, 'points': 15, 'pointsFastBreak': 6, 'pointsInThePaint': 10, 'pointsSecondChance': 5, 'reboundsDefensive': 5, 'reboundsOffensive': 3, 'reboundsTotal': 8, 'steals': 0, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 13, 'twoPointersMade': 5, 'twoPointersPercentage': 0.384615384615385}, 'name': 'Dwayne Bacon', 'nameI': 'D. Bacon', 'firstName': 'Dwayne', 'familyName': 'Bacon'}, {'status': 'ACTIVE', 'order': 5, 'personId': 1630175, 'jerseyNum': '50', 'position': 'PG', 'starter': '1', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 3, 'blocks': 0, 'blocksReceived': 2, 'fieldGoalsAttempted': 18, 'fieldGoalsMade': 7, 'fieldGoalsPercentage': 0.388888888888889, 'foulsOffensive': 1, 'foulsDrawn': 3, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 1, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 74.0, 'minutes': 'PT27M24.00S', 'minutesCalculated': 'PT27M', 'plus': 52.0, 'plusMinusPoints': -22.0, 'points': 15, 'pointsFastBreak': 0, 'pointsInThePaint': 10, 'pointsSecondChance': 0, 'reboundsDefensive': 5, 'reboundsOffensive': 1, 'reboundsTotal': 6, 'steals': 0, 'threePointersAttempted': 6, 'threePointersMade': 1, 'threePointersPercentage': 0.166666666666667, 'turnovers': 5, 'twoPointersAttempted': 12, 'twoPointersMade': 6, 'twoPointersPercentage': 0.5}, 'name': 'Cole Anthony', 'nameI': 'C. Anthony', 'firstName': 'Cole', 'familyName': 'Anthony'}, {'status': 'ACTIVE', 'order': 6, 'personId': 203920, 'jerseyNum': '24', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 2, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 8, 'fieldGoalsMade': 5, 'fieldGoalsPercentage': 0.625, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 2, 'freeThrowsPercentage': 1.0, 'minus': 84.0, 'minutes': 'PT32M51.00S', 'minutesCalculated': 'PT33M', 'plus': 63.0, 'plusMinusPoints': -21.0, 'points': 12, 'pointsFastBreak': 0, 'pointsInThePaint': 10, 'pointsSecondChance': 10, 'reboundsDefensive': 5, 'reboundsOffensive': 7, 'reboundsTotal': 12, 'steals': 1, 'threePointersAttempted': 1, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 7, 'twoPointersMade': 5, 'twoPointersPercentage': 0.714285714285714}, 'name': 'Khem Birch', 'nameI': 'K. Birch', 'firstName': 'Khem', 'familyName': 'Birch'}, {'status': 'ACTIVE', 'order': 7, 'personId': 203082, 'jerseyNum': '31', 'starter': '0', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 1, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 11, 'fieldGoalsMade': 3, 'fieldGoalsPercentage': 0.272727272727273, 'foulsOffensive': 0, 'foulsDrawn': 2, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 61.0, 'minutes': 'PT25M04.00S', 'minutesCalculated': 'PT25M', 'plus': 50.0, 'plusMinusPoints': -11.0, 'points': 6, 'pointsFastBreak': 0, 'pointsInThePaint': 4, 'pointsSecondChance': 0, 'reboundsDefensive': 5, 'reboundsOffensive': 0, 'reboundsTotal': 5, 'steals': 0, 'threePointersAttempted': 3, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 8, 'twoPointersMade': 3, 'twoPointersPercentage': 0.375}, 'name': 'Terrence Ross', 'nameI': 'T. Ross', 'firstName': 'Terrence', 'familyName': 'Ross'}, {'status': 'ACTIVE', 'order': 8, 'personId': 1629109, 'jerseyNum': '12', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 1, 'blocksReceived': 0, 'fieldGoalsAttempted': 4, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 1, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 2, 'freeThrowsMade': 1, 'freeThrowsPercentage': 0.5, 'minus': 66.0, 'minutes': 'PT26M49.00S', 'minutesCalculated': 'PT27M', 'plus': 53.0, 'plusMinusPoints': -13.0, 'points': 3, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 3, 'reboundsDefensive': 3, 'reboundsOffensive': 0, 'reboundsTotal': 3, 'steals': 1, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 1, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'Gary Clark', 'nameI': 'G. Clark', 'firstName': 'Gary', 'familyName': 'Clark'}, {'status': 'ACTIVE', 'order': 9, 'personId': 1629648, 'jerseyNum': '23', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 8, 'fieldGoalsMade': 4, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 66.0, 'minutes': 'PT26M49.00S', 'minutesCalculated': 'PT27M', 'plus': 53.0, 'plusMinusPoints': -13.0, 'points': 9, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 3, 'reboundsOffensive': 0, 'reboundsTotal': 3, 'steals': 1, 'threePointersAttempted': 3, 'threePointersMade': 1, 'threePointersPercentage': 0.333333333333333, 'turnovers': 0, 'twoPointersAttempted': 5, 'twoPointersMade': 3, 'twoPointersPercentage': 0.6}, 'name': 'Jordan Bone', 'nameI': 'J. Bone', 'firstName': 'Jordan', 'familyName': 'Bone'}, {'status': 'ACTIVE', 'order': 10, 'personId': 1630211, 'jerseyNum': '4', 'starter': '0', 'oncourt': '1', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 1, 'fieldGoalsAttempted': 2, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 2, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 17.0, 'minutes': 'PT06M12.00S', 'minutesCalculated': 'PT06M', 'plus': 9.0, 'plusMinusPoints': -8.0, 'points': 3, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 1, 'threePointersMade': 1, 'threePointersPercentage': 1.0, 'turnovers': 0, 'twoPointersAttempted': 1, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Karim Mane', 'nameI': 'K. Mane', 'firstName': 'Karim', 'familyName': 'Mane'}, {'status': 'ACTIVE', 'notPlayingReason': 'NWT_HEALTH_AND_SAFETY_PROTOCOLS', 'order': 11, 'personId': 1628964, 'jerseyNum': '5', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Mo Bamba', 'nameI': 'M. Bamba', 'firstName': 'Mo', 'familyName': 'Bamba'}, {'status': 'ACTIVE', 'notPlayingReason': 'DND_INJURY', 'notPlayingDescription': 'Back; Low spasms ', 'order': 12, 'personId': 203095, 'jerseyNum': '10', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Evan Fournier', 'nameI': 'E. Fournier', 'firstName': 'Evan', 'familyName': 'Fournier'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Right Knee; Injury recovery', 'order': 13, 'personId': 202329, 'jerseyNum': '2', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Al-Farouq Aminu', 'nameI': 'A. Aminu', 'firstName': 'Al-Farouq', 'familyName': 'Aminu'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Foot; Sprain', 'order': 14, 'personId': 203487, 'jerseyNum': '7', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Michael Carter-Williams', 'nameI': 'M. Carter-Williams', 'firstName': 'Michael', 'familyName': 'Carter-Williams'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Torn ACL', 'order': 15, 'personId': 1628365, 'jerseyNum': '20', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Markelle Fultz', 'nameI': 'M. Fultz', 'firstName': 'Markelle', 'familyName': 'Fultz'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Injury recovery', 'order': 16, 'personId': 1628371, 'jerseyNum': '1', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Jonathan Isaac', 'nameI': 'J. Isaac', 'firstName': 'Jonathan', 'familyName': 'Isaac'}, {'status': 'INACTIVE', 'notPlayingReason': 'INACTIVE_INJURY', 'notPlayingDescription': 'Left Knee; Bone bruise', 'order': 17, 'personId': 1629643, 'jerseyNum': '3', 'starter': '0', 'oncourt': '0', 'played': '0', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 0, 'fieldGoalsMade': 0, 'fieldGoalsPercentage': 0.0, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 0, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 0.0, 'minutes': 'PT00M00.00S', 'minutesCalculated': 'PT00M', 'plus': 0.0, 'plusMinusPoints': 0.0, 'points': 0, 'pointsFastBreak': 0, 'pointsInThePaint': 0, 'pointsSecondChance': 0, 'reboundsDefensive': 0, 'reboundsOffensive': 0, 'reboundsTotal': 0, 'steals': 0, 'threePointersAttempted': 0, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 0, 'twoPointersMade': 0, 'twoPointersPercentage': 0.0}, 'name': 'Chuma Okeke', 'nameI': 'C. Okeke', 'firstName': 'Chuma', 'familyName': 'Okeke'}], 'statistics': {'assists': 14, 'assistsTurnoverRatio': 1.07692307692308, 'benchPoints': 33, 'biggestLead': 1, 'biggestLeadScore': '4-3', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 1, 'blocksReceived': 4, 'fastBreakPointsAttempted': 7, 'fastBreakPointsMade': 2, 'fastBreakPointsPercentage': 0.28571428571428603, 'fieldGoalsAttempted': 94, 'fieldGoalsEffectiveAdjusted': 0.441489361702128, 'fieldGoalsMade': 38, 'fieldGoalsPercentage': 0.404255319148936, 'foulsOffensive': 2, 'foulsDrawn': 18, 'foulsPersonal': 16, 'foulsTeam': 14, 'foulsTechnical': 1, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 22, 'freeThrowsMade': 14, 'freeThrowsPercentage': 0.636363636363636, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 97, 'pointsAgainst': 124, 'pointsFastBreak': 8, 'pointsFromTurnovers': 10, 'pointsInThePaint': 52, 'pointsInThePaintAttempted': 47, 'pointsInThePaintMade': 26, 'pointsInThePaintPercentage': 0.553191489361702, 'pointsSecondChance': 20, 'reboundsDefensive': 31, 'reboundsOffensive': 15, 'reboundsPersonal': 46, 'reboundsTeam': 12, 'reboundsTeamDefensive': 4, 'reboundsTeamOffensive': 8, 'reboundsTotal': 58, 'secondChancePointsAttempted': 16, 'secondChancePointsMade': 9, 'secondChancePointsPercentage': 0.5625, 'steals': 5, 'threePointersAttempted': 28, 'threePointersMade': 7, 'threePointersPercentage': 0.25, 'timeLeading': 'PT00M30.00S', 'timesTied': 0, 'trueShootingAttempts': 103.68, 'trueShootingPercentage': 0.46778549382716, 'turnovers': 11, 'turnoversTeam': 2, 'turnoversTotal': 13, 'twoPointersAttempted': 66, 'twoPointersMade': 31, 'twoPointersPercentage': 0.46969696969696995}}}}\n" - ] - } - ], - "source": [ - "# Query nba.live.endpoints for the game Odds of GameID 002200011 = IND vs NYK)\n", - "from nba_api.live.nba.endpoints import boxscore\n", - "data = boxscore.BoxScore('0022000180').get_dict()\n", - "print(data)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{\"meta\": {\"version\": 1, \"request\": \"https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json\", \"time\": \"2021-01-17 04:23:20.2320\", \"code\": 200}, \"scoreboard\": {\"gameDate\": \"2021-01-17\", \"leagueId\": \"00\", \"leagueName\": \"National Basketball Association\", \"games\": [{\"gameId\": \"0022000198\", \"gameCode\": \"20210117/CHIDAL\", \"gameStatus\": 2, \"gameStatusText\": \"Half\", \"period\": 2, \"gameClock\": \"PT00M00.00S\", \"gameTimeUTC\": \"2021-01-17T20:00:00Z\", \"gameEt\": \"2021-01-17T15:00:00-05:00\", \"regulationPeriods\": 4, \"seriesGameNumber\": null, \"seriesText\": null, \"homeTeam\": {\"teamId\": 1610612742, \"teamName\": \"Mavericks\", \"teamCity\": \"Dallas\", \"teamTricode\": \"DAL\", \"wins\": 6, \"losses\": 5, \"score\": 52, \"inBonus\": \"1\", \"timeoutsRemaining\": 4, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 23}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 29}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612741, \"teamName\": \"Bulls\", \"teamCity\": \"Chicago\", \"teamTricode\": \"CHI\", \"wins\": 4, \"losses\": 8, \"score\": 67, \"inBonus\": \"1\", \"timeoutsRemaining\": 5, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 27}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 40}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 1629029, \"name\": \"Luka Doncic\", \"jerseyNum\": \"77\", \"position\": \"GF\", \"teamTricode\": \"DAL\", \"playerSlug\": \"luka-doncic\", \"points\": 30, \"rebounds\": 7, \"assists\": 5}, \"awayLeaders\": {\"personId\": 202066, \"name\": \"Garrett Temple\", \"jerseyNum\": \"17\", \"position\": \"G\", \"teamTricode\": \"CHI\", \"playerSlug\": \"garrett-temple\", \"points\": 17, \"rebounds\": 1, \"assists\": 1}}, \"pbOdds\": {\"team\": \"CHI\", \"odds\": 78.06401, \"suspended\": 0}}, {\"gameId\": \"0022000196\", \"gameCode\": \"20210117/NYKBOS\", \"gameStatus\": 3, \"gameStatusText\": \"Final\", \"period\": 4, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T18:00:00Z\", \"gameEt\": \"2021-01-17T13:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612738, \"teamName\": \"Celtics\", \"teamCity\": \"Boston\", \"teamTricode\": \"BOS\", \"wins\": 8, \"losses\": 4, \"score\": 75, \"inBonus\": null, \"timeoutsRemaining\": 1, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 17}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 18}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 15}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 25}]}, \"awayTeam\": {\"teamId\": 1610612752, \"teamName\": \"Knicks\", \"teamCity\": \"New York\", \"teamTricode\": \"NYK\", \"wins\": 6, \"losses\": 8, \"score\": 105, \"inBonus\": null, \"timeoutsRemaining\": 1, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 28}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 20}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 27}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 30}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 1627759, \"name\": \"Jaylen Brown\", \"jerseyNum\": \"7\", \"position\": \"G-F\", \"teamTricode\": \"BOS\", \"playerSlug\": null, \"points\": 25, \"rebounds\": 6, \"assists\": 3}, \"awayLeaders\": {\"personId\": 203944, \"name\": \"Julius Randle\", \"jerseyNum\": \"30\", \"position\": \"F-C\", \"teamTricode\": \"NYK\", \"playerSlug\": null, \"points\": 20, \"rebounds\": 12, \"assists\": 4}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000197\", \"gameCode\": \"20210117/CLEWAS\", \"gameStatus\": 1, \"gameStatusText\": \"PPD\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-17T19:00:00Z\", \"gameEt\": \"2021-01-17T14:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612764, \"teamName\": \"Wizards\", \"teamCity\": \"Washington\", \"teamTricode\": \"WAS\", \"wins\": 3, \"losses\": 8, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612739, \"teamName\": \"Cavaliers\", \"teamCity\": \"Cleveland\", \"teamTricode\": \"CLE\", \"wins\": 6, \"losses\": 7, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"WAS\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"CLE\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000199\", \"gameCode\": \"20210117/PHIOKC\", \"gameStatus\": 1, \"gameStatusText\": \"7:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T00:00:00Z\", \"gameEt\": \"2021-01-17T19:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612760, \"teamName\": \"Thunder\", \"teamCity\": \"Oklahoma City\", \"teamTricode\": \"OKC\", \"wins\": 6, \"losses\": 6, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612755, \"teamName\": \"76ers\", \"teamCity\": \"Philadelphia\", \"teamTricode\": \"PHI\", \"wins\": 9, \"losses\": 5, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"OKC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"PHI\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000200\", \"gameCode\": \"20210117/UTADEN\", \"gameStatus\": 1, \"gameStatusText\": \"8:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T01:00:00Z\", \"gameEt\": \"2021-01-17T20:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612743, \"teamName\": \"Nuggets\", \"teamCity\": \"Denver\", \"teamTricode\": \"DEN\", \"wins\": 6, \"losses\": 6, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612762, \"teamName\": \"Jazz\", \"teamCity\": \"Utah\", \"teamTricode\": \"UTA\", \"wins\": 8, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"DEN\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"UTA\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000201\", \"gameCode\": \"20210117/NOPSAC\", \"gameStatus\": 1, \"gameStatusText\": \"9:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T02:00:00Z\", \"gameEt\": \"2021-01-17T21:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612758, \"teamName\": \"Kings\", \"teamCity\": \"Sacramento\", \"teamTricode\": \"SAC\", \"wins\": 5, \"losses\": 8, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612740, \"teamName\": \"Pelicans\", \"teamCity\": \"New Orleans\", \"teamTricode\": \"NOP\", \"wins\": 4, \"losses\": 7, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"SAC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"NOP\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}, {\"gameId\": \"0022000202\", \"gameCode\": \"20210117/INDLAC\", \"gameStatus\": 1, \"gameStatusText\": \"10:00 pm ET\", \"period\": 0, \"gameClock\": \"\", \"gameTimeUTC\": \"2021-01-18T03:00:00Z\", \"gameEt\": \"2021-01-17T22:00:00Z\", \"regulationPeriods\": 4, \"seriesGameNumber\": \"\", \"seriesText\": \"\", \"homeTeam\": {\"teamId\": 1610612746, \"teamName\": \"Clippers\", \"teamCity\": \"LA\", \"teamTricode\": \"LAC\", \"wins\": 9, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"awayTeam\": {\"teamId\": 1610612754, \"teamName\": \"Pacers\", \"teamCity\": \"Indiana\", \"teamTricode\": \"IND\", \"wins\": 8, \"losses\": 4, \"score\": 0, \"inBonus\": null, \"timeoutsRemaining\": 0, \"periods\": [{\"period\": 1, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 2, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 3, \"periodType\": \"REGULAR\", \"score\": 0}, {\"period\": 4, \"periodType\": \"REGULAR\", \"score\": 0}]}, \"gameLeaders\": {\"homeLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"LAC\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}, \"awayLeaders\": {\"personId\": 0, \"name\": \"\", \"jerseyNum\": \"\", \"position\": \"\", \"teamTricode\": \"IND\", \"playerSlug\": null, \"points\": 0, \"rebounds\": 0, \"assists\": 0}}, \"pbOdds\": {\"team\": null, \"odds\": 0.0, \"suspended\": 1}}]}}\n" - ] - } - ], - "source": [ - "# Query nba.live.endpoints for the box score of GameID 002200011 = IND vs NYK\n", - "from nba_api.live.nba.endpoints import scoreboard\n", - "data = scoreboard.ScoreBoard().get_json()\n", - "print(data)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'meta': {'version': 1, 'request': 'https://nba-prod-us-east-1-mediaops-stats.s3.amazonaws.com/NBA/liveData/scoreboard/todaysScoreboard_00.json', 'time': '2021-01-17 08:37:04.374', 'code': 200}, 'scoreboard': {'gameDate': '2021-01-16', 'leagueId': '00', 'leagueName': 'National Basketball Association', 'games': [{'gameId': '0022000189', 'gameCode': '20210116/HOUSAS', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-16T22:00:00Z', 'gameEt': '2021-01-16T17:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612759, 'teamName': 'Spurs', 'teamCity': 'San Antonio', 'teamTricode': 'SAS', 'wins': 7, 'losses': 6, 'score': 103, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 21}, {'period': 2, 'periodType': 'REGULAR', 'score': 29}, {'period': 3, 'periodType': 'REGULAR', 'score': 25}, {'period': 4, 'periodType': 'REGULAR', 'score': 28}]}, 'awayTeam': {'teamId': 1610612745, 'teamName': 'Rockets', 'teamCity': 'Houston', 'teamTricode': 'HOU', 'wins': 4, 'losses': 7, 'score': 91, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 30}, {'period': 2, 'periodType': 'REGULAR', 'score': 23}, {'period': 3, 'periodType': 'REGULAR', 'score': 19}, {'period': 4, 'periodType': 'REGULAR', 'score': 19}]}, 'gameLeaders': {'homeLeaders': {'personId': 201942, 'name': 'DeMar DeRozan', 'jerseyNum': '10', 'position': 'G-F', 'teamTricode': 'SAS', 'playerSlug': None, 'points': 24, 'rebounds': 7, 'assists': 4}, 'awayLeaders': {'personId': 1626174, 'name': 'Christian Wood', 'jerseyNum': '35', 'position': 'F', 'teamTricode': 'HOU', 'playerSlug': None, 'points': 24, 'rebounds': 18, 'assists': 3}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000190', 'gameCode': '20210116/ORLBKN', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-16T23:00:00Z', 'gameEt': '2021-01-16T18:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612751, 'teamName': 'Nets', 'teamCity': 'Brooklyn', 'teamTricode': 'BKN', 'wins': 8, 'losses': 6, 'score': 122, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 29}, {'period': 2, 'periodType': 'REGULAR', 'score': 23}, {'period': 3, 'periodType': 'REGULAR', 'score': 32}, {'period': 4, 'periodType': 'REGULAR', 'score': 38}]}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'wins': 6, 'losses': 7, 'score': 115, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 26}, {'period': 2, 'periodType': 'REGULAR', 'score': 24}, {'period': 3, 'periodType': 'REGULAR', 'score': 33}, {'period': 4, 'periodType': 'REGULAR', 'score': 32}]}, 'gameLeaders': {'homeLeaders': {'personId': 201935, 'name': 'James Harden', 'jerseyNum': '13', 'position': 'G', 'teamTricode': 'BKN', 'playerSlug': None, 'points': 32, 'rebounds': 12, 'assists': 14}, 'awayLeaders': {'personId': 202696, 'name': 'Nikola Vucevic', 'jerseyNum': '9', 'position': 'C', 'teamTricode': 'ORL', 'playerSlug': None, 'points': 34, 'rebounds': 10, 'assists': 7}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000191', 'gameCode': '20210116/CHATOR', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-17T00:30:00Z', 'gameEt': '2021-01-16T19:30:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612761, 'teamName': 'Raptors', 'teamCity': 'Toronto', 'teamTricode': 'TOR', 'wins': 4, 'losses': 8, 'score': 116, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 31}, {'period': 2, 'periodType': 'REGULAR', 'score': 35}, {'period': 3, 'periodType': 'REGULAR', 'score': 22}, {'period': 4, 'periodType': 'REGULAR', 'score': 28}]}, 'awayTeam': {'teamId': 1610612766, 'teamName': 'Hornets', 'teamCity': 'Charlotte', 'teamTricode': 'CHA', 'wins': 6, 'losses': 8, 'score': 113, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 27}, {'period': 2, 'periodType': 'REGULAR', 'score': 37}, {'period': 3, 'periodType': 'REGULAR', 'score': 23}, {'period': 4, 'periodType': 'REGULAR', 'score': 26}]}, 'gameLeaders': {'homeLeaders': {'personId': 1627832, 'name': 'Fred VanVleet', 'jerseyNum': '23', 'position': 'G', 'teamTricode': 'TOR', 'playerSlug': None, 'points': 15, 'rebounds': 7, 'assists': 10}, 'awayLeaders': {'personId': 1626179, 'name': 'Terry Rozier', 'jerseyNum': '3', 'position': 'G', 'teamTricode': 'CHA', 'playerSlug': None, 'points': 24, 'rebounds': 9, 'assists': 2}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000192', 'gameCode': '20210116/DETMIA', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-17T01:00:00Z', 'gameEt': '2021-01-16T20:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612748, 'teamName': 'Heat', 'teamCity': 'Miami', 'teamTricode': 'MIA', 'wins': 4, 'losses': 7, 'score': 100, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 23}, {'period': 2, 'periodType': 'REGULAR', 'score': 33}, {'period': 3, 'periodType': 'REGULAR', 'score': 19}, {'period': 4, 'periodType': 'REGULAR', 'score': 25}]}, 'awayTeam': {'teamId': 1610612765, 'teamName': 'Pistons', 'teamCity': 'Detroit', 'teamTricode': 'DET', 'wins': 3, 'losses': 9, 'score': 120, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 29}, {'period': 2, 'periodType': 'REGULAR', 'score': 23}, {'period': 3, 'periodType': 'REGULAR', 'score': 38}, {'period': 4, 'periodType': 'REGULAR', 'score': 30}]}, 'gameLeaders': {'homeLeaders': {'personId': 1628389, 'name': 'Bam Adebayo', 'jerseyNum': '13', 'position': 'C-F', 'teamTricode': 'MIA', 'playerSlug': None, 'points': 28, 'rebounds': 7, 'assists': 6}, 'awayLeaders': {'personId': 203924, 'name': 'Jerami Grant', 'jerseyNum': '9', 'position': 'F', 'teamTricode': 'DET', 'playerSlug': None, 'points': 24, 'rebounds': 9, 'assists': 6}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000193', 'gameCode': '20210116/PHIMEM', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-17T01:00:00Z', 'gameEt': '2021-01-16T20:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612763, 'teamName': 'Grizzlies', 'teamCity': 'Memphis', 'teamTricode': 'MEM', 'wins': 6, 'losses': 6, 'score': 106, 'inBonus': None, 'timeoutsRemaining': 1, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 25}, {'period': 2, 'periodType': 'REGULAR', 'score': 35}, {'period': 3, 'periodType': 'REGULAR', 'score': 28}, {'period': 4, 'periodType': 'REGULAR', 'score': 18}]}, 'awayTeam': {'teamId': 1610612755, 'teamName': '76ers', 'teamCity': 'Philadelphia', 'teamTricode': 'PHI', 'wins': 9, 'losses': 5, 'score': 104, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 26}, {'period': 2, 'periodType': 'REGULAR', 'score': 28}, {'period': 3, 'periodType': 'REGULAR', 'score': 22}, {'period': 4, 'periodType': 'REGULAR', 'score': 28}]}, 'gameLeaders': {'homeLeaders': {'personId': 1629634, 'name': 'Brandon Clarke', 'jerseyNum': '15', 'position': 'F-G', 'teamTricode': 'MEM', 'playerSlug': None, 'points': 11, 'rebounds': 11, 'assists': 2}, 'awayLeaders': {'personId': 1627732, 'name': 'Ben Simmons', 'jerseyNum': '25', 'position': 'G-F', 'teamTricode': 'PHI', 'playerSlug': None, 'points': 11, 'rebounds': 16, 'assists': 9}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000194', 'gameCode': '20210116/INDPHX', 'gameStatus': 1, 'gameStatusText': 'PPD', 'period': 0, 'gameClock': '', 'gameTimeUTC': '2021-01-17T02:00:00Z', 'gameEt': '2021-01-16T21:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612756, 'teamName': 'Suns', 'teamCity': 'Phoenix', 'teamTricode': 'PHX', 'wins': 7, 'losses': 4, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'awayTeam': {'teamId': 1610612754, 'teamName': 'Pacers', 'teamCity': 'Indiana', 'teamTricode': 'IND', 'wins': 8, 'losses': 4, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 0}, {'period': 2, 'periodType': 'REGULAR', 'score': 0}, {'period': 3, 'periodType': 'REGULAR', 'score': 0}, {'period': 4, 'periodType': 'REGULAR', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'PHX', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': 'IND', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}, {'gameId': '0022000195', 'gameCode': '20210116/ATLPOR', 'gameStatus': 3, 'gameStatusText': 'Final', 'period': 4, 'gameClock': '', 'gameTimeUTC': '2021-01-17T03:00:00Z', 'gameEt': '2021-01-16T22:00:00Z', 'regulationPeriods': 4, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 1610612757, 'teamName': 'Trail Blazers', 'teamCity': 'Portland', 'teamTricode': 'POR', 'wins': 8, 'losses': 5, 'score': 112, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 34}, {'period': 2, 'periodType': 'REGULAR', 'score': 25}, {'period': 3, 'periodType': 'REGULAR', 'score': 27}, {'period': 4, 'periodType': 'REGULAR', 'score': 26}]}, 'awayTeam': {'teamId': 1610612737, 'teamName': 'Hawks', 'teamCity': 'Atlanta', 'teamTricode': 'ATL', 'wins': 5, 'losses': 7, 'score': 106, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 38}, {'period': 2, 'periodType': 'REGULAR', 'score': 28}, {'period': 3, 'periodType': 'REGULAR', 'score': 20}, {'period': 4, 'periodType': 'REGULAR', 'score': 20}]}, 'gameLeaders': {'homeLeaders': {'personId': 203081, 'name': 'Damian Lillard', 'jerseyNum': '0', 'position': 'G', 'teamTricode': 'POR', 'playerSlug': None, 'points': 36, 'rebounds': 7, 'assists': 7}, 'awayLeaders': {'personId': 1629027, 'name': 'Trae Young', 'jerseyNum': '11', 'position': 'G', 'teamTricode': 'ATL', 'playerSlug': None, 'points': 26, 'rebounds': 7, 'assists': 11}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 1}}]}}\n" - ] - } - ], - "source": [ - "# Query nba.live.endpoints for the score board of GameID 002200011 = IND vs NYK\n", - "from nba_api.live.nba.endpoints import todaysscoreboard\n", - "scoreboard = todaysscoreboard.TodaysScoreBoard()\n", - "print(scoreboard.get_dict())" - ] - }, { "cell_type": "code", "execution_count": null, diff --git a/docs/nba_api/live/endpoints/boxscore.md b/docs/nba_api/live/endpoints/boxscore.md index 7d415fa9..be415569 100644 --- a/docs/nba_api/live/endpoints/boxscore.md +++ b/docs/nba_api/live/endpoints/boxscore.md @@ -12,25 +12,45 @@ API Parameter Name | Python Parameter Variable | Pattern | Required | Nullable ------------ | ------------ | :-----------: | :---: | :---: [_**GameID**_](https://github.com/swar/nba_api/blob/master/docs/nba_api/stats/library/parameters.md#GameID) | game_id | `^\d{10}$` | `Y` | | - ## DataSets -#### Officials `officials` +#### Arena `Arena` ```text -["personId", "name", "nameI", "firstName", "familyName", "jerseyNum", "assignment"] +["arenaId", "arenaName", "arenaCity", "arenaState", "arenaCountry", "arenaTimezone"} ``` - -#### HomeTeam `home_team` +#### AwayTeam `away_team` ```text ["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "players"["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"] ``` -#### AwayTeam `away_team` +#### AwayTeamStats `away_team_stats` ```text -["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "players"["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"] +["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"] +``` +#### AwayTeamPlayerStats `away_team_player_stats` +``` +["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"] ``` #### Game `game` ```text ["gameId", "gameTimeLocal", "gameTimeUTC", "gameTimeHome", "gameTimeAway", "gameEt", "duration", "gameCode", "gameStatusText", "gameStatus", "regulationPeriods", "period", "gameClock", "attendance", "sellout", "arena""arenaId", "arenaName", "arenaCity", "arenaState", "arenaCountry", "arenaTimezone", "officials"["personId", "name", "nameI", "firstName", "familyName", "jerseyNum", "assignment"], "homeTeam" ["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "players"["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"], "awayTeam"["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "players"["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"]] ``` +#### HomeTeam `home_team` +```text +["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "players"["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"] +``` +#### HomeTeamStats `home_team_stats` +```text +["teamId", "teamName", "teamCity", "teamTricode", "score", "inBonus", "timeoutsRemaining", "periods"["period", "periodType", "score"], "statistics""assists", "assistsTurnoverRatio", "benchPoints", "biggestLead", "biggestLeadScore", "biggestScoringRun", "biggestScoringRunScore", "blocks", "blocksReceived", "fastBreakPointsAttempted", "fastBreakPointsMade", "fastBreakPointsPercentage", "fieldGoalsAttempted", "fieldGoalsEffectiveAdjusted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTeam", "foulsTechnical", "foulsTeamTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "leadChanges", "minutes", "minutesCalculated", "points", "pointsAgainst", "pointsFastBreak", "pointsFromTurnovers", "pointsInThePaint", "pointsInThePaintAttempted", "pointsInThePaintMade", "pointsInThePaintPercentage", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsPersonal", "reboundsTeam", "reboundsTeamDefensive", "reboundsTeamOffensive", "reboundsTotal", "secondChancePointsAttempted", "secondChancePointsMade", "secondChancePointsPercentage", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "timeLeading", "timesTied", "trueShootingAttempts", "trueShootingPercentage", "turnovers", "turnoversTeam", "turnoversTotal", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage"] +``` +#### HomeTeamPlayerStats `home_team_player_stats` +``` +["status", "notPlayingReason", "notPlayingDescription", "order", "personId", "jerseyNum", "starter", "oncourt", "played", "statistics""assists", "blocks", "blocksReceived", "fieldGoalsAttempted", "fieldGoalsMade", "fieldGoalsPercentage", "foulsOffensive", "foulsDrawn", "foulsPersonal", "foulsTechnical", "freeThrowsAttempted", "freeThrowsMade", "freeThrowsPercentage", "minus", "minutes", "minutesCalculated", "plus", "plusMinusPoints", "points", "pointsFastBreak", "pointsInThePaint", "pointsSecondChance", "reboundsDefensive", "reboundsOffensive", "reboundsTotal", "steals", "threePointersAttempted", "threePointersMade", "threePointersPercentage", "turnovers", "twoPointersAttempted", "twoPointersMade", "twoPointersPercentage", "name", "nameI", "firstName", "familyName"] +``` +#### Officials `officials` +```text +["personId", "name", "nameI", "firstName", "familyName", "jerseyNum", "assignment"] +``` + + ## JSON ```json diff --git a/nba_api/live/nba/endpoints/boxscore.py b/nba_api/live/nba/endpoints/boxscore.py index 8afddc57..387456c5 100644 --- a/nba_api/live/nba/endpoints/boxscore.py +++ b/nba_api/live/nba/endpoints/boxscore.py @@ -1,21 +1,23 @@ +from tests.live.endpoints.test_boxscore import test_home_team_dict from nba_api.live.nba.endpoints._base import Endpoint from nba_api.live.nba.library.http import NBALiveHTTP - class BoxScore(Endpoint): endpoint_url = 'boxscore/boxscore_{game_id}.json' expected_data = {'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000180/boxscore?Format=json', 'time': '2021-01-15 23:51:25.282704'}, 'game': {'gameId': '0022000180', 'gameTimeLocal': '2021-01-15T19:30:00-05:00', 'gameTimeUTC': '2021-01-16T00:30:00Z', 'gameTimeHome': '2021-01-15T19:30:00-05:00', 'gameTimeAway': '2021-01-15T19:30:00-05:00', 'gameEt': '2021-01-15T19:30:00-05:00', 'duration': 125, 'gameCode': '20210115/ORLBOS', 'gameStatusText': 'Final', 'gameStatus': 3, 'regulationPeriods': 4, 'period': 4, 'gameClock': 'PT00M00.00S', 'attendance': 0, 'sellout': '0', 'arena': {'arenaId': 17, 'arenaName': 'TD Garden', 'arenaCity': 'Boston', 'arenaState': 'MA', 'arenaCountry': 'US', 'arenaTimezone': 'America/New_York'}, 'officials': [{'personId': 201638, 'name': 'Brent Barnaky', 'nameI': 'B. Barnaky', 'firstName': 'Brent', 'familyName': 'Barnaky', 'jerseyNum': '36', 'assignment': 'OFFICIAL1'}], 'homeTeam': {'teamId': 1610612738, 'teamName': 'Celtics', 'teamCity': 'Boston', 'teamTricode': 'BOS', 'score': 124, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 34}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 1627759, 'jerseyNum': '7', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 8, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 4, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 7, 'freeThrowsMade': 7, 'freeThrowsPercentage': 1.0, 'minus': 50.0, 'minutes': 'PT25M01.00S', 'minutesCalculated': 'PT25M', 'plus': 65.0, 'plusMinusPoints': 15.0, 'points': 21, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 0, 'reboundsDefensive': 2, 'reboundsOffensive': 0, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 5, 'threePointersMade': 2, 'threePointersPercentage': 0.4, 'turnovers': 2, 'twoPointersAttempted': 7, 'twoPointersMade': 4, 'twoPointersPercentage': 0.5714285714285711}, 'name': 'Jaylen Brown', 'nameI': 'J. Brown', 'firstName': 'Jaylen', 'familyName': 'Brown'}], 'statistics': {'assists': 25, 'assistsTurnoverRatio': 2.27272727272727, 'benchPoints': 66, 'biggestLead': 29, 'biggestLeadScore': '72-101', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 4, 'blocksReceived': 1, 'fastBreakPointsAttempted': 9, 'fastBreakPointsMade': 5, 'fastBreakPointsPercentage': 0.555555555555556, 'fieldGoalsAttempted': 88, 'fieldGoalsEffectiveAdjusted': 0.607954545454545, 'fieldGoalsMade': 45, 'fieldGoalsPercentage': 0.511363636363636, 'foulsOffensive': 0, 'foulsDrawn': 16, 'foulsPersonal': 18, 'foulsTeam': 18, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 19, 'freeThrowsMade': 17, 'freeThrowsPercentage': 0.894736842105263, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 124, 'pointsAgainst': 97, 'pointsFastBreak': 13, 'pointsFromTurnovers': 16, 'pointsInThePaint': 48, 'pointsInThePaintAttempted': 36, 'pointsInThePaintMade': 24, 'pointsInThePaintPercentage': 0.666666666666666, 'pointsSecondChance': 11, 'reboundsDefensive': 39, 'reboundsOffensive': 6, 'reboundsPersonal': 45, 'reboundsTeam': 6, 'reboundsTeamDefensive': 2, 'reboundsTeamOffensive': 4, 'reboundsTotal': 51, 'secondChancePointsAttempted': 6, 'secondChancePointsMade': 4, 'secondChancePointsPercentage': 0.666666666666666, 'steals': 7, 'threePointersAttempted': 42, 'threePointersMade': 17, 'threePointersPercentage': 0.40476190476190504, 'timeLeading': 'PT47M16.00S', 'timesTied': 0, 'trueShootingAttempts': 96.36, 'trueShootingPercentage': 0.6434205064342051, 'turnovers': 10, 'turnoversTeam': 1, 'turnoversTotal': 11, 'twoPointersAttempted': 46, 'twoPointersMade': 28, 'twoPointersPercentage': 0.608695652173913}}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'score': 97, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203516, 'jerseyNum': '11', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 4, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 41.0, 'minutes': 'PT14M34.00S', 'minutesCalculated': 'PT14M', 'plus': 36.0, 'plusMinusPoints': -5.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'James Ennis III', 'nameI': 'J. Ennis III', 'firstName': 'James', 'familyName': 'Ennis III'}], 'statistics': {'assists': 14, 'assistsTurnoverRatio': 1.07692307692308, 'benchPoints': 33, 'biggestLead': 1, 'biggestLeadScore': '4-3', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 1, 'blocksReceived': 4, 'fastBreakPointsAttempted': 7, 'fastBreakPointsMade': 2, 'fastBreakPointsPercentage': 0.28571428571428603, 'fieldGoalsAttempted': 94, 'fieldGoalsEffectiveAdjusted': 0.441489361702128, 'fieldGoalsMade': 38, 'fieldGoalsPercentage': 0.404255319148936, 'foulsOffensive': 2, 'foulsDrawn': 18, 'foulsPersonal': 16, 'foulsTeam': 14, 'foulsTechnical': 1, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 22, 'freeThrowsMade': 14, 'freeThrowsPercentage': 0.636363636363636, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 97, 'pointsAgainst': 124, 'pointsFastBreak': 8, 'pointsFromTurnovers': 10, 'pointsInThePaint': 52, 'pointsInThePaintAttempted': 47, 'pointsInThePaintMade': 26, 'pointsInThePaintPercentage': 0.553191489361702, 'pointsSecondChance': 20, 'reboundsDefensive': 31, 'reboundsOffensive': 15, 'reboundsPersonal': 46, 'reboundsTeam': 12, 'reboundsTeamDefensive': 4, 'reboundsTeamOffensive': 8, 'reboundsTotal': 58, 'secondChancePointsAttempted': 16, 'secondChancePointsMade': 9, 'secondChancePointsPercentage': 0.5625, 'steals': 5, 'threePointersAttempted': 28, 'threePointersMade': 7, 'threePointersPercentage': 0.25, 'timeLeading': 'PT00M30.00S', 'timesTied': 0, 'trueShootingAttempts': 103.68, 'trueShootingPercentage': 0.46778549382716, 'turnovers': 11, 'turnoversTeam': 2, 'turnoversTotal': 13, 'twoPointersAttempted': 66, 'twoPointersMade': 31, 'twoPointersPercentage': 0.46969696969696995}}}} - #Data Sets - game = Endpoint.DataSet - officials = Endpoint.DataSet - home_team = Endpoint.DataSet - away_team = Endpoint.DataSet - - nba_response = None + arena = None + away_team = None + away_team_player_stats = None + away_team_stats = None data_sets = None - player_stats = None - team_stats = None headers = None + home_team = None + home_team_player_stats = None + home_team_stats = None + game = None + game_details = None + nba_response = None + officials = None def __init__(self, game_id, @@ -30,7 +32,7 @@ def __init__(self, self.timeout = timeout if get_request: self.get_request() - + def get_request(self): self.nba_response = NBALiveHTTP().send_api_request( endpoint=self.endpoint_url.format(game_id=self.game_id), @@ -45,9 +47,35 @@ def load_response(self): data_sets = self.nba_response.get_dict() if 'game' in data_sets: self.game = Endpoint.DataSet(data=data_sets['game']) + self.game_details = self.game.get_dict().copy() + if 'arena' in self.game.get_dict(): + self.arena = Endpoint.DataSet(data=data_sets['game']['arena']) + self.game_details.pop('arena') if 'officials' in self.game.get_dict(): - self.officials = Endpoint.DataSet(data=data_sets['game']['officials']) + self.officials = Endpoint.DataSet(data=data_sets['game']['officials']) + self.game_details.pop('officials') if 'homeTeam' in self.game.get_dict(): - self.home_team = Endpoint.DataSet(data=data_sets['game']['homeTeam']) + self.home_team = Endpoint.DataSet(data=data_sets['game']['homeTeam']) + + #Home Team Player Stats + self.home_team_player_stats = Endpoint.DataSet(data=data_sets['game']['homeTeam']['players']) + + #Home Team Stats + home_team_stats = self.home_team.get_dict().copy() + home_team_stats.pop('players') + self.home_team_stats = Endpoint.DataSet(data=home_team_stats) + + self.game_details.pop('homeTeam') if 'awayTeam' in self.game.get_dict(): - self.away_team = Endpoint.DataSet(data=data_sets['game']['awayTeam']) + self.away_team = Endpoint.DataSet(data=data_sets['game']['awayTeam']) + + #Away Team Player Stats + self.away_team_player_stats = Endpoint.DataSet(data=data_sets['game']['awayTeam']['players']) + + #Away Team Stats + away_team_stats = self.away_team.get_dict().copy() + away_team_stats.pop('players') + self.away_team_stats = Endpoint.DataSet(data=away_team_stats) + + self.game_details.pop('awayTeam') + self.game_details = Endpoint.DataSet(data=self.game_details) \ No newline at end of file diff --git a/nba_api/live/nba/endpoints/playbyplay.py b/nba_api/live/nba/endpoints/playbyplay.py index 1921c6dd..e5dba3c1 100644 --- a/nba_api/live/nba/endpoints/playbyplay.py +++ b/nba_api/live/nba/endpoints/playbyplay.py @@ -5,8 +5,11 @@ class PlayByPlay(Endpoint): endpoint_url = 'playbyplay/playbyplay_{game_id}.json' expected_data = {'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000180/playbyplay?Format=json', 'time': '2021-01-15 23:48:58.906160'}, 'game': {'gameId': '0022000180', 'actions': [{'actionNumber': 4, 'clock': 'PT11M58.00S', 'timeActual': '2021-01-16T00:40:31.3Z', 'period': 1, 'periodType': 'REGULAR', 'teamId': 1610612738, 'teamTricode': 'BOS', 'actionType': 'jumpball', 'subType': 'recovered', 'descriptor': 'startperiod', 'qualifiers': [], 'personId': 1629684, 'x': None, 'y': None, 'possession': 1610612738, 'scoreHome': '0', 'scoreAway': '0', 'edited': '2021-01-16T00:40:31Z', 'orderNumber': 40000, 'xLegacy': None, 'yLegacy': None, 'isFieldGoal': 0, 'jumpBallRecoveredName': 'G. Williams', 'jumpBallRecoverdPersonId': 1629684, 'side': None, 'playerName': 'Williams', 'playerNameI': 'G. Williams', 'personIdsFilter': [1629684, 202684, 202696], 'jumpBallWonPlayerName': 'Thompson', 'jumpBallWonPersonId': 202684, 'description': 'Jump Ball T. Thompson vs. N. Vucevic: Tip to G. Williams', 'jumpBallLostPlayerName': 'Vucevic', 'jumpBallLostPersonId': 202696}]}} - #DataSets - actions = Endpoint.DataSet() + #Data Sets + game = Endpoint.DataSet + officials = Endpoint.DataSet + home_team = Endpoint.DataSet + away_team = Endpoint.DataSet nba_response = None data_sets = None diff --git a/nba_api/live/nba/endpoints/scoreboard.py b/nba_api/live/nba/endpoints/scoreboard.py index 560ab8d7..3b46455d 100644 --- a/nba_api/live/nba/endpoints/scoreboard.py +++ b/nba_api/live/nba/endpoints/scoreboard.py @@ -5,14 +5,10 @@ class ScoreBoard(Endpoint): endpoint_url = 'scoreboard/todaysScoreboard_00.json' expected_data = {'meta': {'version': 0, 'request': '', 'time': '', 'code': 0}, 'scoreboard': {'gameDate': '', 'leagueId': '', 'leagueName': '', 'games': [{'gameId': '', 'gameCode': '', 'gameStatus': 0, 'gameStatusText': '', 'period': 0, 'gameClock': '', 'gameTimeUTC': '', 'gameEt': '', 'regulationPeriods': 0, 'seriesGameNumber': '', 'seriesText': '', 'homeTeam': {'teamId': 0, 'teamName': '', 'teamCity': '', 'teamTricode': '', 'wins': 0, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 0, 'periodType': '', 'score': 0}]}, 'awayTeam': {'teamId': 0, 'teamName': '', 'teamCity': '', 'teamTricode': '', 'wins': 0, 'losses': 0, 'score': 0, 'inBonus': None, 'timeoutsRemaining': 0, 'periods': [{'period': 0, 'periodType': '', 'score': 0}]}, 'gameLeaders': {'homeLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': '', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}, 'awayLeaders': {'personId': 0, 'name': '', 'jerseyNum': '', 'position': '', 'teamTricode': '', 'playerSlug': None, 'points': 0, 'rebounds': 0, 'assists': 0}}, 'pbOdds': {'team': None, 'odds': 0.0, 'suspended': 0}}]}} - #DataSets - games = Endpoint.DataSet() - game_date = None - nba_response = None data_sets = None - player_stats = None - team_stats = None + score_board_date = None + games = None headers = None def __init__(self, @@ -39,7 +35,8 @@ def get_request(self): def load_response(self): data_sets = self.nba_response.get_dict() - if 'scoreboard' in data_sets and 'games' in data_sets['scoreboard']: - self.games = Endpoint.DataSet(data=data_sets['scoreboard']['games']) - if 'gameDate' in self.games.get_dict(): - self.gamedate = Endpoint.DataSet(data=data_sets['scoreboard']['gameDate']) + if 'scoreboard' in data_sets: + self.score_board_date = data_sets['scoreboard']['gameDate'] + if 'games' in data_sets['scoreboard']: + self.games = Endpoint.DataSet(data=data_sets['scoreboard']['games']) + \ No newline at end of file diff --git a/tests/live/endpoints/test_boxscore.py b/tests/live/endpoints/test_boxscore.py index 30b51e79..459db843 100644 --- a/tests/live/endpoints/test_boxscore.py +++ b/tests/live/endpoints/test_boxscore.py @@ -5,6 +5,10 @@ from nba_api.live.nba.library.http import NBALiveHTTP content = {'meta': {'version': 1, 'code': 200, 'request': 'http://nba.cloud/games/0022000180/boxscore?Format=json', 'time': '2021-01-15 23:51:25.282704'}, 'game': {'gameId': '0022000180', 'gameTimeLocal': '2021-01-15T19:30:00-05:00', 'gameTimeUTC': '2021-01-16T00:30:00Z', 'gameTimeHome': '2021-01-15T19:30:00-05:00', 'gameTimeAway': '2021-01-15T19:30:00-05:00', 'gameEt': '2021-01-15T19:30:00-05:00', 'duration': 125, 'gameCode': '20210115/ORLBOS', 'gameStatusText': 'Final', 'gameStatus': 3, 'regulationPeriods': 4, 'period': 4, 'gameClock': 'PT00M00.00S', 'attendance': 0, 'sellout': '0', 'arena': {'arenaId': 17, 'arenaName': 'TD Garden', 'arenaCity': 'Boston', 'arenaState': 'MA', 'arenaCountry': 'US', 'arenaTimezone': 'America/New_York'}, 'officials': [{'personId': 201638, 'name': 'Brent Barnaky', 'nameI': 'B. Barnaky', 'firstName': 'Brent', 'familyName': 'Barnaky', 'jerseyNum': '36', 'assignment': 'OFFICIAL1'}], 'homeTeam': {'teamId': 1610612738, 'teamName': 'Celtics', 'teamCity': 'Boston', 'teamTricode': 'BOS', 'score': 124, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 34}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 1627759, 'jerseyNum': '7', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 8, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 12, 'fieldGoalsMade': 6, 'fieldGoalsPercentage': 0.5, 'foulsOffensive': 0, 'foulsDrawn': 4, 'foulsPersonal': 1, 'foulsTechnical': 0, 'freeThrowsAttempted': 7, 'freeThrowsMade': 7, 'freeThrowsPercentage': 1.0, 'minus': 50.0, 'minutes': 'PT25M01.00S', 'minutesCalculated': 'PT25M', 'plus': 65.0, 'plusMinusPoints': 15.0, 'points': 21, 'pointsFastBreak': 0, 'pointsInThePaint': 6, 'pointsSecondChance': 0, 'reboundsDefensive': 2, 'reboundsOffensive': 0, 'reboundsTotal': 2, 'steals': 1, 'threePointersAttempted': 5, 'threePointersMade': 2, 'threePointersPercentage': 0.4, 'turnovers': 2, 'twoPointersAttempted': 7, 'twoPointersMade': 4, 'twoPointersPercentage': 0.5714285714285711}, 'name': 'Jaylen Brown', 'nameI': 'J. Brown', 'firstName': 'Jaylen', 'familyName': 'Brown'}], 'statistics': {'assists': 25, 'assistsTurnoverRatio': 2.27272727272727, 'benchPoints': 66, 'biggestLead': 29, 'biggestLeadScore': '72-101', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 4, 'blocksReceived': 1, 'fastBreakPointsAttempted': 9, 'fastBreakPointsMade': 5, 'fastBreakPointsPercentage': 0.555555555555556, 'fieldGoalsAttempted': 88, 'fieldGoalsEffectiveAdjusted': 0.607954545454545, 'fieldGoalsMade': 45, 'fieldGoalsPercentage': 0.511363636363636, 'foulsOffensive': 0, 'foulsDrawn': 16, 'foulsPersonal': 18, 'foulsTeam': 18, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 19, 'freeThrowsMade': 17, 'freeThrowsPercentage': 0.894736842105263, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 124, 'pointsAgainst': 97, 'pointsFastBreak': 13, 'pointsFromTurnovers': 16, 'pointsInThePaint': 48, 'pointsInThePaintAttempted': 36, 'pointsInThePaintMade': 24, 'pointsInThePaintPercentage': 0.666666666666666, 'pointsSecondChance': 11, 'reboundsDefensive': 39, 'reboundsOffensive': 6, 'reboundsPersonal': 45, 'reboundsTeam': 6, 'reboundsTeamDefensive': 2, 'reboundsTeamOffensive': 4, 'reboundsTotal': 51, 'secondChancePointsAttempted': 6, 'secondChancePointsMade': 4, 'secondChancePointsPercentage': 0.666666666666666, 'steals': 7, 'threePointersAttempted': 42, 'threePointersMade': 17, 'threePointersPercentage': 0.40476190476190504, 'timeLeading': 'PT47M16.00S', 'timesTied': 0, 'trueShootingAttempts': 96.36, 'trueShootingPercentage': 0.6434205064342051, 'turnovers': 10, 'turnoversTeam': 1, 'turnoversTotal': 11, 'twoPointersAttempted': 46, 'twoPointersMade': 28, 'twoPointersPercentage': 0.608695652173913}}, 'awayTeam': {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'score': 97, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28}], 'players': [{'status': 'ACTIVE', 'order': 1, 'personId': 203516, 'jerseyNum': '11', 'position': 'SF', 'starter': '1', 'oncourt': '0', 'played': '1', 'statistics': {'assists': 0, 'blocks': 0, 'blocksReceived': 0, 'fieldGoalsAttempted': 4, 'fieldGoalsMade': 1, 'fieldGoalsPercentage': 0.25, 'foulsOffensive': 0, 'foulsDrawn': 0, 'foulsPersonal': 3, 'foulsTechnical': 0, 'freeThrowsAttempted': 0, 'freeThrowsMade': 0, 'freeThrowsPercentage': 0.0, 'minus': 41.0, 'minutes': 'PT14M34.00S', 'minutesCalculated': 'PT14M', 'plus': 36.0, 'plusMinusPoints': -5.0, 'points': 2, 'pointsFastBreak': 0, 'pointsInThePaint': 2, 'pointsSecondChance': 0, 'reboundsDefensive': 1, 'reboundsOffensive': 0, 'reboundsTotal': 1, 'steals': 0, 'threePointersAttempted': 2, 'threePointersMade': 0, 'threePointersPercentage': 0.0, 'turnovers': 0, 'twoPointersAttempted': 2, 'twoPointersMade': 1, 'twoPointersPercentage': 0.5}, 'name': 'James Ennis III', 'nameI': 'J. Ennis III', 'firstName': 'James', 'familyName': 'Ennis III'}], 'statistics': {'assists': 14, 'assistsTurnoverRatio': 1.07692307692308, 'benchPoints': 33, 'biggestLead': 1, 'biggestLeadScore': '4-3', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 1, 'blocksReceived': 4, 'fastBreakPointsAttempted': 7, 'fastBreakPointsMade': 2, 'fastBreakPointsPercentage': 0.28571428571428603, 'fieldGoalsAttempted': 94, 'fieldGoalsEffectiveAdjusted': 0.441489361702128, 'fieldGoalsMade': 38, 'fieldGoalsPercentage': 0.404255319148936, 'foulsOffensive': 2, 'foulsDrawn': 18, 'foulsPersonal': 16, 'foulsTeam': 14, 'foulsTechnical': 1, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 22, 'freeThrowsMade': 14, 'freeThrowsPercentage': 0.636363636363636, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 97, 'pointsAgainst': 124, 'pointsFastBreak': 8, 'pointsFromTurnovers': 10, 'pointsInThePaint': 52, 'pointsInThePaintAttempted': 47, 'pointsInThePaintMade': 26, 'pointsInThePaintPercentage': 0.553191489361702, 'pointsSecondChance': 20, 'reboundsDefensive': 31, 'reboundsOffensive': 15, 'reboundsPersonal': 46, 'reboundsTeam': 12, 'reboundsTeamDefensive': 4, 'reboundsTeamOffensive': 8, 'reboundsTotal': 58, 'secondChancePointsAttempted': 16, 'secondChancePointsMade': 9, 'secondChancePointsPercentage': 0.5625, 'steals': 5, 'threePointersAttempted': 28, 'threePointersMade': 7, 'threePointersPercentage': 0.25, 'timeLeading': 'PT00M30.00S', 'timesTied': 0, 'trueShootingAttempts': 103.68, 'trueShootingPercentage': 0.46778549382716, 'turnovers': 11, 'turnoversTeam': 2, 'turnoversTotal': 13, 'twoPointersAttempted': 66, 'twoPointersMade': 31, 'twoPointersPercentage': 0.46969696969696995}}}} +game_details = {'gameId': '0022000180', 'gameTimeLocal': '2021-01-15T19:30:00-05:00', 'gameTimeUTC': '2021-01-16T00:30:00Z', 'gameTimeHome': '2021-01-15T19:30:00-05:00', 'gameTimeAway': '2021-01-15T19:30:00-05:00', 'gameEt': '2021-01-15T19:30:00-05:00', 'duration': 125, 'gameCode': '20210115/ORLBOS', 'gameStatusText': 'Final', 'gameStatus': 3, 'regulationPeriods': 4, 'period': 4, 'gameClock': 'PT00M00.00S', 'attendance': 0, 'sellout': '0'} +home_team_stats = {'teamId': 1610612738, 'teamName': 'Celtics', 'teamCity': 'Boston', 'teamTricode': 'BOS', 'score': 124, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 34}], 'statistics': {'assists': 25, 'assistsTurnoverRatio': 2.27272727272727, 'benchPoints': 66, 'biggestLead': 29, 'biggestLeadScore': '72-101', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 4, 'blocksReceived': 1, 'fastBreakPointsAttempted': 9, 'fastBreakPointsMade': 5, 'fastBreakPointsPercentage': 0.555555555555556, 'fieldGoalsAttempted': 88, 'fieldGoalsEffectiveAdjusted': 0.607954545454545, 'fieldGoalsMade': 45, 'fieldGoalsPercentage': 0.511363636363636, 'foulsOffensive': 0, 'foulsDrawn': 16, 'foulsPersonal': 18, 'foulsTeam': 18, 'foulsTechnical': 0, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 19, 'freeThrowsMade': 17, 'freeThrowsPercentage': 0.894736842105263, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 124, 'pointsAgainst': 97, 'pointsFastBreak': 13, 'pointsFromTurnovers': 16, 'pointsInThePaint': 48, 'pointsInThePaintAttempted': 36, 'pointsInThePaintMade': 24, 'pointsInThePaintPercentage': 0.666666666666666, 'pointsSecondChance': 11, 'reboundsDefensive': 39, 'reboundsOffensive': 6, 'reboundsPersonal': 45, 'reboundsTeam': 6, 'reboundsTeamDefensive': 2, 'reboundsTeamOffensive': 4, 'reboundsTotal': 51, 'secondChancePointsAttempted': 6, 'secondChancePointsMade': 4, 'secondChancePointsPercentage': 0.666666666666666, 'steals': 7, 'threePointersAttempted': 42, 'threePointersMade': 17, 'threePointersPercentage': 0.40476190476190504, 'timeLeading': 'PT47M16.00S', 'timesTied': 0, 'trueShootingAttempts': 96.36, 'trueShootingPercentage': 0.6434205064342051, 'turnovers': 10, 'turnoversTeam': 1, 'turnoversTotal': 11, 'twoPointersAttempted': 46, 'twoPointersMade': 28, 'twoPointersPercentage': 0.608695652173913}} +away_team_stats = {'teamId': 1610612753, 'teamName': 'Magic', 'teamCity': 'Orlando', 'teamTricode': 'ORL', 'score': 97, 'inBonus': '1', 'timeoutsRemaining': 2, 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28}], 'statistics': {'assists': 14, 'assistsTurnoverRatio': 1.07692307692308, 'benchPoints': 33, 'biggestLead': 1, 'biggestLeadScore': '4-3', 'biggestScoringRun': 13, 'biggestScoringRunScore': '72-101', 'blocks': 1, 'blocksReceived': 4, 'fastBreakPointsAttempted': 7, 'fastBreakPointsMade': 2, 'fastBreakPointsPercentage': 0.28571428571428603, 'fieldGoalsAttempted': 94, 'fieldGoalsEffectiveAdjusted': 0.441489361702128, 'fieldGoalsMade': 38, 'fieldGoalsPercentage': 0.404255319148936, 'foulsOffensive': 2, 'foulsDrawn': 18, 'foulsPersonal': 16, 'foulsTeam': 14, 'foulsTechnical': 1, 'foulsTeamTechnical': 0, 'freeThrowsAttempted': 22, 'freeThrowsMade': 14, 'freeThrowsPercentage': 0.636363636363636, 'leadChanges': 4, 'minutes': 'PT240M00.00S', 'minutesCalculated': 'PT240M', 'points': 97, 'pointsAgainst': 124, 'pointsFastBreak': 8, 'pointsFromTurnovers': 10, 'pointsInThePaint': 52, 'pointsInThePaintAttempted': 47, 'pointsInThePaintMade': 26, 'pointsInThePaintPercentage': 0.553191489361702, 'pointsSecondChance': +20, 'reboundsDefensive': 31, 'reboundsOffensive': 15, 'reboundsPersonal': 46, 'reboundsTeam': 12, 'reboundsTeamDefensive': 4, 'reboundsTeamOffensive': 8, 'reboundsTotal': 58, 'secondChancePointsAttempted': 16, 'secondChancePointsMade': 9, 'secondChancePointsPercentage': 0.5625, 'steals': 5, 'threePointersAttempted': 28, 'threePointersMade': 7, 'threePointersPercentage': 0.25, 'timeLeading': 'PT00M30.00S', 'timesTied': 0, 'trueShootingAttempts': 103.68, 'trueShootingPercentage': 0.46778549382716, 'turnovers': 11, 'turnoversTeam': 2, 'turnoversTotal': 13, 'twoPointersAttempted': 66, 'twoPointersMade': 31, 'twoPointersPercentage': 0.46969696969696995}} game_id = '0022000180' @pytest.fixture @@ -32,11 +36,29 @@ def test_get_dict(nba_http_patch): def test_game_dict(nba_http_patch): assert boxscore.BoxScore(game_id).game.get_dict() == content['game'] +def test_arena_dict(nba_http_patch): + assert boxscore.BoxScore(game_id).arena.get_dict() == content['game']['arena'] + def test_home_team_dict(nba_http_patch): assert boxscore.BoxScore(game_id).home_team.get_dict() == content['game']['homeTeam'] +def test_home_team_stats(nba_http_patch): + assert boxscore.BoxScore(game_id).home_team_stats.get_dict() == home_team_stats + +def test_home_team_player_stats(nba_http_patch): + assert boxscore.BoxScore(game_id).home_team_player_stats.get_dict() == content['game']['homeTeam']['players'] + def test_away_team_dict(nba_http_patch): assert boxscore.BoxScore(game_id).away_team.get_dict() == content['game']['awayTeam'] +def test_away_team_stats(nba_http_patch): + assert boxscore.BoxScore(game_id).away_team_stats.get_dict() == away_team_stats + +def test_away_team_player_stats(nba_http_patch): + assert boxscore.BoxScore(game_id).away_team_player_stats.get_dict() == content['game']['awayTeam']['players'] + def test_officials_dict(nba_http_patch): assert boxscore.BoxScore(game_id).officials.get_dict() == content['game']['officials'] + +def test_game_details_dict(nba_http_patch): + assert boxscore.BoxScore(game_id).game_details.get_dict() == game_details diff --git a/tests/live/endpoints/test_scoreboard.py b/tests/live/endpoints/test_scoreboard.py index 97d71709..929e4699 100644 --- a/tests/live/endpoints/test_scoreboard.py +++ b/tests/live/endpoints/test_scoreboard.py @@ -19,8 +19,8 @@ def send_api_request(self, endpoint, parameters, referer=None, proxy=None, heade monkeypatch.setattr(NBAHTTP, "send_api_request", MockResponse.send_api_request) -def test_get_games_dict(nba_http_patch): - assert scoreboard.ScoreBoard().game_date == '2021-01-16' +def test_get_score_board_date(nba_http_patch): + assert scoreboard.ScoreBoard().score_board_date == '2021-01-16' def test_get_games_dict(nba_http_patch): assert scoreboard.ScoreBoard().games.get_dict() == games From 7a8b60a90f3d1df490750ed2ae5430270bee3fbb Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Mon, 18 Jan 2021 15:45:26 -0500 Subject: [PATCH 15/20] fixed references in tests for 3.4 --- tests/live/endpoints/test_boxscore.py | 1 - tests/live/endpoints/test_playbyplay.py | 1 - tests/live/endpoints/test_scoreboard.py | 1 - 3 files changed, 3 deletions(-) diff --git a/tests/live/endpoints/test_boxscore.py b/tests/live/endpoints/test_boxscore.py index 459db843..cfc29f15 100644 --- a/tests/live/endpoints/test_boxscore.py +++ b/tests/live/endpoints/test_boxscore.py @@ -1,4 +1,3 @@ -import pytest import json from nba_api.library.http import NBAHTTP, NBAResponse from nba_api.live.nba.endpoints import boxscore diff --git a/tests/live/endpoints/test_playbyplay.py b/tests/live/endpoints/test_playbyplay.py index a8bfbb04..03601e29 100644 --- a/tests/live/endpoints/test_playbyplay.py +++ b/tests/live/endpoints/test_playbyplay.py @@ -1,5 +1,4 @@ import json -import pytest from nba_api.library.http import NBAHTTP, NBAResponse from nba_api.live.nba.endpoints import playbyplay from nba_api.live.nba.library.http import NBALiveHTTP diff --git a/tests/live/endpoints/test_scoreboard.py b/tests/live/endpoints/test_scoreboard.py index 929e4699..a487d620 100644 --- a/tests/live/endpoints/test_scoreboard.py +++ b/tests/live/endpoints/test_scoreboard.py @@ -1,5 +1,4 @@ import json -import pytest from nba_api.library.http import NBAHTTP, NBAResponse from nba_api.live.nba.endpoints import scoreboard from nba_api.live.nba.library.http import NBALiveHTTP From 5b7e7ba5a3732dc4f90bc2a4a86a5e5f1971c94b Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Mon, 18 Jan 2021 15:46:46 -0500 Subject: [PATCH 16/20] undoing fix --- tests/live/endpoints/test_boxscore.py | 1 + tests/live/endpoints/test_playbyplay.py | 1 + tests/live/endpoints/test_scoreboard.py | 1 + 3 files changed, 3 insertions(+) diff --git a/tests/live/endpoints/test_boxscore.py b/tests/live/endpoints/test_boxscore.py index cfc29f15..459db843 100644 --- a/tests/live/endpoints/test_boxscore.py +++ b/tests/live/endpoints/test_boxscore.py @@ -1,3 +1,4 @@ +import pytest import json from nba_api.library.http import NBAHTTP, NBAResponse from nba_api.live.nba.endpoints import boxscore diff --git a/tests/live/endpoints/test_playbyplay.py b/tests/live/endpoints/test_playbyplay.py index 03601e29..a8bfbb04 100644 --- a/tests/live/endpoints/test_playbyplay.py +++ b/tests/live/endpoints/test_playbyplay.py @@ -1,4 +1,5 @@ import json +import pytest from nba_api.library.http import NBAHTTP, NBAResponse from nba_api.live.nba.endpoints import playbyplay from nba_api.live.nba.library.http import NBALiveHTTP diff --git a/tests/live/endpoints/test_scoreboard.py b/tests/live/endpoints/test_scoreboard.py index a487d620..929e4699 100644 --- a/tests/live/endpoints/test_scoreboard.py +++ b/tests/live/endpoints/test_scoreboard.py @@ -1,4 +1,5 @@ import json +import pytest from nba_api.library.http import NBAHTTP, NBAResponse from nba_api.live.nba.endpoints import scoreboard from nba_api.live.nba.library.http import NBALiveHTTP From 6dc284b1d9778efddc08f0765573099ed325d394 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Mon, 18 Jan 2021 16:35:50 -0500 Subject: [PATCH 17/20] Updated Live Data Notebook --- docs/examples/LiveData.ipynb | 2545 ++++++++++++++++++++++-- nba_api/live/nba/endpoints/boxscore.py | 1 - 2 files changed, 2335 insertions(+), 211 deletions(-) diff --git a/docs/examples/LiveData.ipynb b/docs/examples/LiveData.ipynb index 6e769668..82628952 100644 --- a/docs/examples/LiveData.ipynb +++ b/docs/examples/LiveData.ipynb @@ -5,7 +5,7 @@ "metadata": {}, "source": [ "# Working with NBA live data...\n", - "Libraries supporting live data do not include support for Pandas. Note: Any call to `{endpoint}.{Class}()` will perform a request. Example: `scoreboard.ScoreBoard()`. In order to avoid multiple requests, set `{endpoint}.{Class}()` to a variable. See sample code below.\n" + "Libraries supporting live data do not include support for Pandas. Note: Any call to `{endpoint}.{Class}()` will perform a request. Example: `scoreboard.ScoreBoard()`. In order to avoid multiple requests, set `{endpoint}.{Class}()` to a variable. See sample code below." ] }, { @@ -24,14 +24,17 @@ "name": "stdout", "output_type": "stream", "text": [ - "ScoreBoardDate: 2021-01-17\n", - "0022000196: Knicks vs. Celtics @ 2021-01-17 13:00:00-05:00\n", - "0022000197: Cavaliers vs. Wizards @ 2021-01-17 14:00:00-05:00\n", - "0022000198: Bulls vs. Mavericks @ 2021-01-17 15:00:00-05:00\n", - "0022000199: 76ers vs. Thunder @ 2021-01-17 19:00:00-05:00\n", - "0022000200: Jazz vs. Nuggets @ 2021-01-17 20:00:00-05:00\n", - "0022000201: Pelicans vs. Kings @ 2021-01-17 21:00:00-05:00\n", - "0022000202: Pacers vs. Clippers @ 2021-01-17 22:00:00-05:00\n" + "ScoreBoardDate: 2021-01-18\n", + "0022000207: Spurs vs. Trail Blazers @ 2021-01-18 15:00:00-05:00\n", + "0022000205: Timberwolves vs. Hawks @ 2021-01-18 14:30:00-05:00\n", + "0022000203: Magic vs. Knicks @ 2021-01-18 12:00:00-05:00\n", + "0022000204: Cavaliers vs. Wizards @ 2021-01-18 14:00:00-05:00\n", + "0022000208: Suns vs. Grizzlies @ 2021-01-18 17:00:00-05:00\n", + "0022000209: Bucks vs. Nets @ 2021-01-18 19:30:00-05:00\n", + "0022000210: Mavericks vs. Raptors @ 2021-01-18 19:30:00-05:00\n", + "0022000206: Pistons vs. Heat @ 2021-01-18 20:00:00-05:00\n", + "0022000211: Rockets vs. Bulls @ 2021-01-18 20:00:00-05:00\n", + "0022000212: Warriors vs. Lakers @ 2021-01-18 22:00:00-05:00\n" ] } ], @@ -60,7 +63,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -71,7 +74,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 28, "metadata": {}, "outputs": [ { @@ -91,84 +94,1713 @@ " 'period': 4,\n", " 'gameClock': 'PT00M00.00S',\n", " 'attendance': 0,\n", - " 'sellout': '0'}" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "#Game Details\n", - "box.game_info.get_dict()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'arenaId': 17,\n", - " 'arenaName': 'TD Garden',\n", - " 'arenaCity': 'Boston',\n", - " 'arenaState': 'MA',\n", - " 'arenaCountry': 'US',\n", - " 'arenaTimezone': 'America/New_York'}" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "#Arena\n", - "box.arena.get_dict()" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[{'personId': 2882,\n", - " 'name': 'Sean Wright',\n", - " 'nameI': 'S. Wright',\n", - " 'firstName': 'Sean',\n", - " 'familyName': 'Wright',\n", - " 'jerseyNum': '4',\n", - " 'assignment': 'OFFICIAL1'},\n", - " {'personId': 201638,\n", - " 'name': 'Brent Barnaky',\n", - " 'nameI': 'B. Barnaky',\n", - " 'firstName': 'Brent',\n", - " 'familyName': 'Barnaky',\n", - " 'jerseyNum': '36',\n", - " 'assignment': 'OFFICIAL2'},\n", - " {'personId': 1627524,\n", - " 'name': 'Nate Green',\n", - " 'nameI': 'N. Green',\n", - " 'firstName': 'Nate',\n", - " 'familyName': 'Green',\n", - " 'jerseyNum': '65',\n", - " 'assignment': 'OFFICIAL3'}]" + " 'sellout': '0',\n", + " 'arena': {'arenaId': 17,\n", + " 'arenaName': 'TD Garden',\n", + " 'arenaCity': 'Boston',\n", + " 'arenaState': 'MA',\n", + " 'arenaCountry': 'US',\n", + " 'arenaTimezone': 'America/New_York'},\n", + " 'officials': [{'personId': 2882,\n", + " 'name': 'Sean Wright',\n", + " 'nameI': 'S. Wright',\n", + " 'firstName': 'Sean',\n", + " 'familyName': 'Wright',\n", + " 'jerseyNum': '4',\n", + " 'assignment': 'OFFICIAL1'},\n", + " {'personId': 201638,\n", + " 'name': 'Brent Barnaky',\n", + " 'nameI': 'B. Barnaky',\n", + " 'firstName': 'Brent',\n", + " 'familyName': 'Barnaky',\n", + " 'jerseyNum': '36',\n", + " 'assignment': 'OFFICIAL2'},\n", + " {'personId': 1627524,\n", + " 'name': 'Nate Green',\n", + " 'nameI': 'N. Green',\n", + " 'firstName': 'Nate',\n", + " 'familyName': 'Green',\n", + " 'jerseyNum': '65',\n", + " 'assignment': 'OFFICIAL3'}],\n", + " 'homeTeam': {'teamId': 1610612738,\n", + " 'teamName': 'Celtics',\n", + " 'teamCity': 'Boston',\n", + " 'teamTricode': 'BOS',\n", + " 'score': 75,\n", + " 'inBonus': '1',\n", + " 'timeoutsRemaining': 2,\n", + " 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 17},\n", + " {'period': 2, 'periodType': 'REGULAR', 'score': 18},\n", + " {'period': 3, 'periodType': 'REGULAR', 'score': 15},\n", + " {'period': 4, 'periodType': 'REGULAR', 'score': 25}],\n", + " 'players': [{'status': 'ACTIVE',\n", + " 'order': 1,\n", + " 'personId': 1627759,\n", + " 'jerseyNum': '7',\n", + " 'position': 'SF',\n", + " 'starter': '1',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 3,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 2,\n", + " 'fieldGoalsAttempted': 20,\n", + " 'fieldGoalsMade': 9,\n", + " 'fieldGoalsPercentage': 0.45,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 5,\n", + " 'foulsPersonal': 3,\n", + " 'foulsTechnical': 1,\n", + " 'freeThrowsAttempted': 5,\n", + " 'freeThrowsMade': 4,\n", + " 'freeThrowsPercentage': 0.8,\n", + " 'minus': 73.0,\n", + " 'minutes': 'PT32M33.00S',\n", + " 'minutesCalculated': 'PT33M',\n", + " 'plus': 46.0,\n", + " 'plusMinusPoints': -27.0,\n", + " 'points': 25,\n", + " 'pointsFastBreak': 7,\n", + " 'pointsInThePaint': 8,\n", + " 'pointsSecondChance': 4,\n", + " 'reboundsDefensive': 3,\n", + " 'reboundsOffensive': 3,\n", + " 'reboundsTotal': 6,\n", + " 'steals': 1,\n", + " 'threePointersAttempted': 9,\n", + " 'threePointersMade': 3,\n", + " 'threePointersPercentage': 0.333333333333333,\n", + " 'turnovers': 2,\n", + " 'twoPointersAttempted': 11,\n", + " 'twoPointersMade': 6,\n", + " 'twoPointersPercentage': 0.545454545454545},\n", + " 'name': 'Jaylen Brown',\n", + " 'nameI': 'J. Brown',\n", + " 'firstName': 'Jaylen',\n", + " 'familyName': 'Brown'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 2,\n", + " 'personId': 1629684,\n", + " 'jerseyNum': '12',\n", + " 'position': 'PF',\n", + " 'starter': '1',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 1,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 5,\n", + " 'fieldGoalsMade': 1,\n", + " 'fieldGoalsPercentage': 0.2,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 2,\n", + " 'foulsPersonal': 5,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 4,\n", + " 'freeThrowsMade': 1,\n", + " 'freeThrowsPercentage': 0.25,\n", + " 'minus': 59.0,\n", + " 'minutes': 'PT24M25.00S',\n", + " 'minutesCalculated': 'PT24M',\n", + " 'plus': 41.0,\n", + " 'plusMinusPoints': -18.0,\n", + " 'points': 3,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 2,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 1,\n", + " 'reboundsOffensive': 1,\n", + " 'reboundsTotal': 2,\n", + " 'steals': 1,\n", + " 'threePointersAttempted': 4,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 1,\n", + " 'twoPointersAttempted': 1,\n", + " 'twoPointersMade': 1,\n", + " 'twoPointersPercentage': 1.0},\n", + " 'name': 'Grant Williams',\n", + " 'nameI': 'G. Williams',\n", + " 'firstName': 'Grant',\n", + " 'familyName': 'Williams'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 3,\n", + " 'personId': 202684,\n", + " 'jerseyNum': '13',\n", + " 'position': 'C',\n", + " 'starter': '1',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 1,\n", + " 'blocksReceived': 1,\n", + " 'fieldGoalsAttempted': 5,\n", + " 'fieldGoalsMade': 1,\n", + " 'fieldGoalsPercentage': 0.2,\n", + " 'foulsOffensive': 1,\n", + " 'foulsDrawn': 3,\n", + " 'foulsPersonal': 1,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 2,\n", + " 'freeThrowsMade': 1,\n", + " 'freeThrowsPercentage': 0.5,\n", + " 'minus': 54.0,\n", + " 'minutes': 'PT26M12.04S',\n", + " 'minutesCalculated': 'PT26M',\n", + " 'plus': 36.0,\n", + " 'plusMinusPoints': -18.0,\n", + " 'points': 3,\n", + " 'pointsFastBreak': 1,\n", + " 'pointsInThePaint': 2,\n", + " 'pointsSecondChance': 1,\n", + " 'reboundsDefensive': 1,\n", + " 'reboundsOffensive': 5,\n", + " 'reboundsTotal': 6,\n", + " 'steals': 1,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 2,\n", + " 'twoPointersAttempted': 5,\n", + " 'twoPointersMade': 1,\n", + " 'twoPointersPercentage': 0.2},\n", + " 'name': 'Tristan Thompson',\n", + " 'nameI': 'T. Thompson',\n", + " 'firstName': 'Tristan',\n", + " 'familyName': 'Thompson'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 4,\n", + " 'personId': 203935,\n", + " 'jerseyNum': '36',\n", + " 'position': 'SG',\n", + " 'starter': '1',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 2,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 1,\n", + " 'fieldGoalsAttempted': 15,\n", + " 'fieldGoalsMade': 4,\n", + " 'fieldGoalsPercentage': 0.266666666666667,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 6,\n", + " 'foulsPersonal': 3,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 5,\n", + " 'freeThrowsMade': 2,\n", + " 'freeThrowsPercentage': 0.4,\n", + " 'minus': 64.0,\n", + " 'minutes': 'PT29M22.00S',\n", + " 'minutesCalculated': 'PT29M',\n", + " 'plus': 42.0,\n", + " 'plusMinusPoints': -22.0,\n", + " 'points': 10,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 8,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 2,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 2,\n", + " 'steals': 2,\n", + " 'threePointersAttempted': 7,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 8,\n", + " 'twoPointersMade': 4,\n", + " 'twoPointersPercentage': 0.5},\n", + " 'name': 'Marcus Smart',\n", + " 'nameI': 'M. Smart',\n", + " 'firstName': 'Marcus',\n", + " 'familyName': 'Smart'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 5,\n", + " 'personId': 202689,\n", + " 'jerseyNum': '8',\n", + " 'position': 'PG',\n", + " 'starter': '1',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 4,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 13,\n", + " 'fieldGoalsMade': 3,\n", + " 'fieldGoalsPercentage': 0.230769230769231,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 4,\n", + " 'foulsPersonal': 1,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 3,\n", + " 'freeThrowsMade': 2,\n", + " 'freeThrowsPercentage': 0.666666666666666,\n", + " 'minus': 36.0,\n", + " 'minutes': 'PT19M37.00S',\n", + " 'minutesCalculated': 'PT20M',\n", + " 'plus': 27.0,\n", + " 'plusMinusPoints': -9.0,\n", + " 'points': 9,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 4,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 3,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 3,\n", + " 'steals': 3,\n", + " 'threePointersAttempted': 8,\n", + " 'threePointersMade': 1,\n", + " 'threePointersPercentage': 0.125,\n", + " 'turnovers': 5,\n", + " 'twoPointersAttempted': 5,\n", + " 'twoPointersMade': 2,\n", + " 'twoPointersPercentage': 0.4},\n", + " 'name': 'Kemba Walker',\n", + " 'nameI': 'K. Walker',\n", + " 'firstName': 'Kemba',\n", + " 'familyName': 'Walker'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 6,\n", + " 'personId': 201952,\n", + " 'jerseyNum': '55',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 2,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 1,\n", + " 'fieldGoalsAttempted': 4,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 2,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 40.0,\n", + " 'minutes': 'PT14M28.00S',\n", + " 'minutesCalculated': 'PT15M',\n", + " 'plus': 25.0,\n", + " 'plusMinusPoints': -15.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 2,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 2,\n", + " 'steals': 1,\n", + " 'threePointersAttempted': 2,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 1,\n", + " 'twoPointersAttempted': 2,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Jeff Teague',\n", + " 'nameI': 'J. Teague',\n", + " 'firstName': 'Jeff',\n", + " 'familyName': 'Teague'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 7,\n", + " 'personId': 1628464,\n", + " 'jerseyNum': '27',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 1,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 4,\n", + " 'fieldGoalsMade': 3,\n", + " 'fieldGoalsPercentage': 0.75,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 2,\n", + " 'foulsPersonal': 3,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 39.0,\n", + " 'minutes': 'PT19M49.00S',\n", + " 'minutesCalculated': 'PT20M',\n", + " 'plus': 32.0,\n", + " 'plusMinusPoints': -7.0,\n", + " 'points': 7,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 4,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 6,\n", + " 'reboundsOffensive': 1,\n", + " 'reboundsTotal': 7,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 2,\n", + " 'threePointersMade': 1,\n", + " 'threePointersPercentage': 0.5,\n", + " 'turnovers': 2,\n", + " 'twoPointersAttempted': 2,\n", + " 'twoPointersMade': 2,\n", + " 'twoPointersPercentage': 1.0},\n", + " 'name': 'Daniel Theis',\n", + " 'nameI': 'D. Theis',\n", + " 'firstName': 'Daniel',\n", + " 'familyName': 'Theis'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 8,\n", + " 'personId': 1628400,\n", + " 'jerseyNum': '37',\n", + " 'starter': '0',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 1,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 6,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 1,\n", + " 'foulsDrawn': 3,\n", + " 'foulsPersonal': 1,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 4,\n", + " 'freeThrowsMade': 4,\n", + " 'freeThrowsPercentage': 1.0,\n", + " 'minus': 48.0,\n", + " 'minutes': 'PT23M22.00S',\n", + " 'minutesCalculated': 'PT23M',\n", + " 'plus': 39.0,\n", + " 'plusMinusPoints': -9.0,\n", + " 'points': 4,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 2,\n", + " 'reboundsOffensive': 1,\n", + " 'reboundsTotal': 3,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 6,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 1,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Semi Ojeleye',\n", + " 'nameI': 'S. Ojeleye',\n", + " 'firstName': 'Semi',\n", + " 'familyName': 'Ojeleye'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 9,\n", + " 'personId': 1630202,\n", + " 'jerseyNum': '11',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 1,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 3,\n", + " 'fieldGoalsMade': 1,\n", + " 'fieldGoalsPercentage': 0.333333333333333,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 1,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 32.0,\n", + " 'minutes': 'PT17M22.96S',\n", + " 'minutesCalculated': 'PT17M',\n", + " 'plus': 28.0,\n", + " 'plusMinusPoints': -4.0,\n", + " 'points': 3,\n", + " 'pointsFastBreak': 3,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 4,\n", + " 'reboundsOffensive': 1,\n", + " 'reboundsTotal': 5,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 3,\n", + " 'threePointersMade': 1,\n", + " 'threePointersPercentage': 0.333333333333333,\n", + " 'turnovers': 2,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Payton Pritchard',\n", + " 'nameI': 'P. Pritchard',\n", + " 'firstName': 'Payton',\n", + " 'familyName': 'Pritchard'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 10,\n", + " 'personId': 1629750,\n", + " 'jerseyNum': '43',\n", + " 'starter': '0',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 3,\n", + " 'fieldGoalsMade': 2,\n", + " 'fieldGoalsPercentage': 0.666666666666666,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 3,\n", + " 'foulsPersonal': 1,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 6,\n", + " 'freeThrowsMade': 4,\n", + " 'freeThrowsPercentage': 0.666666666666666,\n", + " 'minus': 39.0,\n", + " 'minutes': 'PT17M50.00S',\n", + " 'minutesCalculated': 'PT18M',\n", + " 'plus': 29.0,\n", + " 'plusMinusPoints': -10.0,\n", + " 'points': 8,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 4,\n", + " 'pointsSecondChance': 1,\n", + " 'reboundsDefensive': 3,\n", + " 'reboundsOffensive': 2,\n", + " 'reboundsTotal': 5,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 1,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 1,\n", + " 'twoPointersAttempted': 2,\n", + " 'twoPointersMade': 2,\n", + " 'twoPointersPercentage': 1.0},\n", + " 'name': 'Javonte Green',\n", + " 'nameI': 'J. Green',\n", + " 'firstName': 'Javonte',\n", + " 'familyName': 'Green'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 11,\n", + " 'personId': 1630174,\n", + " 'jerseyNum': '26',\n", + " 'starter': '0',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 2,\n", + " 'fieldGoalsAttempted': 4,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 1,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 23.0,\n", + " 'minutes': 'PT08M26.00S',\n", + " 'minutesCalculated': 'PT08M',\n", + " 'plus': 17.0,\n", + " 'plusMinusPoints': -6.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 1,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 1,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 2,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 2,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Aaron Nesmith',\n", + " 'nameI': 'A. Nesmith',\n", + " 'firstName': 'Aaron',\n", + " 'familyName': 'Nesmith'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 12,\n", + " 'personId': 1629682,\n", + " 'jerseyNum': '51',\n", + " 'starter': '0',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 1,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 2,\n", + " 'fieldGoalsMade': 1,\n", + " 'fieldGoalsPercentage': 0.5,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 18.0,\n", + " 'minutes': 'PT06M33.00S',\n", + " 'minutesCalculated': 'PT07M',\n", + " 'plus': 13.0,\n", + " 'plusMinusPoints': -5.0,\n", + " 'points': 3,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 1,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 1,\n", + " 'steals': 1,\n", + " 'threePointersAttempted': 2,\n", + " 'threePointersMade': 1,\n", + " 'threePointersPercentage': 0.5,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Tremont Waters',\n", + " 'nameI': 'T. Waters',\n", + " 'firstName': 'Tremont',\n", + " 'familyName': 'Waters'},\n", + " {'status': 'INACTIVE',\n", + " 'notPlayingReason': 'INACTIVE_HEALTH_AND_SAFETY_PROTOCOLS',\n", + " 'order': 13,\n", + " 'personId': 1629035,\n", + " 'jerseyNum': '4',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '0',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 0.0,\n", + " 'minutes': 'PT00M00.00S',\n", + " 'minutesCalculated': 'PT00M',\n", + " 'plus': 0.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Carsen Edwards',\n", + " 'nameI': 'C. Edwards',\n", + " 'firstName': 'Carsen',\n", + " 'familyName': 'Edwards'},\n", + " {'status': 'INACTIVE',\n", + " 'notPlayingReason': 'INACTIVE_INJURY',\n", + " 'notPlayingDescription': 'Left Ankle; Sprain',\n", + " 'order': 14,\n", + " 'personId': 1629605,\n", + " 'jerseyNum': '99',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '0',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 0.0,\n", + " 'minutes': 'PT00M00.00S',\n", + " 'minutesCalculated': 'PT00M',\n", + " 'plus': 0.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Tacko Fall',\n", + " 'nameI': 'T. Fall',\n", + " 'firstName': 'Tacko',\n", + " 'familyName': 'Fall'},\n", + " {'status': 'INACTIVE',\n", + " 'notPlayingReason': 'INACTIVE_INJURY',\n", + " 'notPlayingDescription': 'Right Wrist; Surgery',\n", + " 'order': 15,\n", + " 'personId': 1629641,\n", + " 'jerseyNum': '45',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '0',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 0.0,\n", + " 'minutes': 'PT00M00.00S',\n", + " 'minutesCalculated': 'PT00M',\n", + " 'plus': 0.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Romeo Langford',\n", + " 'nameI': 'R. Langford',\n", + " 'firstName': 'Romeo',\n", + " 'familyName': 'Langford'},\n", + " {'status': 'INACTIVE',\n", + " 'notPlayingReason': 'INACTIVE_HEALTH_AND_SAFETY_PROTOCOLS',\n", + " 'order': 16,\n", + " 'personId': 1628369,\n", + " 'jerseyNum': '0',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '0',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 0.0,\n", + " 'minutes': 'PT00M00.00S',\n", + " 'minutesCalculated': 'PT00M',\n", + " 'plus': 0.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Jayson Tatum',\n", + " 'nameI': 'J. Tatum',\n", + " 'firstName': 'Jayson',\n", + " 'familyName': 'Tatum'},\n", + " {'status': 'INACTIVE',\n", + " 'notPlayingReason': 'INACTIVE_HEALTH_AND_SAFETY_PROTOCOLS',\n", + " 'order': 17,\n", + " 'personId': 1629057,\n", + " 'jerseyNum': '44',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '0',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 0.0,\n", + " 'minutes': 'PT00M00.00S',\n", + " 'minutesCalculated': 'PT00M',\n", + " 'plus': 0.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Robert Williams III',\n", + " 'nameI': 'R. Williams III',\n", + " 'firstName': 'Robert',\n", + " 'familyName': 'Williams III'}],\n", + " 'statistics': {'assists': 15,\n", + " 'assistsTurnoverRatio': 0.833333333333334,\n", + " 'benchPoints': 25,\n", + " 'biggestLead': 0,\n", + " 'biggestScoringRun': 9,\n", + " 'biggestScoringRunScore': '44-29',\n", + " 'blocks': 2,\n", + " 'blocksReceived': 7,\n", + " 'fastBreakPointsAttempted': 8,\n", + " 'fastBreakPointsMade': 4,\n", + " 'fastBreakPointsPercentage': 0.5,\n", + " 'fieldGoalsAttempted': 84,\n", + " 'fieldGoalsEffectiveAdjusted': 0.339285714285714,\n", + " 'fieldGoalsMade': 25,\n", + " 'fieldGoalsPercentage': 0.297619047619048,\n", + " 'foulsOffensive': 2,\n", + " 'foulsDrawn': 28,\n", + " 'foulsPersonal': 22,\n", + " 'foulsTeam': 20,\n", + " 'foulsTechnical': 1,\n", + " 'foulsTeamTechnical': 0,\n", + " 'freeThrowsAttempted': 29,\n", + " 'freeThrowsMade': 18,\n", + " 'freeThrowsPercentage': 0.620689655172414,\n", + " 'leadChanges': 0,\n", + " 'minutes': 'PT240M00.00S',\n", + " 'minutesCalculated': 'PT240M',\n", + " 'points': 75,\n", + " 'pointsAgainst': 105,\n", + " 'pointsFastBreak': 11,\n", + " 'pointsFromTurnovers': 11,\n", + " 'pointsInThePaint': 32,\n", + " 'pointsInThePaintAttempted': 32,\n", + " 'pointsInThePaintMade': 16,\n", + " 'pointsInThePaintPercentage': 0.5,\n", + " 'pointsSecondChance': 6,\n", + " 'reboundsDefensive': 29,\n", + " 'reboundsOffensive': 14,\n", + " 'reboundsPersonal': 43,\n", + " 'reboundsTeam': 10,\n", + " 'reboundsTeamDefensive': 3,\n", + " 'reboundsTeamOffensive': 7,\n", + " 'reboundsTotal': 53,\n", + " 'secondChancePointsAttempted': 11,\n", + " 'secondChancePointsMade': 1,\n", + " 'secondChancePointsPercentage': 0.0909090909090909,\n", + " 'steals': 10,\n", + " 'threePointersAttempted': 46,\n", + " 'threePointersMade': 7,\n", + " 'threePointersPercentage': 0.152173913043478,\n", + " 'timeLeading': 'PT00M00.00S',\n", + " 'timesTied': 1,\n", + " 'trueShootingAttempts': 96.76,\n", + " 'trueShootingPercentage': 0.38755684167011195,\n", + " 'turnovers': 17,\n", + " 'turnoversTeam': 1,\n", + " 'turnoversTotal': 18,\n", + " 'twoPointersAttempted': 38,\n", + " 'twoPointersMade': 18,\n", + " 'twoPointersPercentage': 0.473684210526316}},\n", + " 'awayTeam': {'teamId': 1610612752,\n", + " 'teamName': 'Knicks',\n", + " 'teamCity': 'New York',\n", + " 'teamTricode': 'NYK',\n", + " 'score': 105,\n", + " 'inBonus': '1',\n", + " 'timeoutsRemaining': 2,\n", + " 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28},\n", + " {'period': 2, 'periodType': 'REGULAR', 'score': 20},\n", + " {'period': 3, 'periodType': 'REGULAR', 'score': 27},\n", + " {'period': 4, 'periodType': 'REGULAR', 'score': 30}],\n", + " 'players': [{'status': 'ACTIVE',\n", + " 'order': 1,\n", + " 'personId': 203493,\n", + " 'jerseyNum': '25',\n", + " 'position': 'SF',\n", + " 'starter': '1',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 9,\n", + " 'fieldGoalsMade': 4,\n", + " 'fieldGoalsPercentage': 0.444444444444444,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 2,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 34.0,\n", + " 'minutes': 'PT28M10.00S',\n", + " 'minutesCalculated': 'PT28M',\n", + " 'plus': 70.0,\n", + " 'plusMinusPoints': 36.0,\n", + " 'points': 11,\n", + " 'pointsFastBreak': 3,\n", + " 'pointsInThePaint': 2,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 6,\n", + " 'reboundsOffensive': 1,\n", + " 'reboundsTotal': 7,\n", + " 'steals': 1,\n", + " 'threePointersAttempted': 8,\n", + " 'threePointersMade': 3,\n", + " 'threePointersPercentage': 0.375,\n", + " 'turnovers': 1,\n", + " 'twoPointersAttempted': 1,\n", + " 'twoPointersMade': 1,\n", + " 'twoPointersPercentage': 1.0},\n", + " 'name': 'Reggie Bullock',\n", + " 'nameI': 'R. Bullock',\n", + " 'firstName': 'Reggie',\n", + " 'familyName': 'Bullock'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 2,\n", + " 'personId': 203944,\n", + " 'jerseyNum': '30',\n", + " 'position': 'PF',\n", + " 'starter': '1',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 4,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 14,\n", + " 'fieldGoalsMade': 7,\n", + " 'fieldGoalsPercentage': 0.5,\n", + " 'foulsOffensive': 1,\n", + " 'foulsDrawn': 5,\n", + " 'foulsPersonal': 2,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 5,\n", + " 'freeThrowsMade': 4,\n", + " 'freeThrowsPercentage': 0.8,\n", + " 'minus': 43.0,\n", + " 'minutes': 'PT31M03.00S',\n", + " 'minutesCalculated': 'PT31M',\n", + " 'plus': 72.0,\n", + " 'plusMinusPoints': 29.0,\n", + " 'points': 20,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 8,\n", + " 'pointsSecondChance': 7,\n", + " 'reboundsDefensive': 12,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 12,\n", + " 'steals': 3,\n", + " 'threePointersAttempted': 5,\n", + " 'threePointersMade': 2,\n", + " 'threePointersPercentage': 0.4,\n", + " 'turnovers': 3,\n", + " 'twoPointersAttempted': 9,\n", + " 'twoPointersMade': 5,\n", + " 'twoPointersPercentage': 0.555555555555556},\n", + " 'name': 'Julius Randle',\n", + " 'nameI': 'J. Randle',\n", + " 'firstName': 'Julius',\n", + " 'familyName': 'Randle'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 3,\n", + " 'personId': 1629011,\n", + " 'jerseyNum': '23',\n", + " 'position': 'C',\n", + " 'starter': '1',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 2,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 5,\n", + " 'fieldGoalsMade': 4,\n", + " 'fieldGoalsPercentage': 0.8,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 1,\n", + " 'foulsPersonal': 4,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 30.0,\n", + " 'minutes': 'PT24M12.97S',\n", + " 'minutesCalculated': 'PT24M',\n", + " 'plus': 58.0,\n", + " 'plusMinusPoints': 28.0,\n", + " 'points': 8,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 8,\n", + " 'pointsSecondChance': 4,\n", + " 'reboundsDefensive': 3,\n", + " 'reboundsOffensive': 4,\n", + " 'reboundsTotal': 7,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 1,\n", + " 'twoPointersAttempted': 5,\n", + " 'twoPointersMade': 4,\n", + " 'twoPointersPercentage': 0.8},\n", + " 'name': 'Mitchell Robinson',\n", + " 'nameI': 'M. Robinson',\n", + " 'firstName': 'Mitchell',\n", + " 'familyName': 'Robinson'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 4,\n", + " 'personId': 1629628,\n", + " 'jerseyNum': '9',\n", + " 'position': 'SG',\n", + " 'starter': '1',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 3,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 11,\n", + " 'fieldGoalsMade': 5,\n", + " 'fieldGoalsPercentage': 0.45454545454545503,\n", + " 'foulsOffensive': 1,\n", + " 'foulsDrawn': 6,\n", + " 'foulsPersonal': 3,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 8,\n", + " 'freeThrowsMade': 7,\n", + " 'freeThrowsPercentage': 0.875,\n", + " 'minus': 40.0,\n", + " 'minutes': 'PT29M14.00S',\n", + " 'minutesCalculated': 'PT29M',\n", + " 'plus': 72.0,\n", + " 'plusMinusPoints': 32.0,\n", + " 'points': 19,\n", + " 'pointsFastBreak': 2,\n", + " 'pointsInThePaint': 6,\n", + " 'pointsSecondChance': 6,\n", + " 'reboundsDefensive': 7,\n", + " 'reboundsOffensive': 4,\n", + " 'reboundsTotal': 11,\n", + " 'steals': 2,\n", + " 'threePointersAttempted': 4,\n", + " 'threePointersMade': 2,\n", + " 'threePointersPercentage': 0.5,\n", + " 'turnovers': 4,\n", + " 'twoPointersAttempted': 7,\n", + " 'twoPointersMade': 3,\n", + " 'twoPointersPercentage': 0.428571428571429},\n", + " 'name': 'RJ Barrett',\n", + " 'nameI': 'R. Barrett',\n", + " 'firstName': 'RJ',\n", + " 'familyName': 'Barrett'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 5,\n", + " 'personId': 203901,\n", + " 'jerseyNum': '6',\n", + " 'position': 'PG',\n", + " 'starter': '1',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 3,\n", + " 'blocks': 1,\n", + " 'blocksReceived': 1,\n", + " 'fieldGoalsAttempted': 9,\n", + " 'fieldGoalsMade': 3,\n", + " 'fieldGoalsPercentage': 0.333333333333333,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 2,\n", + " 'foulsPersonal': 2,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 3,\n", + " 'freeThrowsMade': 3,\n", + " 'freeThrowsPercentage': 1.0,\n", + " 'minus': 34.0,\n", + " 'minutes': 'PT23M10.00S',\n", + " 'minutesCalculated': 'PT23M',\n", + " 'plus': 49.0,\n", + " 'plusMinusPoints': 15.0,\n", + " 'points': 9,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 4,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 3,\n", + " 'reboundsOffensive': 1,\n", + " 'reboundsTotal': 4,\n", + " 'steals': 1,\n", + " 'threePointersAttempted': 1,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 2,\n", + " 'twoPointersAttempted': 8,\n", + " 'twoPointersMade': 3,\n", + " 'twoPointersPercentage': 0.375},\n", + " 'name': 'Elfrid Payton',\n", + " 'nameI': 'E. Payton',\n", + " 'firstName': 'Elfrid',\n", + " 'familyName': 'Payton'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 6,\n", + " 'personId': 203457,\n", + " 'jerseyNum': '3',\n", + " 'starter': '0',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 2,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 3,\n", + " 'fieldGoalsMade': 2,\n", + " 'fieldGoalsPercentage': 0.666666666666666,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 3,\n", + " 'foulsPersonal': 4,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 2,\n", + " 'freeThrowsMade': 1,\n", + " 'freeThrowsPercentage': 0.5,\n", + " 'minus': 45.0,\n", + " 'minutes': 'PT23M47.03S',\n", + " 'minutesCalculated': 'PT24M',\n", + " 'plus': 47.0,\n", + " 'plusMinusPoints': 2.0,\n", + " 'points': 5,\n", + " 'pointsFastBreak': 2,\n", + " 'pointsInThePaint': 4,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 4,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 4,\n", + " 'steals': 2,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 3,\n", + " 'twoPointersMade': 2,\n", + " 'twoPointersPercentage': 0.666666666666666},\n", + " 'name': 'Nerlens Noel',\n", + " 'nameI': 'N. Noel',\n", + " 'firstName': 'Nerlens',\n", + " 'familyName': 'Noel'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 7,\n", + " 'personId': 203085,\n", + " 'jerseyNum': '8',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 2,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 3,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 1,\n", + " 'foulsDrawn': 1,\n", + " 'foulsPersonal': 2,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 32.0,\n", + " 'minutes': 'PT16M19.00S',\n", + " 'minutesCalculated': 'PT16M',\n", + " 'plus': 32.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 1,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 1,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 1,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 1,\n", + " 'twoPointersAttempted': 2,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Austin Rivers',\n", + " 'nameI': 'A. Rivers',\n", + " 'firstName': 'Austin',\n", + " 'familyName': 'Rivers'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 8,\n", + " 'personId': 1630193,\n", + " 'jerseyNum': '5',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 8,\n", + " 'blocks': 1,\n", + " 'blocksReceived': 1,\n", + " 'fieldGoalsAttempted': 12,\n", + " 'fieldGoalsMade': 7,\n", + " 'fieldGoalsPercentage': 0.583333333333333,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 2,\n", + " 'foulsPersonal': 4,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 1,\n", + " 'freeThrowsMade': 1,\n", + " 'freeThrowsPercentage': 1.0,\n", + " 'minus': 32.0,\n", + " 'minutes': 'PT21M06.00S',\n", + " 'minutesCalculated': 'PT21M',\n", + " 'plus': 52.0,\n", + " 'plusMinusPoints': 20.0,\n", + " 'points': 17,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 10,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 1,\n", + " 'threePointersAttempted': 4,\n", + " 'threePointersMade': 2,\n", + " 'threePointersPercentage': 0.5,\n", + " 'turnovers': 2,\n", + " 'twoPointersAttempted': 8,\n", + " 'twoPointersMade': 5,\n", + " 'twoPointersPercentage': 0.625},\n", + " 'name': 'Immanuel Quickley',\n", + " 'nameI': 'I. Quickley',\n", + " 'firstName': 'Immanuel',\n", + " 'familyName': 'Quickley'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 9,\n", + " 'personId': 1630167,\n", + " 'jerseyNum': '1',\n", + " 'starter': '0',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 1,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 8,\n", + " 'fieldGoalsMade': 5,\n", + " 'fieldGoalsPercentage': 0.625,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 32.0,\n", + " 'minutes': 'PT16M57.00S',\n", + " 'minutesCalculated': 'PT17M',\n", + " 'plus': 33.0,\n", + " 'plusMinusPoints': 1.0,\n", + " 'points': 12,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 6,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 5,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 5,\n", + " 'steals': 1,\n", + " 'threePointersAttempted': 4,\n", + " 'threePointersMade': 2,\n", + " 'threePointersPercentage': 0.5,\n", + " 'turnovers': 1,\n", + " 'twoPointersAttempted': 4,\n", + " 'twoPointersMade': 3,\n", + " 'twoPointersPercentage': 0.75},\n", + " 'name': 'Obi Toppin',\n", + " 'nameI': 'O. Toppin',\n", + " 'firstName': 'Obi',\n", + " 'familyName': 'Toppin'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 10,\n", + " 'personId': 1628995,\n", + " 'jerseyNum': '20',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 1,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 3,\n", + " 'fieldGoalsMade': 1,\n", + " 'fieldGoalsPercentage': 0.333333333333333,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 1,\n", + " 'foulsPersonal': 3,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 27.0,\n", + " 'minutes': 'PT15M29.00S',\n", + " 'minutesCalculated': 'PT16M',\n", + " 'plus': 30.0,\n", + " 'plusMinusPoints': 3.0,\n", + " 'points': 3,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 2,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 2,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 2,\n", + " 'threePointersMade': 1,\n", + " 'threePointersPercentage': 0.5,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 1,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Kevin Knox II',\n", + " 'nameI': 'K. Knox II',\n", + " 'firstName': 'Kevin',\n", + " 'familyName': 'Knox II'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 11,\n", + " 'personId': 1628372,\n", + " 'jerseyNum': '4',\n", + " 'starter': '0',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 2,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 1,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 2,\n", + " 'freeThrowsMade': 1,\n", + " 'freeThrowsPercentage': 0.5,\n", + " 'minus': 9.0,\n", + " 'minutes': 'PT03M44.00S',\n", + " 'minutesCalculated': 'PT04M',\n", + " 'plus': 4.0,\n", + " 'plusMinusPoints': -5.0,\n", + " 'points': 1,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 1,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 1,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Dennis Smith Jr.',\n", + " 'nameI': 'D. Smith Jr.',\n", + " 'firstName': 'Dennis',\n", + " 'familyName': 'Smith Jr.'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 12,\n", + " 'personId': 1629033,\n", + " 'jerseyNum': '21',\n", + " 'starter': '0',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 1,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 2,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 9.0,\n", + " 'minutes': 'PT03M31.00S',\n", + " 'minutesCalculated': 'PT04M',\n", + " 'plus': 3.0,\n", + " 'plusMinusPoints': -6.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 1,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Theo Pinson',\n", + " 'nameI': 'T. Pinson',\n", + " 'firstName': 'Theo',\n", + " 'familyName': 'Pinson'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 13,\n", + " 'personId': 1629649,\n", + " 'jerseyNum': '17',\n", + " 'starter': '0',\n", + " 'oncourt': '1',\n", + " 'played': '1',\n", + " 'statistics': {'assists': 1,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 8.0,\n", + " 'minutes': 'PT03M17.00S',\n", + " 'minutesCalculated': 'PT03M',\n", + " 'plus': 3.0,\n", + " 'plusMinusPoints': -5.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 1,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Ignas Brazdeikis',\n", + " 'nameI': 'I. Brazdeikis',\n", + " 'firstName': 'Ignas',\n", + " 'familyName': 'Brazdeikis'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 14,\n", + " 'personId': 201959,\n", + " 'jerseyNum': '67',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '0',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 0.0,\n", + " 'minutes': 'PT00M00.00S',\n", + " 'minutesCalculated': 'PT00M',\n", + " 'plus': 0.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Taj Gibson',\n", + " 'nameI': 'T. Gibson',\n", + " 'firstName': 'Taj',\n", + " 'familyName': 'Gibson'},\n", + " {'status': 'ACTIVE',\n", + " 'order': 15,\n", + " 'personId': 1629607,\n", + " 'jerseyNum': '0',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '0',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 0.0,\n", + " 'minutes': 'PT00M00.00S',\n", + " 'minutesCalculated': 'PT00M',\n", + " 'plus': 0.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Jared Harper',\n", + " 'nameI': 'J. Harper',\n", + " 'firstName': 'Jared',\n", + " 'familyName': 'Harper'},\n", + " {'status': 'INACTIVE',\n", + " 'notPlayingReason': 'INACTIVE_INJURY',\n", + " 'notPlayingDescription': 'Left Ankle; sprained',\n", + " 'order': 16,\n", + " 'personId': 202692,\n", + " 'jerseyNum': '18',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '0',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 0.0,\n", + " 'minutes': 'PT00M00.00S',\n", + " 'minutesCalculated': 'PT00M',\n", + " 'plus': 0.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Alec Burks',\n", + " 'nameI': 'A. Burks',\n", + " 'firstName': 'Alec',\n", + " 'familyName': 'Burks'},\n", + " {'status': 'INACTIVE',\n", + " 'notPlayingReason': 'INACTIVE_INJURY',\n", + " 'notPlayingDescription': 'Right Knee; sprained',\n", + " 'order': 17,\n", + " 'personId': 1628373,\n", + " 'jerseyNum': '11',\n", + " 'starter': '0',\n", + " 'oncourt': '0',\n", + " 'played': '0',\n", + " 'statistics': {'assists': 0,\n", + " 'blocks': 0,\n", + " 'blocksReceived': 0,\n", + " 'fieldGoalsAttempted': 0,\n", + " 'fieldGoalsMade': 0,\n", + " 'fieldGoalsPercentage': 0.0,\n", + " 'foulsOffensive': 0,\n", + " 'foulsDrawn': 0,\n", + " 'foulsPersonal': 0,\n", + " 'foulsTechnical': 0,\n", + " 'freeThrowsAttempted': 0,\n", + " 'freeThrowsMade': 0,\n", + " 'freeThrowsPercentage': 0.0,\n", + " 'minus': 0.0,\n", + " 'minutes': 'PT00M00.00S',\n", + " 'minutesCalculated': 'PT00M',\n", + " 'plus': 0.0,\n", + " 'plusMinusPoints': 0.0,\n", + " 'points': 0,\n", + " 'pointsFastBreak': 0,\n", + " 'pointsInThePaint': 0,\n", + " 'pointsSecondChance': 0,\n", + " 'reboundsDefensive': 0,\n", + " 'reboundsOffensive': 0,\n", + " 'reboundsTotal': 0,\n", + " 'steals': 0,\n", + " 'threePointersAttempted': 0,\n", + " 'threePointersMade': 0,\n", + " 'threePointersPercentage': 0.0,\n", + " 'turnovers': 0,\n", + " 'twoPointersAttempted': 0,\n", + " 'twoPointersMade': 0,\n", + " 'twoPointersPercentage': 0.0},\n", + " 'name': 'Frank Ntilikina',\n", + " 'nameI': 'F. Ntilikina',\n", + " 'firstName': 'Frank',\n", + " 'familyName': 'Ntilikina'}],\n", + " 'statistics': {'assists': 22,\n", + " 'assistsTurnoverRatio': 1.29411764705882,\n", + " 'benchPoints': 38,\n", + " 'biggestLead': 37,\n", + " 'biggestLeadScore': '101-64',\n", + " 'biggestScoringRun': 12,\n", + " 'biggestScoringRunScore': '101-64',\n", + " 'blocks': 7,\n", + " 'blocksReceived': 2,\n", + " 'fastBreakPointsAttempted': 3,\n", + " 'fastBreakPointsMade': 2,\n", + " 'fastBreakPointsPercentage': 0.666666666666666,\n", + " 'fieldGoalsAttempted': 80,\n", + " 'fieldGoalsEffectiveAdjusted': 0.55,\n", + " 'fieldGoalsMade': 38,\n", + " 'fieldGoalsPercentage': 0.475,\n", + " 'foulsOffensive': 3,\n", + " 'foulsDrawn': 22,\n", + " 'foulsPersonal': 28,\n", + " 'foulsTeam': 25,\n", + " 'foulsTechnical': 0,\n", + " 'foulsTeamTechnical': 0,\n", + " 'freeThrowsAttempted': 21,\n", + " 'freeThrowsMade': 17,\n", + " 'freeThrowsPercentage': 0.8095238095238101,\n", + " 'leadChanges': 0,\n", + " 'minutes': 'PT240M00.00S',\n", + " 'minutesCalculated': 'PT240M',\n", + " 'points': 105,\n", + " 'pointsAgainst': 75,\n", + " 'pointsFastBreak': 7,\n", + " 'pointsFromTurnovers': 22,\n", + " 'pointsInThePaint': 48,\n", + " 'pointsInThePaintAttempted': 41,\n", + " 'pointsInThePaintMade': 24,\n", + " 'pointsInThePaintPercentage': 0.585365853658536,\n", + " 'pointsSecondChance': 17,\n", + " 'reboundsDefensive': 43,\n", + " 'reboundsOffensive': 10,\n", + " 'reboundsPersonal': 53,\n", + " 'reboundsTeam': 10,\n", + " 'reboundsTeamDefensive': 6,\n", + " 'reboundsTeamOffensive': 4,\n", + " 'reboundsTotal': 63,\n", + " 'secondChancePointsAttempted': 7,\n", + " 'secondChancePointsMade': 5,\n", + " 'secondChancePointsPercentage': 0.714285714285714,\n", + " 'steals': 11,\n", + " 'threePointersAttempted': 31,\n", + " 'threePointersMade': 12,\n", + " 'threePointersPercentage': 0.387096774193548,\n", + " 'timeLeading': 'PT46M30.00S',\n", + " 'timesTied': 1,\n", + " 'trueShootingAttempts': 89.24,\n", + " 'trueShootingPercentage': 0.588301210219632,\n", + " 'turnovers': 16,\n", + " 'turnoversTeam': 1,\n", + " 'turnoversTotal': 17,\n", + " 'twoPointersAttempted': 49,\n", + " 'twoPointersMade': 26,\n", + " 'twoPointersPercentage': 0.530612244897959}}}" ] }, - "execution_count": 6, + "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "#Officials\n", - "box.officials.get_dict()" + "# Data Sets\n", + "box.game.get_dict() #equal to box.get_dict()['game']\n", + "#box.arena.get_dict() #equal to box.get_dict()['game']['arena']\n", + "#box.away_team.get_dict() #equal to box.get_dict()['game']['awayTeam']\n", + "#box.away_team_player_stats.get_dict() #equal to box.get_dict()['game']['awayTeam']['players']\n", + "#box.away_team_stats.get_dict() #equal to box.get_dict()['game']['homeTeam'] w/o ['players']\n", + "#box.home_team.get_dict() #equal to box.get_dict()['game']['homeTeam']\n", + "#box.home_team_player_stats.get_dict() #equal to box.get_dict()['game']['homeTeam']['players']\n", + "#box.home_team_stats.get_dict() #equal to box.get_dict()['game']['homeTeam'] w/o ['players']\n", + "#box.game_details.get_dict() #equal to box.get_dict()['game'] scrubbed of all other dictionaries\n", + "#box.officials.get_dict() #equal to box.get_dict()['game']['officials']" ] }, { @@ -201,7 +1833,8 @@ } ], "source": [ - "#homeTeam & #awayTeam have the identicial data structure.\n", + "# Getting Box Scores. \n", + "# Note: home_team & away_team have the identicial data structure.\n", "players = box.away_team.get_dict()['players']\n", "f = \"{player_id}: {name}: {points} PTS\"\n", "for player in players:\n", @@ -209,103 +1842,15 @@ ] }, { - "cell_type": "code", - "execution_count": 2, + "cell_type": "markdown", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{'teamId': 1610612752,\n", - " 'teamName': 'Knicks',\n", - " 'teamCity': 'New York',\n", - " 'teamTricode': 'NYK',\n", - " 'score': 105,\n", - " 'inBonus': '1',\n", - " 'timeoutsRemaining': 2,\n", - " 'periods': [{'period': 1, 'periodType': 'REGULAR', 'score': 28},\n", - " {'period': 2, 'periodType': 'REGULAR', 'score': 20},\n", - " {'period': 3, 'periodType': 'REGULAR', 'score': 27},\n", - " {'period': 4, 'periodType': 'REGULAR', 'score': 30}],\n", - " 'statistics': {'assists': 22,\n", - " 'assistsTurnoverRatio': 1.29411764705882,\n", - " 'benchPoints': 38,\n", - " 'biggestLead': 37,\n", - " 'biggestLeadScore': '101-64',\n", - " 'biggestScoringRun': 12,\n", - " 'biggestScoringRunScore': '101-64',\n", - " 'blocks': 7,\n", - " 'blocksReceived': 2,\n", - " 'fastBreakPointsAttempted': 3,\n", - " 'fastBreakPointsMade': 2,\n", - " 'fastBreakPointsPercentage': 0.666666666666666,\n", - " 'fieldGoalsAttempted': 80,\n", - " 'fieldGoalsEffectiveAdjusted': 0.55,\n", - " 'fieldGoalsMade': 38,\n", - " 'fieldGoalsPercentage': 0.475,\n", - " 'foulsOffensive': 3,\n", - " 'foulsDrawn': 22,\n", - " 'foulsPersonal': 28,\n", - " 'foulsTeam': 25,\n", - " 'foulsTechnical': 0,\n", - " 'foulsTeamTechnical': 0,\n", - " 'freeThrowsAttempted': 21,\n", - " 'freeThrowsMade': 17,\n", - " 'freeThrowsPercentage': 0.8095238095238101,\n", - " 'leadChanges': 0,\n", - " 'minutes': 'PT240M00.00S',\n", - " 'minutesCalculated': 'PT240M',\n", - " 'points': 105,\n", - " 'pointsAgainst': 75,\n", - " 'pointsFastBreak': 7,\n", - " 'pointsFromTurnovers': 22,\n", - " 'pointsInThePaint': 48,\n", - " 'pointsInThePaintAttempted': 41,\n", - " 'pointsInThePaintMade': 24,\n", - " 'pointsInThePaintPercentage': 0.585365853658536,\n", - " 'pointsSecondChance': 17,\n", - " 'reboundsDefensive': 43,\n", - " 'reboundsOffensive': 10,\n", - " 'reboundsPersonal': 53,\n", - " 'reboundsTeam': 10,\n", - " 'reboundsTeamDefensive': 6,\n", - " 'reboundsTeamOffensive': 4,\n", - " 'reboundsTotal': 63,\n", - " 'secondChancePointsAttempted': 7,\n", - " 'secondChancePointsMade': 5,\n", - " 'secondChancePointsPercentage': 0.714285714285714,\n", - " 'steals': 11,\n", - " 'threePointersAttempted': 31,\n", - " 'threePointersMade': 12,\n", - " 'threePointersPercentage': 0.387096774193548,\n", - " 'timeLeading': 'PT46M30.00S',\n", - " 'timesTied': 1,\n", - " 'trueShootingAttempts': 89.24,\n", - " 'trueShootingPercentage': 0.588301210219632,\n", - " 'turnovers': 16,\n", - " 'turnoversTeam': 1,\n", - " 'turnoversTotal': 17,\n", - " 'twoPointersAttempted': 49,\n", - " 'twoPointersMade': 26,\n", - " 'twoPointersPercentage': 0.530612244897959}}" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], "source": [ - "# Get BoxScore\n", - "from nba_api.live.nba.endpoints import boxscore\n", - "box = boxscore.BoxScore('0022000196') \n", - "box.home_team_stats.get_dict()\n", - "box.away_team_stats.get_dict()" + "## Play By Play Data" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 50, "metadata": { "scrolled": true }, @@ -314,53 +1859,633 @@ "name": "stdout", "output_type": "stream", "text": [ - "{\"meta\": {\"version\": 1, \"code\": 200, \"request\": \"http://nba.cloud/games/0022000180/playbyplay?Format=json\", \"time\": \"2021-01-15 23:48:58.906160\"}, \"game\": {\"gameId\": \"0022000180\", \"actions\": [{\"actionNumber\": 2, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T00:40:29.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"start\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 0, \"scoreHome\": \"0\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:40:29Z\", \"orderNumber\": 20000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period Start\", \"personIdsFilter\": []}, {\"actionNumber\": 4, \"clock\": \"PT11M58.00S\", \"timeActual\": \"2021-01-16T00:40:31.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"startperiod\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"0\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:40:31Z\", \"orderNumber\": 40000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"G. Williams\", \"jumpBallRecoverdPersonId\": 1629684, \"side\": null, \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684, 202684, 202696], \"jumpBallWonPlayerName\": \"Thompson\", \"jumpBallWonPersonId\": 202684, \"description\": \"Jump Ball T. Thompson vs. N. Vucevic: Tip to G. Williams\", \"jumpBallLostPlayerName\": \"Vucevic\", \"jumpBallLostPersonId\": 202696}, {\"actionNumber\": 7, \"clock\": \"PT11M46.00S\", \"timeActual\": \"2021-01-16T00:40:43.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 201952, \"x\": 12.828515111695138, \"y\": 3.7454044117647056, \"side\": \"left\", \"shotDistance\": 24.11, \"possession\": 1610612738, \"scoreHome\": \"3\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:40:50Z\", \"orderNumber\": 70000, \"xLegacy\": 231, \"yLegacy\": 68, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"J. Teague 24' 3PT (3 PTS) (J. Brown 1 AST)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 1}, {\"actionNumber\": 9, \"clock\": \"PT11M18.00S\", \"timeActual\": \"2021-01-16T00:41:13.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"shot clock\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:41:23Z\", \"officialId\": 202041, \"orderNumber\": 90000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"ORL shot clock Team TURNOVER\", \"personIdsFilter\": []}, {\"actionNumber\": 10, \"clock\": \"PT11M05.00S\", \"timeActual\": \"2021-01-16T00:41:39.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1627759, \"x\": 21.02496714848883, \"y\": 71.1703431372549, \"side\": \"left\", \"shotDistance\": 17.96, \"possession\": 1610612738, \"scoreHome\": \"3\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:41:46Z\", \"orderNumber\": 100000, \"xLegacy\": -106, \"yLegacy\": 145, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 17' pullup Shot\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 11, \"clock\": \"PT11M03.00S\", \"timeActual\": \"2021-01-16T00:41:41.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"0\", \"edited\": \"2021-01-16T00:41:46Z\", \"orderNumber\": 110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 10, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:1)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 12, \"clock\": \"PT10M53.00S\", \"timeActual\": \"2021-01-16T00:41:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"turnaround\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202696, \"x\": 80.81471747700394, \"y\": 37.31234681372549, \"side\": \"right\", \"shotDistance\": 14.27, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"2\", \"edited\": \"2021-01-16T00:42:00Z\", \"orderNumber\": 120000, \"xLegacy\": -63, \"yLegacy\": 128, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"N. Vucevic 14' turnaround Hook (2 PTS) (A. Gordon 1 AST)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 203932], \"assistPlayerNameInitial\": \"A. Gordon\", \"assistPersonId\": 203932, \"assistTotal\": 1}, {\"actionNumber\": 14, \"clock\": \"PT10M39.00S\", \"timeActual\": \"2021-01-16T00:42:05.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 201952, \"x\": 22.28975032851511, \"y\": 87.32383578431373, \"side\": \"left\", \"shotDistance\": 24.39, \"possession\": 1610612738, \"scoreHome\": \"3\", \"scoreAway\": \"2\", \"edited\": \"2021-01-16T00:42:13Z\", \"orderNumber\": 140000, \"xLegacy\": -187, \"yLegacy\": 157, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague 24' 3PT\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 15, \"clock\": \"PT10M36.00S\", \"timeActual\": \"2021-01-16T00:42:08.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"2\", \"edited\": \"2021-01-16T00:42:13Z\", \"orderNumber\": 150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 14, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"D. Bacon REBOUND (Off:0 Def:1)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 16, \"clock\": \"PT10M29.00S\", \"timeActual\": \"2021-01-16T00:42:15.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628407, \"x\": 92.9862023653088, \"y\": 46.14736519607843, \"side\": \"right\", \"shotDistance\": 2.35, \"possession\": 1610612753, \"scoreHome\": \"3\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:42:20Z\", \"orderNumber\": 160000, \"xLegacy\": -19, \"yLegacy\": 13, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"D. Bacon driving Layup (2 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 17, \"clock\": \"PT10M14.00S\", \"timeActual\": \"2021-01-16T00:42:30.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 8.409986859395532, \"y\": 47.518382352941174, \"side\": \"left\", \"shotDistance\": 2.93, \"possession\": 1610612738, \"scoreHome\": \"5\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:42:40Z\", \"orderNumber\": 170000, \"xLegacy\": 12, \"yLegacy\": 27, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"J. Teague driving finger roll Layup (5 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 18, \"clock\": \"PT09M48.00S\", \"timeActual\": \"2021-01-16T00:42:56.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 202696, \"x\": 69.72733245729303, \"y\": 17.96109068627451, \"side\": \"right\", \"shotDistance\": 28.2, \"possession\": 1610612753, \"scoreHome\": \"5\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:43:02Z\", \"orderNumber\": 180000, \"xLegacy\": -160, \"yLegacy\": 232, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 28' 3PT\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 19, \"clock\": \"PT09M45.00S\", \"timeActual\": \"2021-01-16T00:42:59.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"5\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:43:02Z\", \"orderNumber\": 190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 18, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"M. Smart REBOUND (Off:0 Def:1)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 20, \"clock\": \"PT09M26.00S\", \"timeActual\": \"2021-01-16T00:43:18.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202684, \"x\": 19.44809461235217, \"y\": 35.84175857843137, \"side\": \"left\", \"shotDistance\": 14.83, \"possession\": 1610612738, \"scoreHome\": \"7\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:43:26Z\", \"orderNumber\": 200000, \"xLegacy\": 71, \"yLegacy\": 130, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"T. Thompson 14' driving Hook (2 PTS)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 21, \"clock\": \"PT09M13.00S\", \"timeActual\": \"2021-01-16T00:43:37.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"7\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:44:02Z\", \"officialId\": 201638, \"orderNumber\": 210000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"N. Vucevic offensive FOUL (1 PF)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 23, \"clock\": \"PT09M13.00S\", \"timeActual\": \"2021-01-16T00:43:37.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"offensive foul\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"7\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:43:55Z\", \"officialId\": 201638, \"orderNumber\": 230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"N. Vucevic offensive foul TURNOVER (1 TO)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 24, \"clock\": \"PT08M59.00S\", \"timeActual\": \"2021-01-16T00:44:02.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1627759, \"x\": 21.369908015768726, \"y\": 47.372855392156865, \"side\": \"left\", \"shotDistance\": 14.9, \"possession\": 1610612738, \"scoreHome\": \"9\", \"scoreAway\": \"4\", \"edited\": \"2021-01-16T00:44:09Z\", \"orderNumber\": 240000, \"xLegacy\": 13, \"yLegacy\": 148, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"J. Brown 14' pullup Jump Shot (2 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 25, \"clock\": \"PT08M38.00S\", \"timeActual\": \"2021-01-16T00:44:23.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 89.83245729303549, \"y\": 49.333639705882355, \"side\": \"right\", \"shotDistance\": 4.32, \"possession\": 1610612753, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:44:27Z\", \"orderNumber\": 250000, \"xLegacy\": -3, \"yLegacy\": 43, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"C. Anthony driving Layup (2 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 26, \"clock\": \"PT08M20.00S\", \"timeActual\": \"2021-01-16T00:44:42.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"fadeaway\", \"qualifiers\": [], \"personId\": 203935, \"x\": 15.850854139290407, \"y\": 32.91207107843137, \"side\": \"left\", \"shotDistance\": 12.89, \"possession\": 1610612738, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:44:57Z\", \"orderNumber\": 260000, \"xLegacy\": 85, \"yLegacy\": 96, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 12' fadeaway Shot\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 27, \"clock\": \"PT08M17.00S\", \"timeActual\": \"2021-01-16T00:44:45.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:44:57Z\", \"orderNumber\": 270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 26, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 28, \"clock\": \"PT08M17.00S\", \"timeActual\": \"2021-01-16T00:44:50.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:44:50Z\", \"orderNumber\": 280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 29, \"clock\": \"PT08M07.00S\", \"timeActual\": \"2021-01-16T00:45:05.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:15Z\", \"orderNumber\": 290000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"C. Anthony bad pass TURNOVER (1 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 202684], \"stealPlayerName\": \"Thompson\", \"stealPersonId\": 202684}, {\"actionNumber\": 30, \"clock\": \"PT08M07.00S\", \"timeActual\": \"2021-01-16T00:45:05.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"9\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:07Z\", \"orderNumber\": 300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"T. Thompson STEAL (1 STL)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 31, \"clock\": \"PT08M00.00S\", \"timeActual\": \"2021-01-16T00:45:13.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"fromturnover\"], \"personId\": 203935, \"x\": 12.828515111695138, \"y\": 33.64736519607843, \"side\": \"left\", \"shotDistance\": 10.64, \"possession\": 1610612738, \"scoreHome\": \"11\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:20Z\", \"orderNumber\": 310000, \"xLegacy\": 82, \"yLegacy\": 68, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"M. Smart 10' pullup Jump Shot (2 PTS)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 32, \"clock\": \"PT07M44.00S\", \"timeActual\": \"2021-01-16T00:45:28.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"11\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:47:21Z\", \"orderNumber\": 320000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"C. Anthony bad pass TURNOVER (2 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1627759], \"stealPlayerName\": \"Brown\", \"stealPersonId\": 1627759}, {\"actionNumber\": 33, \"clock\": \"PT07M44.00S\", \"timeActual\": \"2021-01-16T00:45:28.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"11\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:30Z\", \"orderNumber\": 330000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Brown STEAL (1 STL)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 34, \"clock\": \"PT07M43.00S\", \"timeActual\": \"2021-01-16T00:45:31.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 1627759, \"x\": 5.601182654402102, \"y\": 48.59834558823529, \"side\": \"left\", \"shotDistance\": 0.7, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:42Z\", \"orderNumber\": 340000, \"xLegacy\": 7, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"J. Brown running DUNK (4 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 35, \"clock\": \"PT07M43.00S\", \"timeActual\": \"2021-01-16T00:45:38.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"6\", \"edited\": \"2021-01-16T00:45:38Z\", \"orderNumber\": 350000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 36, \"clock\": \"PT07M22.00S\", \"timeActual\": \"2021-01-16T00:48:46.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630175, \"x\": 64.60249671484888, \"y\": 36.09834558823529, \"side\": \"right\", \"shotDistance\": 28.87, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:48:50Z\", \"orderNumber\": 360000, \"xLegacy\": -70, \"yLegacy\": 280, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"C. Anthony 28' 3PT (5 PTS) (N. Vucevic 1 AST)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 202696], \"assistPlayerNameInitial\": \"N. Vucevic\", \"assistPersonId\": 202696, \"assistTotal\": 1}, {\"actionNumber\": 38, \"clock\": \"PT07M03.00S\", \"timeActual\": \"2021-01-16T00:49:03.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 29.122864651773984, \"y\": 73.84344362745098, \"side\": \"left\", \"shotDistance\": 25.14, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:49:13Z\", \"orderNumber\": 380000, \"xLegacy\": -119, \"yLegacy\": 221, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 25' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 39, \"clock\": \"PT07M02.00S\", \"timeActual\": \"2021-01-16T00:49:04.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:49:13Z\", \"orderNumber\": 390000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 38, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"D. Bacon REBOUND (Off:0 Def:2)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 40, \"clock\": \"PT06M55.00S\", \"timeActual\": \"2021-01-16T00:49:12.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628407, \"x\": 88.25558475689881, \"y\": 36.09834558823529, \"side\": \"right\", \"shotDistance\": 9.05, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:51:08Z\", \"orderNumber\": 400000, \"xLegacy\": -70, \"yLegacy\": 58, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 9' driving floating Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 41, \"clock\": \"PT06M55.00S\", \"timeActual\": \"2021-01-16T00:49:12.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"9\", \"edited\": \"2021-01-16T00:49:28Z\", \"orderNumber\": 410000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 40, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 1, \"description\": \"D. Bacon REBOUND (Off:1 Def:2)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 42, \"clock\": \"PT06M47.00S\", \"timeActual\": \"2021-01-16T00:49:19.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628407, \"x\": 94.40999984741211, \"y\": 50.0, \"side\": \"right\", \"shotDistance\": 0.0, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:49:19Z\", \"orderNumber\": 420000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"D. Bacon tip Layup (4 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 43, \"clock\": \"PT06M38.00S\", \"timeActual\": \"2021-01-16T00:49:29.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629684, \"x\": 6.652431011826544, \"y\": 46.14736519607843, \"side\": \"left\", \"shotDistance\": 2.17, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:49:46Z\", \"orderNumber\": 430000, \"xLegacy\": 19, \"yLegacy\": 10, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Williams driving Layup\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 44, \"clock\": \"PT06M31.00S\", \"timeActual\": \"2021-01-16T00:49:36.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:51:08Z\", \"orderNumber\": 440000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 43, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:0)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 45, \"clock\": \"PT06M31.00S\", \"timeActual\": \"2021-01-16T00:49:35.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"2ndchance\", \"pointsinthepaint\"], \"personId\": 202684, \"x\": 5.590000152587891, \"y\": 50.0, \"side\": \"left\", \"shotDistance\": 0.0, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:51Z\", \"orderNumber\": 450000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Thompson tip Layup\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 46, \"clock\": \"PT06M30.00S\", \"timeActual\": \"2021-01-16T00:49:36.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:51Z\", \"orderNumber\": 460000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 45, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"N. Vucevic REBOUND (Off:0 Def:1)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 47, \"clock\": \"PT06M26.00S\", \"timeActual\": \"2021-01-16T00:49:41.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"fastbreak\"], \"personId\": 1628407, \"x\": 92.32917214191852, \"y\": 54.970894607843135, \"side\": \"right\", \"shotDistance\": 3.17, \"possession\": 1610612753, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:49:52Z\", \"orderNumber\": 470000, \"xLegacy\": 25, \"yLegacy\": 20, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon driving finger roll Layup\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 48, \"clock\": \"PT06M22.00S\", \"timeActual\": \"2021-01-16T00:49:44.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"13\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:49:44Z\", \"orderNumber\": 480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 47, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:1)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 49, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:49:53.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1627759, \"x\": 13.091327201051248, \"y\": 54.23560049019608, \"side\": \"left\", \"shotDistance\": 7.37, \"possession\": 1610612738, \"scoreHome\": \"15\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:08Z\", \"orderNumber\": 490000, \"xLegacy\": -21, \"yLegacy\": 71, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"J. Brown 7' driving Layup (6 PTS) (J. Teague 1 AST)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759, 201952], \"assistPlayerNameInitial\": \"J. Teague\", \"assistPersonId\": 201952, \"assistTotal\": 1}, {\"actionNumber\": 50, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:49:59.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 203516, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"15\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:26Z\", \"officialId\": 1627541, \"orderNumber\": 500000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"J. Ennis III shooting personal FOUL (1 PF) (Brown 1 FT)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516, 1627759], \"foulDrawnPlayerName\": \"Brown\", \"foulDrawnPersonId\": 1627759}, {\"actionNumber\": 52, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:50:10.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"15\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:51Z\", \"orderNumber\": 520000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 53, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:50:10.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"15\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:51Z\", \"orderNumber\": 530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 54, \"clock\": \"PT06M20.00S\", \"timeActual\": \"2021-01-16T00:50:29.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"16\", \"scoreAway\": \"11\", \"edited\": \"2021-01-16T00:50:29Z\", \"orderNumber\": 540000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"J. Brown Free Throw 1 of 1 (7 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 56, \"clock\": \"PT06M01.00S\", \"timeActual\": \"2021-01-16T00:50:50.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 91.14651773981603, \"y\": 50.314031862745104, \"side\": \"right\", \"shotDistance\": 3.07, \"possession\": 1610612753, \"scoreHome\": \"16\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:50:55Z\", \"orderNumber\": 550000, \"xLegacy\": 2, \"yLegacy\": 31, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"C. Anthony cutting DUNK (7 PTS) (N. Vucevic 2 AST)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 202696], \"assistPlayerNameInitial\": \"N. Vucevic\", \"assistPersonId\": 202696, \"assistTotal\": 2}, {\"actionNumber\": 58, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:01.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"3freethrow\"], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"16\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:21Z\", \"officialId\": 1627541, \"orderNumber\": 570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"C. Anthony shooting personal FOUL (1 PF) (Teague 3 FT)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 60, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:24.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 3\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"17\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:24Z\", \"orderNumber\": 590000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"J. Teague Free Throw 1 of 3 (6 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 61, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:35.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 3\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"18\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:35Z\", \"orderNumber\": 600000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"J. Teague Free Throw 2 of 3 (7 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 62, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:36.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"18\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:40Z\", \"orderNumber\": 610000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 63, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:36.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"18\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:40Z\", \"orderNumber\": 620000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 64, \"clock\": \"PT05M51.00S\", \"timeActual\": \"2021-01-16T00:51:55.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"3 of 3\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"19\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:51:55Z\", \"orderNumber\": 630000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"J. Teague Free Throw 3 of 3 (8 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 65, \"clock\": \"PT05M39.00S\", \"timeActual\": \"2021-01-16T00:52:09.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203516, \"x\": 64.86530880420499, \"y\": 52.029718137254896, \"side\": \"right\", \"shotDistance\": 27.8, \"possession\": 1610612753, \"scoreHome\": \"19\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:52:29Z\", \"orderNumber\": 640000, \"xLegacy\": 10, \"yLegacy\": 278, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Ennis III 27' pullup 3PT\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 66, \"clock\": \"PT05M36.00S\", \"timeActual\": \"2021-01-16T00:52:12.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"19\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:52:19Z\", \"orderNumber\": 650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 65, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 67, \"clock\": \"PT05M36.00S\", \"timeActual\": \"2021-01-16T00:52:15.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"19\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:52:15Z\", \"orderNumber\": 660000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 68, \"clock\": \"PT05M22.00S\", \"timeActual\": \"2021-01-16T00:52:36.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 25.57490144546649, \"y\": 83.89246323529412, \"side\": \"left\", \"shotDistance\": 25.31, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"13\", \"edited\": \"2021-01-16T00:52:41Z\", \"orderNumber\": 670000, \"xLegacy\": -169, \"yLegacy\": 188, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"M. Smart 25' 3PT (5 PTS) (J. Brown 2 AST)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 2}, {\"actionNumber\": 70, \"clock\": \"PT05M07.00S\", \"timeActual\": \"2021-01-16T00:52:50.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 202696, \"x\": 64.07687253613666, \"y\": 51.294424019607845, \"side\": \"right\", \"shotDistance\": 28.53, \"possession\": 1610612753, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:52:54Z\", \"orderNumber\": 690000, \"xLegacy\": 6, \"yLegacy\": 285, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"N. Vucevic 28' 3PT (5 PTS) (C. Anthony 1 AST)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 1630175], \"assistPlayerNameInitial\": \"C. Anthony\", \"assistPersonId\": 1630175, \"assistTotal\": 1}, {\"actionNumber\": 72, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:17.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:17Z\", \"orderNumber\": 710000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 73, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 74, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 75, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203516, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 740000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Ennis III\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 76, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 77, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 760000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: S. Ojeleye\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 78, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T00:53:19.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"22\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:29Z\", \"orderNumber\": 770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 79, \"clock\": \"PT04M39.00S\", \"timeActual\": \"2021-01-16T00:53:42.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 30.31373193166886, \"y\": 73.86642156862744, \"side\": \"left\", \"shotDistance\": 26.12, \"possession\": 1610612738, \"scoreHome\": \"25\", \"scoreAway\": \"16\", \"edited\": \"2021-01-16T00:53:48Z\", \"orderNumber\": 780000, \"xLegacy\": -119, \"yLegacy\": 232, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"M. Smart 26' 3PT (8 PTS) (J. Brown 3 AST)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 3}, {\"actionNumber\": 81, \"clock\": \"PT04M25.00S\", \"timeActual\": \"2021-01-16T00:53:56.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 91.5407358738502, \"y\": 50.55912990196079, \"side\": \"right\", \"shotDistance\": 2.71, \"possession\": 1610612753, \"scoreHome\": \"25\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:00Z\", \"orderNumber\": 800000, \"xLegacy\": 3, \"yLegacy\": 27, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"C. Anthony driving Layup (9 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 82, \"clock\": \"PT04M09.00S\", \"timeActual\": \"2021-01-16T00:54:12.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 4.28712220762155, \"y\": 96.6375612745098, \"side\": \"left\", \"shotDistance\": 23.35, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:17Z\", \"orderNumber\": 810000, \"xLegacy\": -233, \"yLegacy\": -12, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"S. Ojeleye 3PT (3 PTS) (J. Brown 4 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 4}, {\"actionNumber\": 84, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:26.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:34Z\", \"officialId\": 1627541, \"orderNumber\": 830000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"P. Pritchard personal FOUL (1 PF)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 1630175], \"foulDrawnPlayerName\": \"Anthony\", \"foulDrawnPersonId\": 1630175}, {\"actionNumber\": 86, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:39Z\", \"orderNumber\": 850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: N. Vucevic\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 87, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:39Z\", \"orderNumber\": 860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: C. Anthony\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 88, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:39Z\", \"orderNumber\": 870000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: G. Clark\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 89, \"clock\": \"PT03M59.00S\", \"timeActual\": \"2021-01-16T00:54:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:54:39Z\", \"orderNumber\": 880000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Bone\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 90, \"clock\": \"PT03M50.00S\", \"timeActual\": \"2021-01-16T00:54:56.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 86.28449408672799, \"y\": 85.60814950980392, \"side\": \"right\", \"shotDistance\": 19.37, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:03Z\", \"orderNumber\": 890000, \"xLegacy\": 178, \"yLegacy\": 76, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Bone 19' Jump Shot\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 91, \"clock\": \"PT03M46.00S\", \"timeActual\": \"2021-01-16T00:55:00.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:03Z\", \"orderNumber\": 900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 90, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 2, \"description\": \"D. Bacon REBOUND (Off:2 Def:2)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 92, \"clock\": \"PT03M41.00S\", \"timeActual\": \"2021-01-16T00:55:04.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"2ndchance\"], \"personId\": 203082, \"x\": 72.27332457293035, \"y\": 58.69332107843137, \"side\": \"right\", \"shotDistance\": 21.26, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:12Z\", \"orderNumber\": 910000, \"xLegacy\": 43, \"yLegacy\": 208, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 21' pullup Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 93, \"clock\": \"PT03M38.00S\", \"timeActual\": \"2021-01-16T00:55:07.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:12Z\", \"orderNumber\": 920000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 92, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"P. Pritchard REBOUND (Off:0 Def:1)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 94, \"clock\": \"PT03M28.00S\", \"timeActual\": \"2021-01-16T00:55:17.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 27.414586070959263, \"y\": 81.44148284313727, \"side\": \"left\", \"shotDistance\": 25.85, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:23Z\", \"orderNumber\": 930000, \"xLegacy\": -157, \"yLegacy\": 205, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 25' 3PT\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 95, \"clock\": \"PT03M25.00S\", \"timeActual\": \"2021-01-16T00:55:20.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:23Z\", \"orderNumber\": 940000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 94, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:1)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 96, \"clock\": \"PT03M20.00S\", \"timeActual\": \"2021-01-16T00:55:25.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1629109, \"x\": 90.93298291721419, \"y\": 4.5036764705882355, \"side\": \"right\", \"shotDistance\": 22.98, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:55:44Z\", \"orderNumber\": 950000, \"xLegacy\": -227, \"yLegacy\": 33, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Clark 3PT\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 97, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T00:55:28.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"18\", \"edited\": \"2021-01-16T00:56:22Z\", \"orderNumber\": 960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 96, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"K. Birch REBOUND (Off:1 Def:0)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 98, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T00:55:30.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"putback\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 203920, \"x\": 91.93495400788436, \"y\": 47.86305147058824, \"side\": \"right\", \"shotDistance\": 2.56, \"possession\": 1610612753, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:56:26Z\", \"orderNumber\": 970000, \"xLegacy\": -11, \"yLegacy\": 23, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"K. Birch putback Layup (2 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 99, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:55:34.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:55:34Z\", \"orderNumber\": 980000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"BOS Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 100, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:57:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:16Z\", \"orderNumber\": 990000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Brown\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 101, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:57:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:16Z\", \"orderNumber\": 1000000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 102, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:57:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:16Z\", \"orderNumber\": 1010000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Nesmith\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 103, \"clock\": \"PT03M16.00S\", \"timeActual\": \"2021-01-16T00:57:52.1Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:16Z\", \"orderNumber\": 1020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 104, \"clock\": \"PT03M04.00S\", \"timeActual\": \"2021-01-16T00:58:35.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630174, \"x\": 10.726018396846255, \"y\": 3.5003063725490198, \"side\": \"left\", \"shotDistance\": 23.75, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:45Z\", \"orderNumber\": 1030000, \"xLegacy\": 232, \"yLegacy\": 48, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith 3PT\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 105, \"clock\": \"PT03M00.00S\", \"timeActual\": \"2021-01-16T00:58:39.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"28\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:45Z\", \"orderNumber\": 1040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 104, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"D. Theis REBOUND (Off:1 Def:0)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 106, \"clock\": \"PT03M00.00S\", \"timeActual\": \"2021-01-16T00:58:41.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628464, \"x\": 5.590000152587891, \"y\": 50.0, \"side\": \"left\", \"shotDistance\": 0.0, \"possession\": 1610612738, \"scoreHome\": \"30\", \"scoreAway\": \"20\", \"edited\": \"2021-01-16T00:58:41Z\", \"orderNumber\": 1050000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"D. Theis tip Layup (2 PTS)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 107, \"clock\": \"PT02M48.00S\", \"timeActual\": \"2021-01-16T00:58:52.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203082, \"x\": 81.68528252299606, \"y\": 56.196384803921575, \"side\": \"right\", \"shotDistance\": 12.36, \"possession\": 1610612753, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:05Z\", \"orderNumber\": 1060000, \"xLegacy\": 31, \"yLegacy\": 120, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"T. Ross 12' pullup Jump Shot (2 PTS) (A. Gordon 2 AST)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 203932], \"assistPlayerNameInitial\": \"A. Gordon\", \"assistPersonId\": 203932, \"assistTotal\": 2}, {\"actionNumber\": 109, \"clock\": \"PT02M36.00S\", \"timeActual\": \"2021-01-16T00:59:03.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 30.831143232588698, \"y\": 64.77481617647058, \"side\": \"left\", \"shotDistance\": 24.85, \"possession\": 1610612738, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:13Z\", \"orderNumber\": 1080000, \"xLegacy\": -74, \"yLegacy\": 237, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 24' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 110, \"clock\": \"PT02M33.00S\", \"timeActual\": \"2021-01-16T00:59:06.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:13Z\", \"orderNumber\": 1090000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 109, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"J. Bone REBOUND (Off:0 Def:1)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 111, \"clock\": \"PT02M15.00S\", \"timeActual\": \"2021-01-16T00:59:25.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 203932, \"x\": 76.16622864651774, \"y\": 71.6375612745098, \"side\": \"right\", \"shotDistance\": 20.28, \"possession\": 1610612753, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:32Z\", \"orderNumber\": 1100000, \"xLegacy\": 108, \"yLegacy\": 172, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon 20' step back Shot\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 112, \"clock\": \"PT02M13.00S\", \"timeActual\": \"2021-01-16T00:59:27.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"30\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:32Z\", \"orderNumber\": 1110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 111, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"D. Theis REBOUND (Off:1 Def:1)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 113, \"clock\": \"PT02M01.00S\", \"timeActual\": \"2021-01-16T00:59:39.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628400, \"x\": 6.521024967148489, \"y\": 46.88265931372549, \"side\": \"left\", \"shotDistance\": 1.79, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T00:59:43Z\", \"orderNumber\": 1120000, \"xLegacy\": 16, \"yLegacy\": 9, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"S. Ojeleye driving finger roll Layup (5 PTS) (P. Pritchard 1 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1630202], \"assistPlayerNameInitial\": \"P. Pritchard\", \"assistPersonId\": 1630202, \"assistTotal\": 1}, {\"actionNumber\": 115, \"clock\": \"PT01M49.00S\", \"timeActual\": \"2021-01-16T00:59:58.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"step\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:06Z\", \"orderNumber\": 1140000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"A. Gordon step out-of-bounds TURNOVER (1 TO)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 116, \"clock\": \"PT01M49.00S\", \"timeActual\": \"2021-01-16T01:00:02.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:04Z\", \"orderNumber\": 1150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 117, \"clock\": \"PT01M49.00S\", \"timeActual\": \"2021-01-16T01:00:02.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:04Z\", \"orderNumber\": 1160000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 118, \"clock\": \"PT01M34.00S\", \"timeActual\": \"2021-01-16T01:00:23.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630202, \"x\": 19.71090670170828, \"y\": 67.00367647058823, \"side\": \"left\", \"shotDistance\": 15.77, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:32Z\", \"orderNumber\": 1170000, \"xLegacy\": -85, \"yLegacy\": 133, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 15' driving floating Shot\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 119, \"clock\": \"PT01M30.00S\", \"timeActual\": \"2021-01-16T01:00:27.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:32Z\", \"orderNumber\": 1180000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 118, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:2)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 120, \"clock\": \"PT01M15.00S\", \"timeActual\": \"2021-01-16T01:00:41.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203082, \"x\": 92.59198423127464, \"y\": 83.64736519607843, \"side\": \"right\", \"shotDistance\": 16.91, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:53Z\", \"orderNumber\": 1190000, \"xLegacy\": 168, \"yLegacy\": 17, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 16' pullup Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 121, \"clock\": \"PT01M11.00S\", \"timeActual\": \"2021-01-16T01:00:45.8Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"22\", \"edited\": \"2021-01-16T01:00:53Z\", \"orderNumber\": 1200000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 120, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 2, \"description\": \"K. Birch REBOUND (Off:2 Def:0)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 122, \"clock\": \"PT01M09.00S\", \"timeActual\": \"2021-01-16T01:00:48.0Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 203920, \"x\": 91.93495400788436, \"y\": 51.53952205882353, \"side\": \"right\", \"shotDistance\": 2.45, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"24\", \"edited\": \"2021-01-16T01:00:58Z\", \"orderNumber\": 1210000, \"xLegacy\": 8, \"yLegacy\": 23, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"K. Birch driving finger roll Layup (4 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 123, \"clock\": \"PT00M55.30S\", \"timeActual\": \"2021-01-16T01:01:01.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 31.488173455978973, \"y\": 64.5297181372549, \"side\": \"left\", \"shotDistance\": 25.41, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"24\", \"edited\": \"2021-01-16T01:01:07Z\", \"orderNumber\": 1220000, \"xLegacy\": -73, \"yLegacy\": 243, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 25' 3PT\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 124, \"clock\": \"PT00M53.10S\", \"timeActual\": \"2021-01-16T01:01:03.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"24\", \"edited\": \"2021-01-16T01:01:07Z\", \"orderNumber\": 1230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 123, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 2, \"description\": \"K. Birch REBOUND (Off:2 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 125, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:01:21.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"24\", \"edited\": \"2021-01-16T01:01:37Z\", \"officialId\": 201638, \"orderNumber\": 1240000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"S. Ojeleye shooting personal FOUL (1 PF) (Gordon 2 FT)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 127, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:01:53.5Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"25\", \"edited\": \"2021-01-16T01:01:53Z\", \"orderNumber\": 1260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 1, \"description\": \"A. Gordon Free Throw 1 of 2 (1 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 128, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:01:56.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"25\", \"edited\": \"2021-01-16T01:02:11Z\", \"orderNumber\": 1270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 129, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:01:56.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"25\", \"edited\": \"2021-01-16T01:02:11Z\", \"orderNumber\": 1280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 130, \"clock\": \"PT00M36.20S\", \"timeActual\": \"2021-01-16T01:02:29.7Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"32\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:02:29Z\", \"orderNumber\": 1290000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"A. Gordon Free Throw 2 of 2 (2 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 131, \"clock\": \"PT00M23.40S\", \"timeActual\": \"2021-01-16T01:02:46.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"32\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:02:59Z\", \"officialId\": 202041, \"orderNumber\": 1300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"J. Bone personal FOUL (1 PF)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 133, \"clock\": \"PT00M17.40S\", \"timeActual\": \"2021-01-16T01:03:08.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628464, \"x\": 20.367936925098554, \"y\": 66.75857843137256, \"side\": \"left\", \"shotDistance\": 16.23, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:03:15Z\", \"orderNumber\": 1320000, \"xLegacy\": -84, \"yLegacy\": 139, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"D. Theis 16' Jump Shot (4 PTS) (J. Teague 2 AST)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464, 201952], \"assistPlayerNameInitial\": \"J. Teague\", \"assistPersonId\": 201952, \"assistTotal\": 2}, {\"actionNumber\": 135, \"clock\": \"PT00M01.60S\", \"timeActual\": \"2021-01-16T01:03:26.4Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203082, \"x\": 66.83639947437582, \"y\": 23.84344362745098, \"side\": \"right\", \"shotDistance\": 29.03, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:03:44Z\", \"orderNumber\": 1340000, \"xLegacy\": -131, \"yLegacy\": 259, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 29' pullup 3PT\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 136, \"clock\": \"PT00M00.80S\", \"timeActual\": \"2021-01-16T01:03:27.2Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"26\", \"edited\": \"2021-01-16T01:03:44Z\", \"orderNumber\": 1350000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 135, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 3, \"description\": \"K. Birch REBOUND (Off:3 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 137, \"clock\": \"PT00M00.50S\", \"timeActual\": \"2021-01-16T01:03:32.6Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"2ndchance\", \"pointsinthepaint\"], \"personId\": 203920, \"x\": 94.40999984741211, \"y\": 50.0, \"side\": \"right\", \"shotDistance\": 0.0, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:04:02Z\", \"orderNumber\": 1360000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"K. Birch tip Layup (6 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 138, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:03:34.9Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:03:35Z\", \"orderNumber\": 1370000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period End\", \"personIdsFilter\": []}, {\"actionNumber\": 139, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:03:46.3Z\", \"period\": 1, \"periodType\": \"REGULAR\", \"actionType\": \"instantreplay\", \"subType\": \"request\", \"descriptor\": \"support\", \"qualifiers\": [], \"value\": \"End Period - Good Basket\", \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:04:18Z\", \"officialId\": 202041, \"orderNumber\": 1380000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 140, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:05:42.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [\"startperiod\"], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:00Z\", \"orderNumber\": 1390000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 141, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:05:42.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [\"startperiod\"], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:00Z\", \"orderNumber\": 1400000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 142, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:06:10.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"start\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:10Z\", \"orderNumber\": 1410000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period Start\", \"personIdsFilter\": []}, {\"actionNumber\": 143, \"clock\": \"PT11M46.00S\", \"timeActual\": \"2021-01-16T01:06:24.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:29Z\", \"orderNumber\": 1420000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"K. Birch bad pass TURNOVER (1 TO)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920, 1629750], \"stealPlayerName\": \"Green\", \"stealPersonId\": 1629750}, {\"actionNumber\": 144, \"clock\": \"PT11M46.00S\", \"timeActual\": \"2021-01-16T01:06:24.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:26Z\", \"orderNumber\": 1430000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Green STEAL (1 STL)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 145, \"clock\": \"PT11M30.00S\", \"timeActual\": \"2021-01-16T01:06:40.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630174, \"x\": 28.728646517739815, \"y\": 70.65716911764706, \"side\": \"left\", \"shotDistance\": 24.08, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:47Z\", \"orderNumber\": 1440000, \"xLegacy\": -103, \"yLegacy\": 218, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith 24' turnaround 3PT\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 146, \"clock\": \"PT11M26.00S\", \"timeActual\": \"2021-01-16T01:06:44.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"28\", \"edited\": \"2021-01-16T01:06:47Z\", \"orderNumber\": 1450000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 145, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:3)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 147, \"clock\": \"PT11M18.00S\", \"timeActual\": \"2021-01-16T01:06:51.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203082, \"x\": 87.33574244415243, \"y\": 66.49050245098039, \"side\": \"right\", \"shotDistance\": 10.6, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"30\", \"edited\": \"2021-01-16T01:06:57Z\", \"orderNumber\": 1460000, \"xLegacy\": 82, \"yLegacy\": 67, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"T. Ross 10' pullup Jump Shot (4 PTS)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 148, \"clock\": \"PT10M49.00S\", \"timeActual\": \"2021-01-16T01:07:21.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 23.340998685939553, \"y\": 72.61795343137256, \"side\": \"left\", \"shotDistance\": 20.16, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"30\", \"edited\": \"2021-01-16T01:07:27Z\", \"orderNumber\": 1470000, \"xLegacy\": -113, \"yLegacy\": 167, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye 20' Jump Shot\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 149, \"clock\": \"PT10M46.00S\", \"timeActual\": \"2021-01-16T01:07:24.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"30\", \"edited\": \"2021-01-16T01:07:27Z\", \"orderNumber\": 1480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 148, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"G. Clark REBOUND (Off:0 Def:1)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 150, \"clock\": \"PT10M36.00S\", \"timeActual\": \"2021-01-16T01:07:33.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 85.3646517739816, \"y\": 51.78462009803921, \"side\": \"right\", \"shotDistance\": 8.56, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:07:42Z\", \"orderNumber\": 1490000, \"xLegacy\": 9, \"yLegacy\": 85, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"A. Gordon 8' Jump Shot (4 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 151, \"clock\": \"PT10M20.00S\", \"timeActual\": \"2021-01-16T01:07:48.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 7.046649145860711, \"y\": 96.8826593137255, \"side\": \"left\", \"shotDistance\": 23.48, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:12Z\", \"orderNumber\": 1500000, \"xLegacy\": -234, \"yLegacy\": 14, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye 3PT\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 152, \"clock\": \"PT10M18.00S\", \"timeActual\": \"2021-01-16T01:07:50.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:07:54Z\", \"orderNumber\": 1510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 151, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"J. Bone REBOUND (Off:0 Def:2)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 153, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:00.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:00Z\", \"orderNumber\": 1520000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 154, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:01.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:10Z\", \"orderNumber\": 1530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 155, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:01.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:10Z\", \"orderNumber\": 1540000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: S. Ojeleye\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 156, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:01.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:10Z\", \"orderNumber\": 1550000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 157, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T01:08:01.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:10Z\", \"orderNumber\": 1560000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 158, \"clock\": \"PT10M10.00S\", \"timeActual\": \"2021-01-16T01:08:25.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:42Z\", \"officialId\": 1627541, \"orderNumber\": 1570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"J. Green personal FOUL (1 PF)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750, 203082], \"foulDrawnPlayerName\": \"Ross\", \"foulDrawnPersonId\": 203082}, {\"actionNumber\": 160, \"clock\": \"PT10M03.00S\", \"timeActual\": \"2021-01-16T01:08:47.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [], \"personId\": 203082, \"x\": 90.40735873850197, \"y\": 27.083333333333332, \"side\": \"right\", \"shotDistance\": 12.06, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:58Z\", \"orderNumber\": 1590000, \"xLegacy\": -115, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 12' driving floating Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 161, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T01:08:50.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:08:58Z\", \"orderNumber\": 1600000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 160, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:2)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 162, \"clock\": \"PT09M45.00S\", \"timeActual\": \"2021-01-16T01:09:05.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629750, \"x\": 27.283180026281208, \"y\": 15.265012254901961, \"side\": \"left\", \"shotDistance\": 26.79, \"possession\": 1610612738, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:09:15Z\", \"orderNumber\": 1610000, \"xLegacy\": 174, \"yLegacy\": 204, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Green 26' 3PT\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 163, \"clock\": \"PT09M42.00S\", \"timeActual\": \"2021-01-16T01:09:08.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"32\", \"edited\": \"2021-01-16T01:09:15Z\", \"orderNumber\": 1620000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 162, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:4)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 164, \"clock\": \"PT09M36.00S\", \"timeActual\": \"2021-01-16T01:09:14.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 203932, \"x\": 69.72733245729303, \"y\": 18.941482843137255, \"side\": \"right\", \"shotDistance\": 27.93, \"possession\": 1610612753, \"scoreHome\": \"34\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:09:22Z\", \"orderNumber\": 1630000, \"xLegacy\": -155, \"yLegacy\": 232, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"A. Gordon 27' 3PT step back (7 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 165, \"clock\": \"PT09M21.00S\", \"timeActual\": \"2021-01-16T01:09:29.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 27.677398160315374, \"y\": 76.04932598039215, \"side\": \"left\", \"shotDistance\": 24.51, \"possession\": 1610612738, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:09:36Z\", \"orderNumber\": 1640000, \"xLegacy\": -130, \"yLegacy\": 208, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"P. Pritchard 24' 3PT (3 PTS) (T. Thompson 1 AST)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 202684], \"assistPlayerNameInitial\": \"T. Thompson\", \"assistPersonId\": 202684, \"assistTotal\": 1}, {\"actionNumber\": 167, \"clock\": \"PT09M03.00S\", \"timeActual\": \"2021-01-16T01:09:46.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround fadeaway\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 79.84559789750328, \"y\": 37.07873774509804, \"side\": \"right\", \"shotDistance\": 15.15, \"possession\": 1610612753, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:09:54Z\", \"orderNumber\": 1660000, \"xLegacy\": -65, \"yLegacy\": 137, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon 15' turnaround fadeaway Shot\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 168, \"clock\": \"PT09M02.00S\", \"timeActual\": \"2021-01-16T01:09:47.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:09:54Z\", \"orderNumber\": 1670000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 167, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:3)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 169, \"clock\": \"PT08M46.00S\", \"timeActual\": \"2021-01-16T01:10:04.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"turnaround\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202684, \"x\": 7.5722733245729295, \"y\": 51.294424019607845, \"side\": \"left\", \"shotDistance\": 1.98, \"possession\": 1610612738, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:15Z\", \"orderNumber\": 1680000, \"xLegacy\": -6, \"yLegacy\": 19, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Thompson turnaround Hook\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 170, \"clock\": \"PT08M45.00S\", \"timeActual\": \"2021-01-16T01:10:05.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"37\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:05Z\", \"orderNumber\": 1690000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 169, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"J. Green REBOUND (Off:1 Def:0)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 171, \"clock\": \"PT08M44.00S\", \"timeActual\": \"2021-01-16T01:10:06.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"putback\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1629750, \"x\": 5.995400788436268, \"y\": 50.55912990196079, \"side\": \"left\", \"shotDistance\": 0.48, \"possession\": 1610612738, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:20Z\", \"orderNumber\": 1700000, \"xLegacy\": -3, \"yLegacy\": 4, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"J. Green putback Layup (2 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 172, \"clock\": \"PT08M30.00S\", \"timeActual\": \"2021-01-16T01:10:21.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 90.3580814717477, \"y\": 54.970894607843135, \"side\": \"right\", \"shotDistance\": 4.55, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:39Z\", \"orderNumber\": 1710000, \"xLegacy\": 25, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon driving Layup\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 173, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:22.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:39Z\", \"orderNumber\": 1720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 172, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"A. Gordon REBOUND (Off:1 Def:0)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 174, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:24.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:36Z\", \"officialId\": 201638, \"orderNumber\": 1730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"T. Thompson shooting personal FOUL (1 PF) (Gordon 2 FT)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 176, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:27Z\", \"orderNumber\": 1750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon Free Throw 1 of 2\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 177, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\", \"deadball\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:27Z\", \"orderNumber\": 1760000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 176, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 178, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:57Z\", \"orderNumber\": 1770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 179, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:10:57Z\", \"orderNumber\": 1780000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: N. Vucevic\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 180, \"clock\": \"PT08M29.00S\", \"timeActual\": \"2021-01-16T01:10:53.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:27Z\", \"orderNumber\": 1790000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon Free Throw 2 of 2\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 181, \"clock\": \"PT08M28.00S\", \"timeActual\": \"2021-01-16T01:10:54.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:27Z\", \"orderNumber\": 1800000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 180, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 182, \"clock\": \"PT08M28.00S\", \"timeActual\": \"2021-01-16T01:11:22.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:11:22Z\", \"orderNumber\": 1810000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 183, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T01:11:43.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:12:03Z\", \"officialId\": 1627541, \"orderNumber\": 1820000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"A. Nesmith shooting personal FOUL (1 PF) (Clark 2 FT)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1629109], \"foulDrawnPlayerName\": \"Clark\", \"foulDrawnPersonId\": 1629109}, {\"actionNumber\": 185, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T01:12:06.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:12:06Z\", \"orderNumber\": 1840000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS G. Clark Free Throw 1 of 2\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 186, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T01:12:06.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"deadball\", \"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"35\", \"edited\": \"2021-01-16T01:12:06Z\", \"orderNumber\": 1850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 185, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 187, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T01:12:18.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"39\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:12:19Z\", \"orderNumber\": 1860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 1, \"description\": \"G. Clark Free Throw 2 of 2 (1 PTS)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 188, \"clock\": \"PT08M05.00S\", \"timeActual\": \"2021-01-16T01:12:39.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 9.806176084099869, \"y\": 97.86305147058823, \"side\": \"left\", \"shotDistance\": 24.26, \"possession\": 1610612738, \"scoreHome\": \"42\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:12:45Z\", \"orderNumber\": 1870000, \"xLegacy\": -239, \"yLegacy\": 40, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"P. Pritchard 24' 3PT step back (6 PTS)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 189, \"clock\": \"PT07M46.00S\", \"timeActual\": \"2021-01-16T01:12:59.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"42\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:13:10Z\", \"officialId\": 201638, \"orderNumber\": 1880000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"P. Pritchard personal FOUL (2 PF)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 191, \"clock\": \"PT07M37.00S\", \"timeActual\": \"2021-01-16T01:13:28.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 89.96386333771353, \"y\": 46.392463235294116, \"side\": \"right\", \"shotDistance\": 4.55, \"possession\": 1610612753, \"scoreHome\": \"42\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:13:34Z\", \"orderNumber\": 1900000, \"xLegacy\": -18, \"yLegacy\": 42, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon driving finger roll Layup\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 192, \"clock\": \"PT07M36.00S\", \"timeActual\": \"2021-01-16T01:13:29.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"42\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:13:34Z\", \"orderNumber\": 1910000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 191, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:4)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 193, \"clock\": \"PT07M28.00S\", \"timeActual\": \"2021-01-16T01:13:37.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630202, \"x\": 5.601182654402102, \"y\": 54.23560049019608, \"side\": \"left\", \"shotDistance\": 2.12, \"possession\": 1610612738, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:13:41Z\", \"orderNumber\": 1920000, \"xLegacy\": -21, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"P. Pritchard driving Layup (8 PTS)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 194, \"clock\": \"PT07M11.00S\", \"timeActual\": \"2021-01-16T01:13:53.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203082, \"x\": 75.90341655716163, \"y\": 10.608149509803921, \"side\": \"right\", \"shotDistance\": 26.28, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:03Z\", \"orderNumber\": 1930000, \"xLegacy\": -197, \"yLegacy\": 174, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 26' 3PT\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 195, \"clock\": \"PT07M08.00S\", \"timeActual\": \"2021-01-16T01:13:56.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:03Z\", \"orderNumber\": 1940000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 194, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:5)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 196, \"clock\": \"PT06M50.00S\", \"timeActual\": \"2021-01-16T01:14:15.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"lost ball\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:22Z\", \"orderNumber\": 1950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"T. Thompson lost ball TURNOVER (1 TO)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684, 202696], \"stealPlayerName\": \"Vucevic\", \"stealPersonId\": 202696}, {\"actionNumber\": 197, \"clock\": \"PT06M50.00S\", \"timeActual\": \"2021-01-16T01:14:15.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:22Z\", \"orderNumber\": 1960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"N. Vucevic STEAL (1 STL)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 198, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:14:25.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [\"inpenalty\", \"2freethrow\"], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:16:18Z\", \"officialId\": 202041, \"orderNumber\": 1970000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"A. Nesmith personal FOUL (2 PF) (Gordon 2 FT)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 200, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:14:36.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:14:36Z\", \"orderNumber\": 1990000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"BOS Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 201, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2000000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 202, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2010000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Nesmith\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 203, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 205, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 206, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2050000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 207, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:16:36.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"36\", \"edited\": \"2021-01-16T01:17:21Z\", \"orderNumber\": 2060000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Brown\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 211, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:17:44.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"fromturnover\", \"fastbreak\"], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"37\", \"edited\": \"2021-01-16T01:17:44Z\", \"orderNumber\": 2100000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"A. Gordon Free Throw 1 of 2 (8 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 212, \"clock\": \"PT06M49.00S\", \"timeActual\": \"2021-01-16T01:17:58.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"fastbreak\", \"fromturnover\"], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"44\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:17:58Z\", \"orderNumber\": 2110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"A. Gordon Free Throw 2 of 2 (9 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 213, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:11.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"44\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:31Z\", \"officialId\": 202041, \"orderNumber\": 2120000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"J. Bone shooting personal FOUL (2 PF) (Teague 2 FT)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 215, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:38.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:38Z\", \"orderNumber\": 2140000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"J. Teague Free Throw 1 of 2 (9 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 216, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:46Z\", \"orderNumber\": 2150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 217, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:46Z\", \"orderNumber\": 2160000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 218, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:46Z\", \"orderNumber\": 2170000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 219, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:18:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"45\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:18:46Z\", \"orderNumber\": 2180000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 220, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T01:19:03.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:03Z\", \"orderNumber\": 2190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"J. Teague Free Throw 2 of 2 (10 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 221, \"clock\": \"PT06M28.00S\", \"timeActual\": \"2021-01-16T01:19:16.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"turnaround\", \"qualifiers\": [], \"personId\": 202696, \"x\": 86.99080157687253, \"y\": 68.22916666666666, \"side\": \"right\", \"shotDistance\": 11.48, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:28Z\", \"orderNumber\": 2200000, \"xLegacy\": 91, \"yLegacy\": 70, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 11' turnaround Hook\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 222, \"clock\": \"PT06M26.00S\", \"timeActual\": \"2021-01-16T01:19:18.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:28Z\", \"orderNumber\": 2210000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 221, \"reboundTotal\": 7, \"reboundDefensiveTotal\": 6, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:6)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 223, \"clock\": \"PT06M21.00S\", \"timeActual\": \"2021-01-16T01:19:23.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"running pullup\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1627759, \"x\": 29.517082785808146, \"y\": 21.637561274509803, \"side\": \"left\", \"shotDistance\": 26.6, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:35Z\", \"orderNumber\": 2220000, \"xLegacy\": 142, \"yLegacy\": 225, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 26' running pullup 3PT\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 224, \"clock\": \"PT06M19.00S\", \"timeActual\": \"2021-01-16T01:19:25.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:35Z\", \"orderNumber\": 2230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 223, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 0, \"description\": \"T. Ross REBOUND (Off:0 Def:5)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 225, \"clock\": \"PT06M09.00S\", \"timeActual\": \"2021-01-16T01:19:35.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628407, \"x\": 72.09264126149803, \"y\": 36.58854166666667, \"side\": \"right\", \"shotDistance\": 22.03, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:43Z\", \"orderNumber\": 2240000, \"xLegacy\": -67, \"yLegacy\": 210, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 22' Jump Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 226, \"clock\": \"PT06M05.00S\", \"timeActual\": \"2021-01-16T01:19:39.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:43Z\", \"orderNumber\": 2250000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 225, \"reboundTotal\": 8, \"reboundDefensiveTotal\": 7, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:7)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 227, \"clock\": \"PT05M55.00S\", \"timeActual\": \"2021-01-16T01:19:51.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:19:59Z\", \"orderNumber\": 2260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"M. Smart bad pass TURNOVER (1 TO)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 202696], \"stealPlayerName\": \"Vucevic\", \"stealPersonId\": 202696}, {\"actionNumber\": 228, \"clock\": \"PT05M55.00S\", \"timeActual\": \"2021-01-16T01:19:51.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:20:35Z\", \"orderNumber\": 2270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"N. Vucevic STEAL (2 STL)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 229, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:19:56.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"inpenalty\", \"2freethrow\"], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:20:07Z\", \"officialId\": 202041, \"orderNumber\": 2280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"M. Smart shooting personal FOUL (1 PF) (Bacon 2 FT)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 232, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:20:19.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:20:26Z\", \"orderNumber\": 2310000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 233, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:20:19.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"38\", \"edited\": \"2021-01-16T01:20:26Z\", \"orderNumber\": 2320000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: C. Anthony\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 231, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:20:19.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"fastbreak\", \"fromturnover\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"39\", \"edited\": \"2021-01-16T01:50:12Z\", \"orderNumber\": 2322500, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"D. Bacon Free Throw 1 of 2 (5 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 234, \"clock\": \"PT05M52.00S\", \"timeActual\": \"2021-01-16T01:20:19.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"fastbreak\", \"fromturnover\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"46\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:50:12Z\", \"orderNumber\": 2323750, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"D. Bacon Free Throw 2 of 2 (6 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 235, \"clock\": \"PT05M39.00S\", \"timeActual\": \"2021-01-16T01:20:54.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"alley-oop\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202684, \"x\": 5.338370565045992, \"y\": 52.029718137254896, \"side\": \"left\", \"shotDistance\": 1.04, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:21:28Z\", \"orderNumber\": 2325000, \"xLegacy\": -10, \"yLegacy\": -2, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Thompson alley-oop Layup\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 236, \"clock\": \"PT05M38.00S\", \"timeActual\": \"2021-01-16T01:20:55.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:47:05Z\", \"orderNumber\": 2327500, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 235, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 237, \"clock\": \"PT05M38.00S\", \"timeActual\": \"2021-01-16T01:20:59.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"46\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:20:59Z\", \"orderNumber\": 2360000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 238, \"clock\": \"PT05M30.00S\", \"timeActual\": \"2021-01-16T01:21:23.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"2ndchance\"], \"personId\": 203935, \"x\": 30.305519053876477, \"y\": 72.37285539215686, \"side\": \"left\", \"shotDistance\": 25.79, \"possession\": 1610612738, \"scoreHome\": \"49\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:21:32Z\", \"orderNumber\": 2370000, \"xLegacy\": -112, \"yLegacy\": 232, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"M. Smart 25' 3PT (11 PTS) (J. Brown 5 AST)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 5}, {\"actionNumber\": 240, \"clock\": \"PT05M08.00S\", \"timeActual\": \"2021-01-16T01:21:43.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround fadeaway\", \"qualifiers\": [], \"personId\": 202696, \"x\": 87.46714848883047, \"y\": 29.235600490196077, \"side\": \"right\", \"shotDistance\": 12.26, \"possession\": 1610612753, \"scoreHome\": \"49\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:21:52Z\", \"orderNumber\": 2390000, \"xLegacy\": -104, \"yLegacy\": 65, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 12' turnaround fadeaway Shot\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 241, \"clock\": \"PT05M05.00S\", \"timeActual\": \"2021-01-16T01:21:46.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"49\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:21:52Z\", \"orderNumber\": 2400000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 240, \"reboundTotal\": 9, \"reboundDefensiveTotal\": 8, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:8)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 242, \"clock\": \"PT04M55.00S\", \"timeActual\": \"2021-01-16T01:21:57.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving reverse\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630202, \"x\": 5.732588699080158, \"y\": 53.255208333333336, \"side\": \"left\", \"shotDistance\": 1.64, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:10Z\", \"orderNumber\": 2410000, \"xLegacy\": -16, \"yLegacy\": 1, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"P. Pritchard driving reverse Layup (10 PTS) (J. Brown 6 AST)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 6}, {\"actionNumber\": 244, \"clock\": \"PT04M38.00S\", \"timeActual\": \"2021-01-16T01:22:14.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629109, \"x\": 63.81406044678055, \"y\": 39.03952205882353, \"side\": \"right\", \"shotDistance\": 29.28, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:19Z\", \"orderNumber\": 2430000, \"xLegacy\": -55, \"yLegacy\": 288, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Clark 29' 3PT\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 245, \"clock\": \"PT04M35.00S\", \"timeActual\": \"2021-01-16T01:22:17.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:19Z\", \"orderNumber\": 2440000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 244, \"reboundTotal\": 10, \"reboundDefensiveTotal\": 9, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:9)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 246, \"clock\": \"PT04M26.00S\", \"timeActual\": \"2021-01-16T01:22:27.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1627759, \"x\": 16.245072273324574, \"y\": 43.20618872549019, \"side\": \"left\", \"shotDistance\": 10.58, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:38Z\", \"orderNumber\": 2450000, \"xLegacy\": 34, \"yLegacy\": 100, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 10' pullup Shot\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 247, \"clock\": \"PT04M23.00S\", \"timeActual\": \"2021-01-16T01:22:30.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:38Z\", \"orderNumber\": 2460000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 246, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"G. Clark REBOUND (Off:0 Def:2)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 248, \"clock\": \"PT04M14.00S\", \"timeActual\": \"2021-01-16T01:22:38.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving reverse\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 91.27792378449409, \"y\": 45.90226715686275, \"side\": \"right\", \"shotDistance\": 3.59, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:48Z\", \"orderNumber\": 2470000, \"xLegacy\": -20, \"yLegacy\": 29, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony driving reverse Layup\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 249, \"clock\": \"PT04M11.00S\", \"timeActual\": \"2021-01-16T01:22:41.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"40\", \"edited\": \"2021-01-16T01:22:48Z\", \"orderNumber\": 2480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 248, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"N. Vucevic REBOUND (Off:1 Def:1)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 250, \"clock\": \"PT04M11.00S\", \"timeActual\": \"2021-01-16T01:22:41.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 202696, \"x\": 90.75229960578186, \"y\": 46.63756127450981, \"side\": \"right\", \"shotDistance\": 3.83, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:22:53Z\", \"orderNumber\": 2490000, \"xLegacy\": -17, \"yLegacy\": 34, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"N. Vucevic tip Layup (7 PTS)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 251, \"clock\": \"PT03M52.00S\", \"timeActual\": \"2021-01-16T01:23:00.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 4.812746386333772, \"y\": 56.44148284313726, \"side\": \"left\", \"shotDistance\": 3.3, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:23:05Z\", \"orderNumber\": 2500000, \"xLegacy\": -32, \"yLegacy\": -7, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague driving finger roll Layup\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 252, \"clock\": \"PT03M50.00S\", \"timeActual\": \"2021-01-16T01:23:02.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:23:05Z\", \"orderNumber\": 2510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 251, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 1, \"description\": \"N. Vucevic REBOUND (Off:1 Def:2)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 253, \"clock\": \"PT03M45.00S\", \"timeActual\": \"2021-01-16T01:23:06.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1630175, \"x\": 71.30420499342969, \"y\": 20.166973039215684, \"side\": \"right\", \"shotDistance\": 26.35, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:23:26Z\", \"orderNumber\": 2520000, \"xLegacy\": -149, \"yLegacy\": 217, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 26' 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 254, \"clock\": \"PT03M44.00S\", \"timeActual\": \"2021-01-16T01:23:07.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:50:45Z\", \"orderNumber\": 2530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 253, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 3, \"description\": \"D. Bacon REBOUND (Off:3 Def:2)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 270, \"clock\": \"PT03M43.00S\", \"timeActual\": \"2021-01-16T01:23:11.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628407, \"x\": 82.86793692509855, \"y\": 41.00030637254902, \"side\": \"right\", \"shotDistance\": 11.75, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:35:34Z\", \"orderNumber\": 2535000, \"xLegacy\": -45, \"yLegacy\": 109, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 11' Jump Shot - blocked\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407, 202684], \"blockPlayerName\": \"Thompson\", \"blockPersonId\": 202684}, {\"actionNumber\": 271, \"clock\": \"PT03M43.00S\", \"timeActual\": \"2021-01-16T01:23:11.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2537500, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"T. Thompson BLOCK (1 BLK)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 272, \"clock\": \"PT03M43.00S\", \"timeActual\": \"2021-01-16T01:23:11.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:35:34Z\", \"orderNumber\": 2538750, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 270, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 329, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:19.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"heldball\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:48:59Z\", \"orderNumber\": 2539375, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"P. Pritchard\", \"jumpBallRecoverdPersonId\": 1630202, \"side\": null, \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 202684, 1628407], \"jumpBallWonPlayerName\": \"Thompson\", \"jumpBallWonPersonId\": 202684, \"description\": \"Jump Ball T. Thompson vs. D. Bacon: Tip to P. Pritchard\", \"jumpBallLostPlayerName\": \"Bacon\", \"jumpBallLostPersonId\": 1628407}, {\"actionNumber\": 255, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:28.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2540000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: G. Clark\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 256, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:28.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2550000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Bone\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 257, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:28.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2560000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 258, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T01:23:28.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 259, \"clock\": \"PT03M34.00S\", \"timeActual\": \"2021-01-16T01:23:47.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"heldball\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:29Z\", \"orderNumber\": 2580000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"P. Pritchard\", \"jumpBallRecoverdPersonId\": 1630202, \"side\": null, \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 202684, 1628407], \"jumpBallWonPlayerName\": \"Thompson\", \"jumpBallWonPersonId\": 202684, \"description\": \"Jump Ball T. Thompson vs. D. Bacon: Tip to P. Pritchard\", \"jumpBallLostPlayerName\": \"Bacon\", \"jumpBallLostPersonId\": 1628407}, {\"actionNumber\": 264, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:24:05.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"3freethrow\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"51\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:41:32Z\", \"officialId\": 202041, \"orderNumber\": 2625000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"D. Bacon shooting personal FOUL (1 PF) (Brown 3 FT)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407, 1627759], \"foulDrawnPlayerName\": \"Brown\", \"foulDrawnPersonId\": 1627759}, {\"actionNumber\": 266, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:24:44.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 3\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"52\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:26:16Z\", \"orderNumber\": 2650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"J. Brown Free Throw 1 of 3 (8 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 267, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:24:44.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 3\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"53\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:26:16Z\", \"orderNumber\": 2660000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"J. Brown Free Throw 2 of 3 (9 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 268, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:07.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"technical\", \"qualifiers\": [\"1freethrow\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"53\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:23Z\", \"officialId\": 202041, \"orderNumber\": 2670000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 1, \"side\": null, \"description\": \"D. Bacon technical FOUL (1 Tech)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 269, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:25.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"descriptor\": \"technical\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:25Z\", \"orderNumber\": 2680000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"J. Brown technical Free Throw 1 of 1 (10 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 273, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2690000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 274, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2700000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 275, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2710000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 276, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 277, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 278, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:25:29.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"54\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:25:38Z\", \"orderNumber\": 2740000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 279, \"clock\": \"PT03M17.00S\", \"timeActual\": \"2021-01-16T01:24:44.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"3 of 3\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"55\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:26:16Z\", \"orderNumber\": 2750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"J. Brown Free Throw 3 of 3 (11 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 280, \"clock\": \"PT03M09.00S\", \"timeActual\": \"2021-01-16T01:26:08.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [\"inpenalty\", \"2freethrow\"], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"42\", \"edited\": \"2021-01-16T01:29:55Z\", \"officialId\": 202041, \"orderNumber\": 2780000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"J. Brown personal FOUL (1 PF) (Vucevic 2 FT)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759, 202696], \"foulDrawnPlayerName\": \"Vucevic\", \"foulDrawnPersonId\": 202696}, {\"actionNumber\": 283, \"clock\": \"PT03M09.00S\", \"timeActual\": \"2021-01-16T01:26:30.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"43\", \"edited\": \"2021-01-16T01:26:30Z\", \"orderNumber\": 2810000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"N. Vucevic Free Throw 1 of 2 (8 PTS)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 284, \"clock\": \"PT03M09.00S\", \"timeActual\": \"2021-01-16T01:26:46.6Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:26:46Z\", \"orderNumber\": 2820000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"N. Vucevic Free Throw 2 of 2 (9 PTS)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 285, \"clock\": \"PT02M56.00S\", \"timeActual\": \"2021-01-16T01:27:01.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628464, \"x\": 21.369908015768726, \"y\": 40.510110294117645, \"side\": \"left\", \"shotDistance\": 15.58, \"possession\": 1610612738, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:27:06Z\", \"orderNumber\": 2830000, \"xLegacy\": 47, \"yLegacy\": 148, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Theis 15' Jump Shot\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 286, \"clock\": \"PT02M53.00S\", \"timeActual\": \"2021-01-16T01:27:04.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:27:06Z\", \"orderNumber\": 2840000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 285, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:2)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 287, \"clock\": \"PT02M47.00S\", \"timeActual\": \"2021-01-16T01:27:10.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 202696, \"x\": 67.49342969776609, \"y\": 72.37285539215686, \"side\": \"right\", \"shotDistance\": 27.67, \"possession\": 1610612753, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:27:16Z\", \"orderNumber\": 2850000, \"xLegacy\": 112, \"yLegacy\": 253, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 27' 3PT\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 288, \"clock\": \"PT02M45.00S\", \"timeActual\": \"2021-01-16T01:27:12.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"55\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T01:27:12Z\", \"orderNumber\": 2860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 287, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 1, \"description\": \"D. Theis REBOUND (Off:1 Def:2)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 289, \"clock\": \"PT02M37.00S\", \"timeActual\": \"2021-01-16T01:27:20.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1627759, \"x\": 27.808804204993432, \"y\": 78.01011029411765, \"side\": \"left\", \"shotDistance\": 25.15, \"possession\": 1610612738, \"scoreHome\": \"58\", \"scoreAway\": \"44\", \"edited\": \"2021-01-16T02:04:25Z\", \"orderNumber\": 2870000, \"xLegacy\": -140, \"yLegacy\": 209, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 14, \"description\": \"J. Brown 25' 3PT pullup (14 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 290, \"clock\": \"PT02M22.00S\", \"timeActual\": \"2021-01-16T01:27:35.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202696, \"x\": 90.3580814717477, \"y\": 53.990502450980394, \"side\": \"right\", \"shotDistance\": 4.3, \"possession\": 1610612753, \"scoreHome\": \"58\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:27:41Z\", \"orderNumber\": 2880000, \"xLegacy\": 20, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"N. Vucevic cutting Layup (11 PTS) (C. Anthony 2 AST)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 1630175], \"assistPlayerNameInitial\": \"C. Anthony\", \"assistPersonId\": 1630175, \"assistTotal\": 2}, {\"actionNumber\": 292, \"clock\": \"PT02M02.00S\", \"timeActual\": \"2021-01-16T01:27:58.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"58\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:27:58Z\", \"orderNumber\": 2900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 293, \"clock\": \"PT02M02.00S\", \"timeActual\": \"2021-01-16T01:28:07.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"58\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:28:07Z\", \"orderNumber\": 2910000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 294, \"clock\": \"PT01M59.00S\", \"timeActual\": \"2021-01-16T01:31:06.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629684, \"x\": 6.783837056504599, \"y\": 43.69638480392157, \"side\": \"left\", \"shotDistance\": 3.35, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:12Z\", \"orderNumber\": 2920000, \"xLegacy\": 32, \"yLegacy\": 11, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"G. Williams cutting Layup (2 PTS) (M. Smart 1 AST)\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684, 203935], \"assistPlayerNameInitial\": \"M. Smart\", \"assistPersonId\": 203935, \"assistTotal\": 1}, {\"actionNumber\": 296, \"clock\": \"PT01M38.00S\", \"timeActual\": \"2021-01-16T01:31:27.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"turnaround\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202696, \"x\": 82.34231274638634, \"y\": 58.892463235294116, \"side\": \"right\", \"shotDistance\": 12.19, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:43Z\", \"orderNumber\": 2940000, \"xLegacy\": 44, \"yLegacy\": 113, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 12' turnaround Hook\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 297, \"clock\": \"PT01M36.00S\", \"timeActual\": \"2021-01-16T01:31:29.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:43Z\", \"orderNumber\": 2950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 296, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 4, \"description\": \"K. Birch REBOUND (Off:4 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 298, \"clock\": \"PT01M32.00S\", \"timeActual\": \"2021-01-16T01:31:34.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1630175, \"x\": 89.43823915900131, \"y\": 4.235600490196079, \"side\": \"right\", \"shotDistance\": 23.35, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:46Z\", \"orderNumber\": 2960000, \"xLegacy\": -229, \"yLegacy\": 47, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 299, \"clock\": \"PT01M30.00S\", \"timeActual\": \"2021-01-16T01:31:36.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"46\", \"edited\": \"2021-01-16T01:31:46Z\", \"orderNumber\": 2970000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 298, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 5, \"description\": \"K. Birch REBOUND (Off:5 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 300, \"clock\": \"PT01M28.00S\", \"timeActual\": \"2021-01-16T01:31:37.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"putback\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 203920, \"x\": 90.3580814717477, \"y\": 44.921875, \"side\": \"right\", \"shotDistance\": 4.58, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:31:49Z\", \"orderNumber\": 2980000, \"xLegacy\": -25, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"K. Birch putback Layup (8 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 301, \"clock\": \"PT01M18.00S\", \"timeActual\": \"2021-01-16T01:31:49.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:00Z\", \"officialId\": 202041, \"orderNumber\": 2990000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"A. Gordon personal FOUL (1 PF)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 1628464], \"foulDrawnPlayerName\": \"Theis\", \"foulDrawnPersonId\": 1628464}, {\"actionNumber\": 303, \"clock\": \"PT01M10.00S\", \"timeActual\": \"2021-01-16T01:32:30.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 24.52365308804205, \"y\": 12.568933823529413, \"side\": \"left\", \"shotDistance\": 25.83, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:35Z\", \"orderNumber\": 3010000, \"xLegacy\": 187, \"yLegacy\": 178, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 25' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 304, \"clock\": \"PT01M07.00S\", \"timeActual\": \"2021-01-16T01:32:33.5Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:35Z\", \"orderNumber\": 3020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 303, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 1, \"description\": \"G. Williams REBOUND (Off:1 Def:0)\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 305, \"clock\": \"PT01M05.00S\", \"timeActual\": \"2021-01-16T01:32:35.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1627759, \"x\": 37.13863337713535, \"y\": 25.06893382352941, \"side\": \"left\", \"shotDistance\": 32.17, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:46Z\", \"orderNumber\": 3030000, \"xLegacy\": 125, \"yLegacy\": 297, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 32' 3PT\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 306, \"clock\": \"PT01M01.00S\", \"timeActual\": \"2021-01-16T01:32:39.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:46Z\", \"orderNumber\": 3040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 305, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:2)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 307, \"clock\": \"PT00M51.40S\", \"timeActual\": \"2021-01-16T01:32:49.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"bad pass\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:32:58Z\", \"officialId\": 1627541, \"orderNumber\": 3050000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"J. Brown bad pass out-of-bounds TURNOVER (1 TO)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 308, \"clock\": \"PT00M47.70S\", \"timeActual\": \"2021-01-16T01:33:11.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"fadeaway\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\", \"fastbreak\"], \"personId\": 203082, \"x\": 83.78777923784494, \"y\": 41.00030637254902, \"side\": \"right\", \"shotDistance\": 10.96, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:33:19Z\", \"orderNumber\": 3060000, \"xLegacy\": -45, \"yLegacy\": 100, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 10' fadeaway Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 309, \"clock\": \"PT00M44.90S\", \"timeActual\": \"2021-01-16T01:33:14.1Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:33:19Z\", \"orderNumber\": 3070000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 308, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"M. Smart REBOUND (Off:0 Def:2)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 310, \"clock\": \"PT00M34.50S\", \"timeActual\": \"2021-01-16T01:33:24.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1627759, \"x\": 23.340998685939553, \"y\": 37.8140318627451, \"side\": \"left\", \"shotDistance\": 17.77, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:33:29Z\", \"orderNumber\": 3080000, \"xLegacy\": 61, \"yLegacy\": 167, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 17' Jump Shot\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 311, \"clock\": \"PT00M32.90S\", \"timeActual\": \"2021-01-16T01:33:26.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:33:29Z\", \"orderNumber\": 3090000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 310, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:3)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 313, \"clock\": \"PT00M26.00S\", \"timeActual\": \"2021-01-16T01:33:37.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:54:45Z\", \"officialId\": 202041, \"orderNumber\": 3110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"C. Anthony offensive FOUL (2 PF)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1628464], \"foulDrawnPlayerName\": \"Theis\", \"foulDrawnPersonId\": 1628464}, {\"actionNumber\": 357, \"clock\": \"PT00M26.00S\", \"timeActual\": \"2021-01-16T01:33:47.9Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"offensive foul\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:55:34Z\", \"officialId\": 201638, \"orderNumber\": 3125000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 3, \"description\": \"C. Anthony offensive foul TURNOVER (3 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 315, \"clock\": \"PT00M26.00S\", \"timeActual\": \"2021-01-16T01:33:58.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"timeout\", \"subType\": \"challenge\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:53:56Z\", \"orderNumber\": 3130000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"BOS Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 317, \"clock\": \"PT00M26.00S\", \"timeActual\": \"2021-01-16T01:34:15.3Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"instantreplay\", \"subType\": \"challenge\", \"descriptor\": \"overturned\", \"qualifiers\": [], \"value\": \"Corrected to Offensive Foul on C. Anthony\", \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:53:56Z\", \"officialId\": 202041, \"orderNumber\": 3150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 318, \"clock\": \"PT00M08.70S\", \"timeActual\": \"2021-01-16T01:36:10.4Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 203935, \"x\": 7.30946123521682, \"y\": 55.70618872549019, \"side\": \"left\", \"shotDistance\": 3.28, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T02:03:57Z\", \"orderNumber\": 3160000, \"xLegacy\": -29, \"yLegacy\": 16, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart DUNK\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 319, \"clock\": \"PT00M05.10S\", \"timeActual\": \"2021-01-16T01:36:14.0Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T02:03:57Z\", \"orderNumber\": 3170000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 318, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 1, \"description\": \"N. Vucevic REBOUND (Off:1 Def:3)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 320, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:17.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 86.94152431011827, \"y\": 47.372855392156865, \"side\": \"right\", \"shotDistance\": 7.14, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:37:12Z\", \"orderNumber\": 3180000, \"xLegacy\": -13, \"yLegacy\": 70, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 7' driving Layup - blocked\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1630202], \"blockPlayerName\": \"Pritchard\", \"blockPersonId\": 1630202}, {\"actionNumber\": 321, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:17.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:36:19Z\", \"orderNumber\": 3190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"P. Pritchard BLOCK (1 BLK)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 322, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:17.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:45:40Z\", \"orderNumber\": 3200000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 320, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 324, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:35.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:36:47Z\", \"orderNumber\": 3220000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 325, \"clock\": \"PT00M00.70S\", \"timeActual\": \"2021-01-16T01:36:35.2Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:36:47Z\", \"orderNumber\": 3230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 326, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:36:50.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround fadeaway\", \"qualifiers\": [\"2ndchance\"], \"personId\": 202696, \"x\": 85.10183968462549, \"y\": 30.46109068627451, \"side\": \"right\", \"shotDistance\": 13.12, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:37:28Z\", \"orderNumber\": 3240000, \"xLegacy\": -98, \"yLegacy\": 88, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 13' turnaround fadeaway Shot\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 327, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:36:50.8Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:37:28Z\", \"orderNumber\": 3250000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 326, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 328, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T01:36:54.7Z\", \"period\": 2, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:36:54Z\", \"orderNumber\": 3260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period End\", \"personIdsFilter\": []}, {\"actionNumber\": 332, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [\"startperiod\"], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 333, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [\"startperiod\"], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 334, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [\"startperiod\"], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3290000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 335, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [\"startperiod\"], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 336, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [\"startperiod\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3310000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 337, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:51:04.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [\"startperiod\"], \"personId\": 203516, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:03Z\", \"orderNumber\": 3320000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Ennis III\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 338, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T01:52:20.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"start\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"48\", \"edited\": \"2021-01-16T01:52:20Z\", \"orderNumber\": 3330000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period Start\", \"personIdsFilter\": []}, {\"actionNumber\": 339, \"clock\": \"PT11M43.00S\", \"timeActual\": \"2021-01-16T01:52:37.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"turnaround\", \"qualifiers\": [], \"personId\": 202696, \"x\": 19.004599211563733, \"y\": 23.353247549019606, \"side\": \"left\", \"shotDistance\": 18.34, \"possession\": 1610612753, \"scoreHome\": \"60\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:52:48Z\", \"orderNumber\": 3340000, \"xLegacy\": 133, \"yLegacy\": 126, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"N. Vucevic 18' turnaround Jump Shot (13 PTS)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 340, \"clock\": \"PT11M20.00S\", \"timeActual\": \"2021-01-16T01:53:02.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 203516, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"60\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:25Z\", \"officialId\": 202041, \"orderNumber\": 3350000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"J. Ennis III shooting personal FOUL (2 PF) (Brown 2 FT)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516, 1627759], \"foulDrawnPlayerName\": \"Brown\", \"foulDrawnPersonId\": 1627759}, {\"actionNumber\": 342, \"clock\": \"PT11M20.00S\", \"timeActual\": \"2021-01-16T01:53:27.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"61\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:27Z\", \"orderNumber\": 3370000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"J. Brown Free Throw 1 of 2 (15 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 343, \"clock\": \"PT11M20.00S\", \"timeActual\": \"2021-01-16T01:53:38.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"62\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:38Z\", \"orderNumber\": 3380000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 16, \"description\": \"J. Brown Free Throw 2 of 2 (16 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 344, \"clock\": \"PT11M07.00S\", \"timeActual\": \"2021-01-16T01:53:53.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 7.5722733245729295, \"y\": 56.196384803921575, \"side\": \"left\", \"shotDistance\": 3.62, \"possession\": 1610612753, \"scoreHome\": \"62\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:58Z\", \"orderNumber\": 3390000, \"xLegacy\": -31, \"yLegacy\": 19, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon driving finger roll Layup\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 345, \"clock\": \"PT11M06.00S\", \"timeActual\": \"2021-01-16T01:53:54.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"62\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:53:58Z\", \"orderNumber\": 3400000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 344, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"J. Brown REBOUND (Off:0 Def:1)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 346, \"clock\": \"PT11M01.00S\", \"timeActual\": \"2021-01-16T01:53:59.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fastbreak\"], \"personId\": 202684, \"x\": 91.27792378449409, \"y\": 49.08854166666667, \"side\": \"right\", \"shotDistance\": 2.99, \"possession\": 1610612738, \"scoreHome\": \"64\", \"scoreAway\": \"50\", \"edited\": \"2021-01-16T01:54:05Z\", \"orderNumber\": 3410000, \"xLegacy\": -5, \"yLegacy\": 29, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"T. Thompson running Layup (4 PTS) (J. Brown 7 AST)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 7}, {\"actionNumber\": 348, \"clock\": \"PT10M48.00S\", \"timeActual\": \"2021-01-16T01:54:12.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203932, \"x\": 18.2161629434954, \"y\": 4.725796568627451, \"side\": \"left\", \"shotDistance\": 25.56, \"possession\": 1610612753, \"scoreHome\": \"64\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:54:17Z\", \"orderNumber\": 3430000, \"xLegacy\": 226, \"yLegacy\": 119, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 12, \"description\": \"A. Gordon 25' 3PT (12 PTS) (D. Bacon 1 AST)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 1628407], \"assistPlayerNameInitial\": \"D. Bacon\", \"assistPersonId\": 1628407, \"assistTotal\": 1}, {\"actionNumber\": 350, \"clock\": \"PT10M23.00S\", \"timeActual\": \"2021-01-16T01:54:38.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 201952, \"x\": 88.78120893561103, \"y\": 95.65716911764706, \"side\": \"right\", \"shotDistance\": 23.44, \"possession\": 1610612738, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:54:43Z\", \"orderNumber\": 3450000, \"xLegacy\": 228, \"yLegacy\": 53, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"J. Teague 3PT (13 PTS) (M. Smart 2 AST)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952, 203935], \"assistPlayerNameInitial\": \"M. Smart\", \"assistPersonId\": 203935, \"assistTotal\": 2}, {\"actionNumber\": 352, \"clock\": \"PT10M06.00S\", \"timeActual\": \"2021-01-16T01:54:55.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203932, \"x\": 29.911300919842315, \"y\": 75.06893382352942, \"side\": \"left\", \"shotDistance\": 26.08, \"possession\": 1610612753, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:00Z\", \"orderNumber\": 3470000, \"xLegacy\": -125, \"yLegacy\": 229, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon 26' 3PT\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 353, \"clock\": \"PT10M03.00S\", \"timeActual\": \"2021-01-16T01:54:57.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:54:57Z\", \"orderNumber\": 3480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 352, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"J. Brown REBOUND (Off:0 Def:2)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 354, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T01:55:07.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"lost ball\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:33Z\", \"orderNumber\": 3490000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"J. Brown lost ball out-of-bounds TURNOVER (2 TO)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 355, \"clock\": \"PT09M50.00S\", \"timeActual\": \"2021-01-16T01:55:27.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 1630175, \"x\": 6.1268068331143235, \"y\": 41.73560049019608, \"side\": \"left\", \"shotDistance\": 4.16, \"possession\": 1610612753, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:58Z\", \"orderNumber\": 3500000, \"xLegacy\": 41, \"yLegacy\": 5, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony driving floating Shot\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 356, \"clock\": \"PT09M47.00S\", \"timeActual\": \"2021-01-16T01:55:30.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"67\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:58Z\", \"orderNumber\": 3510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 355, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"J. Teague REBOUND (Off:0 Def:1)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 358, \"clock\": \"PT09M35.00S\", \"timeActual\": \"2021-01-16T01:55:41.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 89.17542706964521, \"y\": 51.294424019607845, \"side\": \"right\", \"shotDistance\": 4.97, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:47Z\", \"orderNumber\": 3520000, \"xLegacy\": 6, \"yLegacy\": 49, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"J. Teague driving floating Jump Shot (15 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 359, \"clock\": \"PT09M28.00S\", \"timeActual\": \"2021-01-16T01:55:52.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"53\", \"edited\": \"2021-01-16T01:55:52Z\", \"orderNumber\": 3530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 360, \"clock\": \"PT09M17.00S\", \"timeActual\": \"2021-01-16T01:58:50.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving bank\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203516, \"x\": 8.623521681997373, \"y\": 58.892463235294116, \"side\": \"left\", \"shotDistance\": 5.29, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"55\", \"edited\": \"2021-01-16T01:59:00Z\", \"orderNumber\": 3540000, \"xLegacy\": -44, \"yLegacy\": 29, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"J. Ennis III driving bank Jump Shot (2 PTS) (N. Vucevic 3 AST)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516, 202696], \"assistPlayerNameInitial\": \"N. Vucevic\", \"assistPersonId\": 202696, \"assistTotal\": 3}, {\"actionNumber\": 362, \"clock\": \"PT09M02.00S\", \"timeActual\": \"2021-01-16T01:59:05.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 87.99277266754271, \"y\": 55.951286764705884, \"side\": \"right\", \"shotDistance\": 6.74, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"55\", \"edited\": \"2021-01-16T01:59:10Z\", \"orderNumber\": 3560000, \"xLegacy\": 30, \"yLegacy\": 60, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague 6' driving floating Shot\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 363, \"clock\": \"PT09M01.00S\", \"timeActual\": \"2021-01-16T01:59:06.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"55\", \"edited\": \"2021-01-16T01:59:10Z\", \"orderNumber\": 3570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 362, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 1, \"description\": \"N. Vucevic REBOUND (Off:1 Def:4)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 364, \"clock\": \"PT08M52.00S\", \"timeActual\": \"2021-01-16T01:59:15.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 202696, \"x\": 19.136005256241788, \"y\": 40.510110294117645, \"side\": \"left\", \"shotDistance\": 13.59, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"57\", \"edited\": \"2021-01-16T01:59:20Z\", \"orderNumber\": 3580000, \"xLegacy\": 47, \"yLegacy\": 127, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"N. Vucevic 13' Jump Shot (15 PTS) (C. Anthony 3 AST)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 1630175], \"assistPlayerNameInitial\": \"C. Anthony\", \"assistPersonId\": 1630175, \"assistTotal\": 3}, {\"actionNumber\": 366, \"clock\": \"PT08M33.00S\", \"timeActual\": \"2021-01-16T01:59:34.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 201952, \"x\": 69.33311432325887, \"y\": 21.88265931372549, \"side\": \"right\", \"shotDistance\": 27.45, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"57\", \"edited\": \"2021-01-16T01:59:39Z\", \"orderNumber\": 3600000, \"xLegacy\": -141, \"yLegacy\": 236, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague 27' 3PT\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 367, \"clock\": \"PT08M30.00S\", \"timeActual\": \"2021-01-16T01:59:37.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"57\", \"edited\": \"2021-01-16T01:59:39Z\", \"orderNumber\": 3610000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 366, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 3, \"description\": \"D. Bacon REBOUND (Off:3 Def:3)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 368, \"clock\": \"PT08M27.00S\", \"timeActual\": \"2021-01-16T01:59:42.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fastbreak\"], \"personId\": 1628407, \"x\": 7.30946123521682, \"y\": 53.990502450980394, \"side\": \"left\", \"shotDistance\": 2.57, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T01:59:51Z\", \"orderNumber\": 3620000, \"xLegacy\": -20, \"yLegacy\": 16, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"D. Bacon running Layup (8 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 369, \"clock\": \"PT08M27.00S\", \"timeActual\": \"2021-01-16T01:59:44.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 1629684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:06:42Z\", \"officialId\": 202041, \"orderNumber\": 3630000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"G. Williams shooting personal FOUL (1 PF) (Bacon 1 FT)\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 371, \"clock\": \"PT08M27.00S\", \"timeActual\": \"2021-01-16T02:00:08.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:00:12Z\", \"orderNumber\": 3650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon Free Throw 1 of 1\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 372, \"clock\": \"PT08M23.00S\", \"timeActual\": \"2021-01-16T02:00:12.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:00:12Z\", \"orderNumber\": 3660000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 371, \"reboundTotal\": 11, \"reboundDefensiveTotal\": 10, \"reboundOffensiveTotal\": 1, \"description\": \"T. Thompson REBOUND (Off:1 Def:10)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 373, \"clock\": \"PT08M16.00S\", \"timeActual\": \"2021-01-16T02:00:22.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 203516, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"69\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:00:27Z\", \"officialId\": 201638, \"orderNumber\": 3670000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 3, \"foulTechnicalTotal\": 0, \"description\": \"J. Ennis III personal FOUL (3 PF)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516, 1627759], \"foulDrawnPlayerName\": \"Brown\", \"foulDrawnPersonId\": 1627759}, {\"actionNumber\": 375, \"clock\": \"PT08M04.00S\", \"timeActual\": \"2021-01-16T02:00:57.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1627759, \"x\": 60.791721419185286, \"y\": 44.676776960784316, \"side\": \"right\", \"shotDistance\": 31.72, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:01:02Z\", \"orderNumber\": 3690000, \"xLegacy\": -27, \"yLegacy\": 316, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 19, \"description\": \"J. Brown 31' 3PT (19 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 376, \"clock\": \"PT07M46.00S\", \"timeActual\": \"2021-01-16T02:01:15.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203516, \"x\": 13.354139290407357, \"y\": 1.5395220588235294, \"side\": \"left\", \"shotDistance\": 25.31, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:01:26Z\", \"orderNumber\": 3700000, \"xLegacy\": 242, \"yLegacy\": 73, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Ennis III 25' 3PT\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 377, \"clock\": \"PT07M42.00S\", \"timeActual\": \"2021-01-16T02:01:19.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"59\", \"edited\": \"2021-01-16T02:01:19Z\", \"orderNumber\": 3710000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 376, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 0, \"reboundOffensiveTotal\": 2, \"description\": \"A. Gordon REBOUND (Off:2 Def:0)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 378, \"clock\": \"PT07M40.00S\", \"timeActual\": \"2021-01-16T02:01:23.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628407, \"x\": 8.492115637319317, \"y\": 48.353247549019606, \"side\": \"left\", \"shotDistance\": 2.85, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"61\", \"edited\": \"2021-01-16T02:01:30Z\", \"orderNumber\": 3720000, \"xLegacy\": 8, \"yLegacy\": 27, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"D. Bacon driving Layup (10 PTS) (N. Vucevic 4 AST)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407, 202696], \"assistPlayerNameInitial\": \"N. Vucevic\", \"assistPersonId\": 202696, \"assistTotal\": 4}, {\"actionNumber\": 379, \"clock\": \"PT07M40.00S\", \"timeActual\": \"2021-01-16T02:01:26.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"61\", \"edited\": \"2021-01-16T02:01:49Z\", \"officialId\": 201638, \"orderNumber\": 3730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"T. Thompson shooting personal FOUL (2 PF) (Bacon 1 FT)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 381, \"clock\": \"PT07M40.00S\", \"timeActual\": \"2021-01-16T02:01:51.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"62\", \"edited\": \"2021-01-16T02:01:51Z\", \"orderNumber\": 3750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"D. Bacon Free Throw 1 of 1 (11 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 382, \"clock\": \"PT07M26.00S\", \"timeActual\": \"2021-01-16T02:02:05.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 201952, \"x\": 88.64980289093299, \"y\": 59.62775735294118, \"side\": \"right\", \"shotDistance\": 7.25, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"62\", \"edited\": \"2021-01-16T02:02:11Z\", \"orderNumber\": 3760000, \"xLegacy\": 48, \"yLegacy\": 54, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Teague 7' driving finger roll Layup\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 383, \"clock\": \"PT07M24.00S\", \"timeActual\": \"2021-01-16T02:02:07.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"62\", \"edited\": \"2021-01-16T02:02:11Z\", \"orderNumber\": 3770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 382, \"reboundTotal\": 7, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 3, \"description\": \"D. Bacon REBOUND (Off:3 Def:4)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 384, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:16.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"62\", \"edited\": \"2021-01-16T02:02:29Z\", \"officialId\": 1627541, \"orderNumber\": 3780000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"M. Smart shooting personal FOUL (2 PF) (Bacon 2 FT)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 386, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:40.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"63\", \"edited\": \"2021-01-16T02:02:40Z\", \"orderNumber\": 3800000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 12, \"description\": \"D. Bacon Free Throw 1 of 2 (12 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 388, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:41.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"63\", \"edited\": \"2021-01-16T02:02:46Z\", \"orderNumber\": 3810000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 389, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:41.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"63\", \"edited\": \"2021-01-16T02:02:46Z\", \"orderNumber\": 3820000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: K. Birch\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 390, \"clock\": \"PT07M18.00S\", \"timeActual\": \"2021-01-16T02:02:58.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"64\", \"edited\": \"2021-01-16T02:02:58Z\", \"orderNumber\": 3830000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"D. Bacon Free Throw 2 of 2 (13 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 391, \"clock\": \"PT07M08.00S\", \"timeActual\": \"2021-01-16T02:03:09.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 203935, \"x\": 64.20827858081472, \"y\": 30.46109068627451, \"side\": \"right\", \"shotDistance\": 30.02, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"64\", \"edited\": \"2021-01-16T02:03:18Z\", \"orderNumber\": 3840000, \"xLegacy\": -98, \"yLegacy\": 284, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 30' pullup 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 392, \"clock\": \"PT07M04.00S\", \"timeActual\": \"2021-01-16T02:03:13.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203516, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"64\", \"edited\": \"2021-01-16T02:03:18Z\", \"orderNumber\": 3850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 391, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"J. Ennis III REBOUND (Off:0 Def:1)\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 393, \"clock\": \"PT06M55.00S\", \"timeActual\": \"2021-01-16T02:03:21.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [], \"personId\": 1630175, \"x\": 14.011169513797633, \"y\": 33.64736519607843, \"side\": \"left\", \"shotDistance\": 11.39, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:27Z\", \"orderNumber\": 3860000, \"xLegacy\": 82, \"yLegacy\": 79, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"C. Anthony 11' driving floating Jump Shot (11 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 394, \"clock\": \"PT06M32.00S\", \"timeActual\": \"2021-01-16T02:03:44.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629684, \"x\": 88.64980289093299, \"y\": 95.65716911764706, \"side\": \"right\", \"shotDistance\": 23.46, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:49Z\", \"orderNumber\": 3870000, \"xLegacy\": 228, \"yLegacy\": 54, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Williams 3PT\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 395, \"clock\": \"PT06M30.00S\", \"timeActual\": \"2021-01-16T02:03:46.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:49Z\", \"orderNumber\": 3880000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 394, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:4)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 396, \"clock\": \"PT06M27.00S\", \"timeActual\": \"2021-01-16T02:03:50.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"lost ball\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:57Z\", \"orderNumber\": 3890000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 4, \"description\": \"C. Anthony lost ball TURNOVER (4 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 201952], \"stealPlayerName\": \"Teague\", \"stealPersonId\": 201952}, {\"actionNumber\": 397, \"clock\": \"PT06M27.00S\", \"timeActual\": \"2021-01-16T02:03:50.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"72\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:03:51Z\", \"orderNumber\": 3900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Teague STEAL (1 STL)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 398, \"clock\": \"PT06M22.00S\", \"timeActual\": \"2021-01-16T02:03:53.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\", \"fastbreak\"], \"personId\": 201952, \"x\": 91.14651773981603, \"y\": 48.59834558823529, \"side\": \"right\", \"shotDistance\": 3.15, \"possession\": 1610612738, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:04:04Z\", \"orderNumber\": 3910000, \"xLegacy\": -7, \"yLegacy\": 31, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 17, \"description\": \"J. Teague running Layup (17 PTS)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 399, \"clock\": \"PT06M00.00S\", \"timeActual\": \"2021-01-16T02:04:16.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628407, \"x\": 21.632720105124836, \"y\": 29.725796568627448, \"side\": \"left\", \"shotDistance\": 18.17, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:04:22Z\", \"orderNumber\": 3920000, \"xLegacy\": 101, \"yLegacy\": 151, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 18' Jump Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 400, \"clock\": \"PT05M58.00S\", \"timeActual\": \"2021-01-16T02:04:18.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:04:22Z\", \"orderNumber\": 3930000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 399, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"G. Williams REBOUND (Off:1 Def:1)\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 401, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:35.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"traveling\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:04:43Z\", \"orderNumber\": 3940000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"T. Thompson traveling TURNOVER (2 TO)\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 402, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:39.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:07Z\", \"orderNumber\": 3950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Thompson\", \"playerName\": \"Thompson\", \"playerNameI\": \"T. Thompson\", \"personIdsFilter\": [202684]}, {\"actionNumber\": 403, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:39.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:07Z\", \"orderNumber\": 3960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 404, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:39.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:07Z\", \"orderNumber\": 3970000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 405, \"clock\": \"PT05M43.00S\", \"timeActual\": \"2021-01-16T02:04:39.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:07Z\", \"orderNumber\": 3980000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 406, \"clock\": \"PT05M30.00S\", \"timeActual\": \"2021-01-16T02:05:09.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 203516, \"x\": 6.915243101182654, \"y\": 55.70618872549019, \"side\": \"left\", \"shotDistance\": 3.11, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:15Z\", \"orderNumber\": 3990000, \"xLegacy\": -29, \"yLegacy\": 13, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Ennis III driving finger roll Layup\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 407, \"clock\": \"PT05M26.00S\", \"timeActual\": \"2021-01-16T02:05:13.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"66\", \"edited\": \"2021-01-16T02:05:13Z\", \"orderNumber\": 4000000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 406, \"reboundTotal\": 7, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 6, \"description\": \"K. Birch REBOUND (Off:6 Def:1)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 408, \"clock\": \"PT05M26.00S\", \"timeActual\": \"2021-01-16T02:05:13.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\", \"2ndchance\"], \"personId\": 203920, \"x\": 5.590000152587891, \"y\": 50.0, \"side\": \"left\", \"shotDistance\": 0.0, \"possession\": 1610612753, \"scoreHome\": \"74\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:13Z\", \"orderNumber\": 4010000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"K. Birch tip Layup (10 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 409, \"clock\": \"PT05M12.00S\", \"timeActual\": \"2021-01-16T02:05:28.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1627759, \"x\": 79.7634691195795, \"y\": 65.28799019607843, \"side\": \"right\", \"shotDistance\": 15.75, \"possession\": 1610612738, \"scoreHome\": \"76\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:36Z\", \"orderNumber\": 4020000, \"xLegacy\": 76, \"yLegacy\": 138, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 21, \"description\": \"J. Brown 15' pullup Jump Shot (21 PTS)\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 410, \"clock\": \"PT05M00.00S\", \"timeActual\": \"2021-01-16T02:05:40.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628407, \"x\": 5.995400788436268, \"y\": 55.70618872549019, \"side\": \"left\", \"shotDistance\": 2.88, \"possession\": 1610612753, \"scoreHome\": \"76\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:44Z\", \"orderNumber\": 4030000, \"xLegacy\": -29, \"yLegacy\": 4, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon driving Layup\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 411, \"clock\": \"PT04M58.00S\", \"timeActual\": \"2021-01-16T02:05:42.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"76\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:44Z\", \"orderNumber\": 4040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 410, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:3)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 412, \"clock\": \"PT04M52.00S\", \"timeActual\": \"2021-01-16T02:05:47.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1630202, \"x\": 93.51182654402102, \"y\": 3.010110294117647, \"side\": \"right\", \"shotDistance\": 23.51, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:05:53Z\", \"orderNumber\": 4050000, \"xLegacy\": -235, \"yLegacy\": 8, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"P. Pritchard 3PT (13 PTS) (J. Brown 8 AST)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 1627759], \"assistPlayerNameInitial\": \"J. Brown\", \"assistPersonId\": 1627759, \"assistTotal\": 8}, {\"actionNumber\": 414, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T02:06:01.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:06:01Z\", \"orderNumber\": 4070000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 415, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T02:07:59.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203516, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:08:39Z\", \"orderNumber\": 4080000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Ennis III\", \"playerName\": \"Ennis III\", \"playerNameI\": \"J. Ennis III\", \"personIdsFilter\": [203516]}, {\"actionNumber\": 416, \"clock\": \"PT04M43.00S\", \"timeActual\": \"2021-01-16T02:07:59.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:08:39Z\", \"orderNumber\": 4090000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 417, \"clock\": \"PT04M25.00S\", \"timeActual\": \"2021-01-16T02:09:12.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630175, \"x\": 34.37910643889619, \"y\": 27.029718137254903, \"side\": \"left\", \"shotDistance\": 29.41, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:31Z\", \"orderNumber\": 4100000, \"xLegacy\": 115, \"yLegacy\": 271, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 29' 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 418, \"clock\": \"PT04M24.00S\", \"timeActual\": \"2021-01-16T02:09:13.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:31Z\", \"orderNumber\": 4110000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 417, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 419, \"clock\": \"PT04M24.00S\", \"timeActual\": \"2021-01-16T02:09:23.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"shot clock\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:09:37Z\", \"orderNumber\": 4120000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"ORL shot clock Team TURNOVER\", \"personIdsFilter\": []}, {\"actionNumber\": 420, \"clock\": \"PT04M08.00S\", \"timeActual\": \"2021-01-16T02:09:42.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630202, \"x\": 67.23061760840999, \"y\": 21.39246323529412, \"side\": \"right\", \"shotDistance\": 29.28, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:02Z\", \"orderNumber\": 4130000, \"xLegacy\": -143, \"yLegacy\": 256, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 29' 3PT\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 421, \"clock\": \"PT04M03.00S\", \"timeActual\": \"2021-01-16T02:09:47.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:09:47Z\", \"orderNumber\": 4140000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 420, \"reboundTotal\": 8, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 3, \"description\": \"D. Bacon REBOUND (Off:3 Def:5)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 422, \"clock\": \"PT03M53.00S\", \"timeActual\": \"2021-01-16T02:09:57.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203082, \"x\": 4.812746386333772, \"y\": 12.568933823529413, \"side\": \"left\", \"shotDistance\": 18.73, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:07Z\", \"orderNumber\": 4150000, \"xLegacy\": 187, \"yLegacy\": -7, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 18' Jump Shot\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 423, \"clock\": \"PT03M52.00S\", \"timeActual\": \"2021-01-16T02:09:58.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:19:36Z\", \"orderNumber\": 4160000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 422, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 2, \"description\": \"N. Vucevic REBOUND (Off:2 Def:4)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 424, \"clock\": \"PT03M48.00S\", \"timeActual\": \"2021-01-16T02:10:02.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1628407, \"x\": 33.459264126149804, \"y\": 39.28462009803921, \"side\": \"left\", \"shotDistance\": 26.74, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:10Z\", \"orderNumber\": 4170000, \"xLegacy\": 54, \"yLegacy\": 262, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 26' 3PT\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 425, \"clock\": \"PT03M46.00S\", \"timeActual\": \"2021-01-16T02:10:04.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:10Z\", \"orderNumber\": 4180000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 424, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:4)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 426, \"clock\": \"PT03M39.00S\", \"timeActual\": \"2021-01-16T02:10:11.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:17Z\", \"orderNumber\": 4190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"J. Teague bad pass TURNOVER (1 TO)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952, 203920], \"stealPlayerName\": \"Birch\", \"stealPersonId\": 203920}, {\"actionNumber\": 427, \"clock\": \"PT03M39.00S\", \"timeActual\": \"2021-01-16T02:10:11.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:13Z\", \"orderNumber\": 4200000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"K. Birch STEAL (1 STL)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 428, \"clock\": \"PT03M30.00S\", \"timeActual\": \"2021-01-16T02:10:20.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630175, \"x\": 27.414586070959263, \"y\": 85.85324754901961, \"side\": \"left\", \"shotDistance\": 27.25, \"possession\": 1610612753, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:25Z\", \"orderNumber\": 4210000, \"xLegacy\": -179, \"yLegacy\": 205, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 27' 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 429, \"clock\": \"PT03M27.00S\", \"timeActual\": \"2021-01-16T02:10:23.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"79\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:25Z\", \"orderNumber\": 4220000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 428, \"reboundTotal\": 7, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:5)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 430, \"clock\": \"PT03M09.00S\", \"timeActual\": \"2021-01-16T02:10:41.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628464, \"x\": 90.3580814717477, \"y\": 47.86305147058824, \"side\": \"right\", \"shotDistance\": 3.96, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:10:47Z\", \"orderNumber\": 4230000, \"xLegacy\": -11, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"D. Theis cutting DUNK (6 PTS) (P. Pritchard 2 AST)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464, 1630202], \"assistPlayerNameInitial\": \"P. Pritchard\", \"assistPersonId\": 1630202, \"assistTotal\": 2}, {\"actionNumber\": 432, \"clock\": \"PT02M50.00S\", \"timeActual\": \"2021-01-16T02:11:00.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 202696, \"x\": 28.07161629434954, \"y\": 78.01011029411765, \"side\": \"left\", \"shotDistance\": 25.36, \"possession\": 1610612753, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:07Z\", \"orderNumber\": 4250000, \"xLegacy\": -140, \"yLegacy\": 211, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS N. Vucevic 25' 3PT\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 433, \"clock\": \"PT02M48.00S\", \"timeActual\": \"2021-01-16T02:11:02.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:07Z\", \"orderNumber\": 4260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 432, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"P. Pritchard REBOUND (Off:0 Def:2)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 434, \"clock\": \"PT02M44.00S\", \"timeActual\": \"2021-01-16T02:11:06.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 1627759, \"x\": 67.7562417871222, \"y\": 20.166973039215684, \"side\": \"right\", \"shotDistance\": 29.17, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:20Z\", \"orderNumber\": 4270000, \"xLegacy\": -149, \"yLegacy\": 251, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Brown 29' 3PT\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 435, \"clock\": \"PT02M41.00S\", \"timeActual\": \"2021-01-16T02:11:09.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:20Z\", \"orderNumber\": 4280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 434, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 0, \"description\": \"C. Anthony REBOUND (Off:0 Def:5)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 436, \"clock\": \"PT02M33.00S\", \"timeActual\": \"2021-01-16T02:11:17.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"lost ball\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:24Z\", \"orderNumber\": 4290000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 5, \"description\": \"C. Anthony lost ball TURNOVER (5 TO)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 201952], \"stealPlayerName\": \"Teague\", \"stealPersonId\": 201952}, {\"actionNumber\": 437, \"clock\": \"PT02M33.00S\", \"timeActual\": \"2021-01-16T02:11:17.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:21:26Z\", \"orderNumber\": 4300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Teague STEAL (2 STL)\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 438, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:25.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"take\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:38Z\", \"officialId\": 1627541, \"orderNumber\": 4310000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"N. Vucevic take personal FOUL (2 PF)\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696, 201952], \"foulDrawnPlayerName\": \"Teague\", \"foulDrawnPersonId\": 201952}, {\"actionNumber\": 440, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1627759, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4330000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Brown\", \"playerName\": \"Brown\", \"playerNameI\": \"J. Brown\", \"personIdsFilter\": [1627759]}, {\"actionNumber\": 441, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 201952, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4340000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: J. Teague\", \"playerName\": \"Teague\", \"playerNameI\": \"J. Teague\", \"personIdsFilter\": [201952]}, {\"actionNumber\": 442, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4350000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 443, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 202696, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4360000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: N. Vucevic\", \"playerName\": \"Vucevic\", \"playerNameI\": \"N. Vucevic\", \"personIdsFilter\": [202696]}, {\"actionNumber\": 444, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4370000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: C. Anthony\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 445, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4380000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 446, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4390000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Green\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 447, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4400000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 448, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4410000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: J. Bone\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 449, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:11:33.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"81\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:11:58Z\", \"orderNumber\": 4420000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: G. Clark\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 450, \"clock\": \"PT02M17.00S\", \"timeActual\": \"2021-01-16T02:12:16.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 1629750, \"x\": 90.62089356110381, \"y\": 54.72579656862745, \"side\": \"right\", \"shotDistance\": 4.28, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:12:24Z\", \"orderNumber\": 4430000, \"xLegacy\": 24, \"yLegacy\": 36, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"J. Green driving Layup (4 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 451, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:12:38.0Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:04Z\", \"officialId\": 201638, \"orderNumber\": 4440000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"D. Theis shooting personal FOUL (1 PF) (Gordon 2 FT)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464, 203932], \"foulDrawnPlayerName\": \"Gordon\", \"foulDrawnPersonId\": 203932}, {\"actionNumber\": 453, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:17.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:43Z\", \"orderNumber\": 4460000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon Free Throw 1 of 2\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 454, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:17.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\", \"deadball\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:43Z\", \"orderNumber\": 4470000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 453, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 455, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:18.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1629684, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:22Z\", \"orderNumber\": 4480000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: G. Williams\", \"playerName\": \"Williams\", \"playerNameI\": \"G. Williams\", \"personIdsFilter\": [1629684]}, {\"actionNumber\": 456, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:18.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:22Z\", \"orderNumber\": 4490000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: S. Ojeleye\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 457, \"clock\": \"PT01M58.00S\", \"timeActual\": \"2021-01-16T02:13:17.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:43Z\", \"orderNumber\": 4500000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon Free Throw 2 of 2\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 458, \"clock\": \"PT01M56.00S\", \"timeActual\": \"2021-01-16T02:13:19.1Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:13:43Z\", \"orderNumber\": 4510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 457, \"reboundTotal\": 8, \"reboundDefensiveTotal\": 6, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:6)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 459, \"clock\": \"PT01M43.00S\", \"timeActual\": \"2021-01-16T02:13:52.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203935, \"x\": 69.59592641261499, \"y\": 18.696384803921568, \"side\": \"right\", \"shotDistance\": 28.09, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:01Z\", \"orderNumber\": 4520000, \"xLegacy\": -157, \"yLegacy\": 233, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 28' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 460, \"clock\": \"PT01M38.00S\", \"timeActual\": \"2021-01-16T02:13:57.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:01Z\", \"orderNumber\": 4530000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 459, \"reboundTotal\": 8, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 6, \"description\": \"K. Birch REBOUND (Off:6 Def:2)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 461, \"clock\": \"PT01M31.00S\", \"timeActual\": \"2021-01-16T02:14:04.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203920, \"x\": 13.354139290407357, \"y\": 43.94148284313725, \"side\": \"left\", \"shotDistance\": 7.9, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:10Z\", \"orderNumber\": 4540000, \"xLegacy\": 30, \"yLegacy\": 73, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS K. Birch 7' driving floating Shot\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 462, \"clock\": \"PT01M29.00S\", \"timeActual\": \"2021-01-16T02:14:06.6Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:10Z\", \"orderNumber\": 4550000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 461, \"reboundTotal\": 9, \"reboundDefensiveTotal\": 7, \"reboundOffensiveTotal\": 2, \"description\": \"D. Theis REBOUND (Off:2 Def:7)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 463, \"clock\": \"PT01M18.00S\", \"timeActual\": \"2021-01-16T02:14:17.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630202, \"x\": 90.22667542706965, \"y\": 45.90226715686275, \"side\": \"right\", \"shotDistance\": 4.44, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:01Z\", \"orderNumber\": 4560000, \"xLegacy\": -20, \"yLegacy\": 39, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard driving Layup\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 467, \"clock\": \"PT01M13.00S\", \"timeActual\": \"2021-01-16T02:14:22.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:01Z\", \"orderNumber\": 4570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 463, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 464, \"clock\": \"PT01M13.00S\", \"timeActual\": \"2021-01-16T02:14:57.8Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"heldball\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:14:57Z\", \"orderNumber\": 4580000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"A. Gordon\", \"jumpBallRecoverdPersonId\": 203932, \"side\": null, \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 203920, 203935], \"jumpBallWonPlayerName\": \"Birch\", \"jumpBallWonPersonId\": 203920, \"description\": \"Jump Ball K. Birch vs. M. Smart: Tip to A. Gordon\", \"jumpBallLostPlayerName\": \"Smart\", \"jumpBallLostPersonId\": 203935}, {\"actionNumber\": 468, \"clock\": \"PT01M03.00S\", \"timeActual\": \"2021-01-16T02:15:08.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629109, \"x\": 9.543363994743759, \"y\": 56.196384803921575, \"side\": \"left\", \"shotDistance\": 4.84, \"possession\": 1610612753, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:15Z\", \"orderNumber\": 4610000, \"xLegacy\": -31, \"yLegacy\": 37, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS G. Clark driving Hook\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 469, \"clock\": \"PT01M00.00S\", \"timeActual\": \"2021-01-16T02:15:11.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"83\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:15Z\", \"orderNumber\": 4620000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 468, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:1)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 470, \"clock\": \"PT00M48.50S\", \"timeActual\": \"2021-01-16T02:15:23.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"cutting\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629750, \"x\": 92.46057818659659, \"y\": 49.82383578431372, \"side\": \"right\", \"shotDistance\": 1.84, \"possession\": 1610612738, \"scoreHome\": \"85\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:35Z\", \"orderNumber\": 4630000, \"xLegacy\": -1, \"yLegacy\": 18, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"J. Green cutting DUNK (6 PTS) (S. Ojeleye 1 AST)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750, 1628400], \"assistPlayerNameInitial\": \"S. Ojeleye\", \"assistPersonId\": 1628400, \"assistTotal\": 1}, {\"actionNumber\": 472, \"clock\": \"PT00M47.60S\", \"timeActual\": \"2021-01-16T02:15:32.2Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"85\", \"scoreAway\": \"68\", \"edited\": \"2021-01-16T02:15:32Z\", \"orderNumber\": 4650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 473, \"clock\": \"PT00M39.20S\", \"timeActual\": \"2021-01-16T02:15:52.5Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203082, \"x\": 18.347568988173457, \"y\": 40.75520833333333, \"side\": \"left\", \"shotDistance\": 12.86, \"possession\": 1610612753, \"scoreHome\": \"85\", \"scoreAway\": \"70\", \"edited\": \"2021-01-16T02:15:58Z\", \"orderNumber\": 4660000, \"xLegacy\": 46, \"yLegacy\": 120, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"T. Ross 12' driving floating Jump Shot (6 PTS) (A. Gordon 3 AST)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 203932], \"assistPlayerNameInitial\": \"A. Gordon\", \"assistPersonId\": 203932, \"assistTotal\": 3}, {\"actionNumber\": 475, \"clock\": \"PT00M34.40S\", \"timeActual\": \"2021-01-16T02:16:01.3Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 203935, \"x\": 64.47109067017082, \"y\": 40.510110294117645, \"side\": \"right\", \"shotDistance\": 28.55, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"70\", \"edited\": \"2021-01-16T02:16:14Z\", \"orderNumber\": 4680000, \"xLegacy\": -47, \"yLegacy\": 281, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 14, \"description\": \"M. Smart 28' 3PT (14 PTS)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 476, \"clock\": \"PT00M15.30S\", \"timeActual\": \"2021-01-16T02:16:23.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203932, \"x\": 6.258212877792378, \"y\": 53.01011029411765, \"side\": \"left\", \"shotDistance\": 1.64, \"possession\": 1610612753, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:16:29Z\", \"orderNumber\": 4690000, \"xLegacy\": -15, \"yLegacy\": 6, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 14, \"description\": \"A. Gordon driving Layup (14 PTS)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 477, \"clock\": \"PT00M01.00S\", \"timeActual\": \"2021-01-16T02:16:42.4Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630202, \"x\": 89.70105124835742, \"y\": 50.06893382352941, \"side\": \"right\", \"shotDistance\": 4.43, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:17:05Z\", \"orderNumber\": 4700000, \"xLegacy\": 0, \"yLegacy\": 44, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard driving floating Shot\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 478, \"clock\": \"PT00M00.50S\", \"timeActual\": \"2021-01-16T02:16:42.9Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:17:05Z\", \"orderNumber\": 4710000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 477, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 479, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T02:16:47.7Z\", \"period\": 3, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:16:47Z\", \"orderNumber\": 4720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period End\", \"personIdsFilter\": []}, {\"actionNumber\": 480, \"clock\": \"PT12M00.00S\", \"timeActual\": \"2021-01-16T02:19:30.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"start\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"88\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:19:30Z\", \"orderNumber\": 4730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period Start\", \"personIdsFilter\": []}, {\"actionNumber\": 481, \"clock\": \"PT11M41.00S\", \"timeActual\": \"2021-01-16T02:19:49.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 91.80354796320631, \"y\": 3.990502450980392, \"side\": \"right\", \"shotDistance\": 23.13, \"possession\": 1610612738, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:19:54Z\", \"orderNumber\": 4740000, \"xLegacy\": -230, \"yLegacy\": 25, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"S. Ojeleye 3PT (8 PTS) (P. Pritchard 3 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1630202], \"assistPlayerNameInitial\": \"P. Pritchard\", \"assistPersonId\": 1630202, \"assistTotal\": 3}, {\"actionNumber\": 483, \"clock\": \"PT11M24.00S\", \"timeActual\": \"2021-01-16T02:20:06.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203082, \"x\": 23.209592641261498, \"y\": 12.814031862745098, \"side\": \"left\", \"shotDistance\": 24.9, \"possession\": 1610612753, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:12Z\", \"orderNumber\": 4760000, \"xLegacy\": 186, \"yLegacy\": 166, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS T. Ross 24' 3PT\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 484, \"clock\": \"PT11M20.00S\", \"timeActual\": \"2021-01-16T02:20:10.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:12Z\", \"orderNumber\": 4770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 483, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"P. Pritchard REBOUND (Off:0 Def:3)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 485, \"clock\": \"PT11M05.00S\", \"timeActual\": \"2021-01-16T02:20:24.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 1630202, \"x\": 87.59855453350855, \"y\": 96.39246323529412, \"side\": \"right\", \"shotDistance\": 24.07, \"possession\": 1610612738, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:39Z\", \"orderNumber\": 4780000, \"xLegacy\": 232, \"yLegacy\": 64, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS P. Pritchard 24' step back 3PT\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 486, \"clock\": \"PT11M02.00S\", \"timeActual\": \"2021-01-16T02:20:27.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"91\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:39Z\", \"orderNumber\": 4790000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 485, \"reboundTotal\": 10, \"reboundDefensiveTotal\": 7, \"reboundOffensiveTotal\": 3, \"description\": \"D. Theis REBOUND (Off:3 Def:7)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 487, \"clock\": \"PT11M00.00S\", \"timeActual\": \"2021-01-16T02:20:29.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"tip\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1628464, \"x\": 94.40999984741211, \"y\": 50.0, \"side\": \"right\", \"shotDistance\": 0.0, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:29Z\", \"orderNumber\": 4800000, \"xLegacy\": 0, \"yLegacy\": 0, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"D. Theis tip Layup (8 PTS)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 488, \"clock\": \"PT10M50.00S\", \"timeActual\": \"2021-01-16T02:20:39.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 203920, \"x\": 10.988830486202366, \"y\": 49.333639705882355, \"side\": \"left\", \"shotDistance\": 5.09, \"possession\": 1610612753, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:44Z\", \"orderNumber\": 4810000, \"xLegacy\": 3, \"yLegacy\": 51, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS K. Birch driving Layup\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 489, \"clock\": \"PT10M48.00S\", \"timeActual\": \"2021-01-16T02:20:41.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:44Z\", \"orderNumber\": 4820000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 488, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"P. Pritchard REBOUND (Off:0 Def:4)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 490, \"clock\": \"PT10M44.00S\", \"timeActual\": \"2021-01-16T02:20:45.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\"], \"personId\": 203935, \"x\": 70.25295663600527, \"y\": 16.735600490196077, \"side\": \"right\", \"shotDistance\": 28.15, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:56Z\", \"orderNumber\": 4830000, \"xLegacy\": -166, \"yLegacy\": 227, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS M. Smart 28' 3PT\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 491, \"clock\": \"PT10M43.00S\", \"timeActual\": \"2021-01-16T02:20:51.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:51Z\", \"orderNumber\": 4840000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 490, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 492, \"clock\": \"PT10M43.00S\", \"timeActual\": \"2021-01-16T02:20:53.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:20:53Z\", \"orderNumber\": 4850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 493, \"clock\": \"PT10M42.00S\", \"timeActual\": \"2021-01-16T02:21:10.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"93\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:21:28Z\", \"officialId\": 201638, \"orderNumber\": 4860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"K. Birch shooting personal FOUL (1 PF) (Ojeleye 2 FT)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920, 1628400], \"foulDrawnPlayerName\": \"Ojeleye\", \"foulDrawnPersonId\": 1628400}, {\"actionNumber\": 495, \"clock\": \"PT10M42.00S\", \"timeActual\": \"2021-01-16T02:21:38.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"94\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:21:39Z\", \"orderNumber\": 4880000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"S. Ojeleye Free Throw 1 of 2 (9 PTS)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 496, \"clock\": \"PT10M42.00S\", \"timeActual\": \"2021-01-16T02:21:55.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"2ndchance\"], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"95\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:21:55Z\", \"orderNumber\": 4890000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"S. Ojeleye Free Throw 2 of 2 (10 PTS)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 497, \"clock\": \"PT10M33.00S\", \"timeActual\": \"2021-01-16T02:22:05.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"95\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:13Z\", \"orderNumber\": 4900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"A. Gordon bad pass TURNOVER (2 TO)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 1629750], \"stealPlayerName\": \"Green\", \"stealPersonId\": 1629750}, {\"actionNumber\": 498, \"clock\": \"PT10M33.00S\", \"timeActual\": \"2021-01-16T02:22:05.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"95\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:07Z\", \"orderNumber\": 4910000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Green STEAL (2 STL)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 499, \"clock\": \"PT10M31.00S\", \"timeActual\": \"2021-01-16T02:22:09.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\"], \"personId\": 1629750, \"x\": 91.67214191852825, \"y\": 52.76501225490197, \"side\": \"right\", \"shotDistance\": 2.93, \"possession\": 1610612738, \"scoreHome\": \"97\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:17Z\", \"orderNumber\": 4920000, \"xLegacy\": 14, \"yLegacy\": 26, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 8, \"description\": \"J. Green running finger roll Layup (8 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 500, \"clock\": \"PT10M31.00S\", \"timeActual\": \"2021-01-16T02:22:12.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"97\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:22Z\", \"officialId\": 1627541, \"orderNumber\": 4930000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"T. Ross shooting personal FOUL (1 PF) (Green 1 FT)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 1629750], \"foulDrawnPlayerName\": \"Green\", \"foulDrawnPersonId\": 1629750}, {\"actionNumber\": 502, \"clock\": \"PT10M31.00S\", \"timeActual\": \"2021-01-16T02:22:40.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"98\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:22:40Z\", \"orderNumber\": 4950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"J. Green Free Throw 1 of 1 (9 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 503, \"clock\": \"PT10M17.00S\", \"timeActual\": \"2021-01-16T02:22:59.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"98\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:17Z\", \"officialId\": 201638, \"orderNumber\": 4960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"D. Theis personal FOUL (2 PF)\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464, 203082], \"foulDrawnPlayerName\": \"Ross\", \"foulDrawnPersonId\": 203082}, {\"actionNumber\": 505, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T02:23:22.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"lost ball\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"98\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:27Z\", \"orderNumber\": 4980000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"T. Ross lost ball TURNOVER (1 TO)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 203935], \"stealPlayerName\": \"Smart\", \"stealPersonId\": 203935}, {\"actionNumber\": 506, \"clock\": \"PT10M12.00S\", \"timeActual\": \"2021-01-16T02:23:22.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"98\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:24Z\", \"orderNumber\": 4990000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"M. Smart STEAL (1 STL)\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 507, \"clock\": \"PT10M06.00S\", \"timeActual\": \"2021-01-16T02:23:28.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fastbreak\", \"fromturnover\"], \"personId\": 1630202, \"x\": 86.72798948751642, \"y\": 97.88602941176471, \"side\": \"right\", \"shotDistance\": 25.01, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:47Z\", \"orderNumber\": 5000000, \"xLegacy\": 239, \"yLegacy\": 72, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 16, \"description\": \"P. Pritchard 25' 3PT (16 PTS) (J. Green 1 AST)\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202, 1629750], \"assistPlayerNameInitial\": \"J. Green\", \"assistPersonId\": 1629750, \"assistTotal\": 1}, {\"actionNumber\": 509, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T02:23:53.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:23:53Z\", \"orderNumber\": 5020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"ORL Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 510, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T02:26:05.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203935, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:26:23Z\", \"orderNumber\": 5030000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: M. Smart\", \"playerName\": \"Smart\", \"playerNameI\": \"M. Smart\", \"personIdsFilter\": [203935]}, {\"actionNumber\": 511, \"clock\": \"PT10M00.00S\", \"timeActual\": \"2021-01-16T02:26:05.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:26:23Z\", \"orderNumber\": 5040000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: A. Nesmith\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 512, \"clock\": \"PT09M51.00S\", \"timeActual\": \"2021-01-16T02:26:45.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 9.937582128777924, \"y\": 95.41207107843137, \"side\": \"left\", \"shotDistance\": 23.08, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:26:50Z\", \"orderNumber\": 5050000, \"xLegacy\": -227, \"yLegacy\": 41, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Bone 3PT\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 513, \"clock\": \"PT09M48.00S\", \"timeActual\": \"2021-01-16T02:26:48.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:26:50Z\", \"orderNumber\": 5060000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 512, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:2)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 514, \"clock\": \"PT09M35.00S\", \"timeActual\": \"2021-01-16T02:27:01.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630174, \"x\": 71.69842312746385, \"y\": 20.902267156862745, \"side\": \"right\", \"shotDistance\": 25.84, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:27:09Z\", \"orderNumber\": 5070000, \"xLegacy\": -145, \"yLegacy\": 214, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith 25' 3PT\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 515, \"clock\": \"PT09M32.00S\", \"timeActual\": \"2021-01-16T02:27:04.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:27:09Z\", \"orderNumber\": 5080000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 514, \"reboundTotal\": 9, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 6, \"description\": \"K. Birch REBOUND (Off:6 Def:3)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 516, \"clock\": \"PT09M21.00S\", \"timeActual\": \"2021-01-16T02:27:15.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203932, \"x\": 25.706307490144546, \"y\": 15.510110294117647, \"side\": \"left\", \"shotDistance\": 25.59, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:27:21Z\", \"orderNumber\": 5090000, \"xLegacy\": 172, \"yLegacy\": 189, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Gordon 25' 3PT\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 517, \"clock\": \"PT09M18.00S\", \"timeActual\": \"2021-01-16T02:27:18.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"72\", \"edited\": \"2021-01-16T02:27:21Z\", \"orderNumber\": 5100000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 516, \"reboundTotal\": 10, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 7, \"description\": \"K. Birch REBOUND (Off:7 Def:3)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 518, \"clock\": \"PT09M15.00S\", \"timeActual\": \"2021-01-16T02:27:20.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1629109, \"x\": 8.623521681997373, \"y\": 43.94148284313725, \"side\": \"left\", \"shotDistance\": 4.17, \"possession\": 1610612753, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:27:27Z\", \"orderNumber\": 5110000, \"xLegacy\": 30, \"yLegacy\": 29, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"G. Clark Layup (3 PTS) (K. Birch 1 AST)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109, 203920], \"assistPlayerNameInitial\": \"K. Birch\", \"assistPersonId\": 203920, \"assistTotal\": 1}, {\"actionNumber\": 520, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:27:37.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 203082, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:10Z\", \"officialId\": 201638, \"orderNumber\": 5130000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"T. Ross shooting personal FOUL (2 PF) (Green 2 FT)\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082, 1629750], \"foulDrawnPlayerName\": \"Green\", \"foulDrawnPersonId\": 1629750}, {\"actionNumber\": 522, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:11.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:11Z\", \"orderNumber\": 5150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS J. Green Free Throw 1 of 2\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 523, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:11.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"deadball\", \"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:11Z\", \"orderNumber\": 5160000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 522, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 524, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:13.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1630202, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:16Z\", \"orderNumber\": 5170000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: P. Pritchard\", \"playerName\": \"Pritchard\", \"playerNameI\": \"P. Pritchard\", \"personIdsFilter\": [1630202]}, {\"actionNumber\": 525, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:13.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629682, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"101\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:16Z\", \"orderNumber\": 5180000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Waters\", \"playerName\": \"Waters\", \"playerNameI\": \"T. Waters\", \"personIdsFilter\": [1629682]}, {\"actionNumber\": 526, \"clock\": \"PT09M00.00S\", \"timeActual\": \"2021-01-16T02:28:26.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"102\", \"scoreAway\": \"74\", \"edited\": \"2021-01-16T02:28:26Z\", \"orderNumber\": 5190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 10, \"description\": \"J. Green Free Throw 2 of 2 (10 PTS)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 527, \"clock\": \"PT08M49.00S\", \"timeActual\": \"2021-01-16T02:28:38.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"bank\", \"qualifiers\": [], \"personId\": 203932, \"x\": 23.99802890932983, \"y\": 84.1375612745098, \"side\": \"left\", \"shotDistance\": 24.31, \"possession\": 1610612753, \"scoreHome\": \"102\", \"scoreAway\": \"77\", \"edited\": \"2021-01-16T02:28:46Z\", \"orderNumber\": 5200000, \"xLegacy\": -171, \"yLegacy\": 173, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 17, \"description\": \"A. Gordon 24' 3PT bank (17 PTS) (T. Ross 1 AST)\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932, 203082], \"assistPlayerNameInitial\": \"T. Ross\", \"assistPersonId\": 203082, \"assistTotal\": 1}, {\"actionNumber\": 529, \"clock\": \"PT08M35.00S\", \"timeActual\": \"2021-01-16T02:28:52.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving bank\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630174, \"x\": 91.93495400788436, \"y\": 58.647365196078425, \"side\": \"right\", \"shotDistance\": 4.91, \"possession\": 1610612738, \"scoreHome\": \"104\", \"scoreAway\": \"77\", \"edited\": \"2021-01-16T02:29:07Z\", \"orderNumber\": 5220000, \"xLegacy\": 43, \"yLegacy\": 23, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"A. Nesmith driving bank Jump Shot (2 PTS) (T. Waters 1 AST)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 1}, {\"actionNumber\": 531, \"clock\": \"PT08M16.00S\", \"timeActual\": \"2021-01-16T02:29:10.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 21.50131406044678, \"y\": 27.76501225490196, \"side\": \"left\", \"shotDistance\": 18.64, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:29:18Z\", \"orderNumber\": 5240000, \"xLegacy\": 111, \"yLegacy\": 150, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"J. Bone 18' pullup Jump Shot (2 PTS)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 532, \"clock\": \"PT08M04.00S\", \"timeActual\": \"2021-01-16T02:29:24.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"bad pass\", \"qualifiers\": [], \"personId\": 1629682, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:29:54Z\", \"officialId\": 1627541, \"orderNumber\": 5250000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"T. Waters bad pass out-of-bounds TURNOVER (1 TO)\", \"playerName\": \"Waters\", \"playerNameI\": \"T. Waters\", \"personIdsFilter\": [1629682]}, {\"actionNumber\": 533, \"clock\": \"PT08M04.00S\", \"timeActual\": \"2021-01-16T02:29:29.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203932, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:29:45Z\", \"orderNumber\": 5260000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: A. Gordon\", \"playerName\": \"Gordon\", \"playerNameI\": \"A. Gordon\", \"personIdsFilter\": [203932]}, {\"actionNumber\": 534, \"clock\": \"PT08M04.00S\", \"timeActual\": \"2021-01-16T02:29:29.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:29:45Z\", \"orderNumber\": 5270000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 535, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:29:55.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"2freethrow\"], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"79\", \"edited\": \"2021-01-16T02:30:15Z\", \"officialId\": 1627541, \"orderNumber\": 5280000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"S. Ojeleye shooting personal FOUL (2 PF) (Birch 2 FT)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 203920], \"foulDrawnPlayerName\": \"Birch\", \"foulDrawnPersonId\": 203920}, {\"actionNumber\": 537, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:30:17.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 2\", \"qualifiers\": [\"fromturnover\"], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"80\", \"edited\": \"2021-01-16T02:30:17Z\", \"orderNumber\": 5300000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 11, \"description\": \"K. Birch Free Throw 1 of 2 (11 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 538, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:30:18.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628464, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"80\", \"edited\": \"2021-01-16T02:30:20Z\", \"orderNumber\": 5310000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Theis\", \"playerName\": \"Theis\", \"playerNameI\": \"D. Theis\", \"personIdsFilter\": [1628464]}, {\"actionNumber\": 539, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:30:18.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"80\", \"edited\": \"2021-01-16T02:30:20Z\", \"orderNumber\": 5320000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: T. Fall\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 540, \"clock\": \"PT07M55.00S\", \"timeActual\": \"2021-01-16T02:30:35.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"2 of 2\", \"qualifiers\": [\"fromturnover\"], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"104\", \"scoreAway\": \"81\", \"edited\": \"2021-01-16T02:30:35Z\", \"orderNumber\": 5330000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 12, \"description\": \"K. Birch Free Throw 2 of 2 (12 PTS)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 541, \"clock\": \"PT07M45.00S\", \"timeActual\": \"2021-01-16T02:30:46.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629682, \"x\": 64.20827858081472, \"y\": 53.990502450980394, \"side\": \"right\", \"shotDistance\": 28.46, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"81\", \"edited\": \"2021-01-16T02:30:50Z\", \"orderNumber\": 5340000, \"xLegacy\": 20, \"yLegacy\": 284, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"T. Waters 28' 3PT (3 PTS)\", \"playerName\": \"Waters\", \"playerNameI\": \"T. Waters\", \"personIdsFilter\": [1629682]}, {\"actionNumber\": 542, \"clock\": \"PT07M20.00S\", \"timeActual\": \"2021-01-16T02:31:11.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"step back\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 18.2161629434954, \"y\": 92.47089460784314, \"side\": \"left\", \"shotDistance\": 24.33, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:18Z\", \"orderNumber\": 5350000, \"xLegacy\": -212, \"yLegacy\": 119, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"J. Bone 24' 3PT step back (5 PTS)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 543, \"clock\": \"PT07M04.00S\", \"timeActual\": \"2021-01-16T02:31:27.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 61.84296977660972, \"y\": 45.65716911764706, \"side\": \"right\", \"shotDistance\": 30.7, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:33Z\", \"orderNumber\": 5360000, \"xLegacy\": -22, \"yLegacy\": 306, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye 30' 3PT\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 544, \"clock\": \"PT07M01.00S\", \"timeActual\": \"2021-01-16T02:31:30.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:33Z\", \"orderNumber\": 5370000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 543, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"J. Bone REBOUND (Off:0 Def:3)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 545, \"clock\": \"PT06M50.00S\", \"timeActual\": \"2021-01-16T02:31:40.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1628407, \"x\": 19.92444152431012, \"y\": 33.892463235294116, \"side\": \"left\", \"shotDistance\": 15.7, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:46Z\", \"orderNumber\": 5380000, \"xLegacy\": 81, \"yLegacy\": 135, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 15' pullup Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 546, \"clock\": \"PT06M48.00S\", \"timeActual\": \"2021-01-16T02:31:42.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:46Z\", \"orderNumber\": 5390000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 545, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:3)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 547, \"clock\": \"PT06M43.00S\", \"timeActual\": \"2021-01-16T02:31:48.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running\", \"qualifiers\": [\"pointsinthepaint\", \"fastbreak\"], \"personId\": 1630174, \"x\": 91.80354796320631, \"y\": 55.4610906862745, \"side\": \"right\", \"shotDistance\": 3.67, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:32:09Z\", \"orderNumber\": 5400000, \"xLegacy\": 27, \"yLegacy\": 25, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith running Layup - blocked\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1629109], \"blockPlayerName\": \"Clark\", \"blockPersonId\": 1629109}, {\"actionNumber\": 548, \"clock\": \"PT06M43.00S\", \"timeActual\": \"2021-01-16T02:31:48.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:31:50Z\", \"orderNumber\": 5410000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"G. Clark BLOCK (1 BLK)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 549, \"clock\": \"PT06M40.00S\", \"timeActual\": \"2021-01-16T02:31:51.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"84\", \"edited\": \"2021-01-16T02:32:09Z\", \"orderNumber\": 5420000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 547, \"reboundTotal\": 11, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 7, \"description\": \"K. Birch REBOUND (Off:7 Def:4)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 550, \"clock\": \"PT06M34.00S\", \"timeActual\": \"2021-01-16T02:31:56.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 22.815374507227332, \"y\": 32.91207107843137, \"side\": \"left\", \"shotDistance\": 18.31, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"86\", \"edited\": \"2021-01-16T02:33:32Z\", \"orderNumber\": 5430000, \"xLegacy\": 85, \"yLegacy\": 162, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 7, \"description\": \"J. Bone 18' pullup Jump Shot (7 PTS)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 551, \"clock\": \"PT06M15.00S\", \"timeActual\": \"2021-01-16T02:32:15.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"86\", \"edited\": \"2021-01-16T02:32:23Z\", \"orderNumber\": 5440000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"J. Green bad pass TURNOVER (1 TO)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750, 1629648], \"stealPlayerName\": \"Bone\", \"stealPersonId\": 1629648}, {\"actionNumber\": 552, \"clock\": \"PT06M15.00S\", \"timeActual\": \"2021-01-16T02:32:15.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1629648, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"86\", \"edited\": \"2021-01-16T02:32:17Z\", \"orderNumber\": 5450000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"J. Bone STEAL (1 STL)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 553, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:23.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"running finger roll\", \"qualifiers\": [\"pointsinthepaint\", \"fromturnover\", \"fastbreak\"], \"personId\": 1628407, \"x\": 6.521024967148489, \"y\": 45.90226715686275, \"side\": \"left\", \"shotDistance\": 2.23, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:43Z\", \"orderNumber\": 5460000, \"xLegacy\": 20, \"yLegacy\": 9, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"D. Bacon running finger roll Layup (15 PTS)\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 554, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:26.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:35Z\", \"officialId\": 201638, \"orderNumber\": 5470000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 3, \"foulTechnicalTotal\": 0, \"description\": \"A. Nesmith shooting personal FOUL (3 PF) (Bacon 1 FT)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1628407], \"foulDrawnPlayerName\": \"Bacon\", \"foulDrawnPersonId\": 1628407}, {\"actionNumber\": 556, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:46.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 203082, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:52Z\", \"orderNumber\": 5490000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: T. Ross\", \"playerName\": \"Ross\", \"playerNameI\": \"T. Ross\", \"personIdsFilter\": [203082]}, {\"actionNumber\": 557, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:46.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630211, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:52Z\", \"orderNumber\": 5500000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: K. Mane\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211]}, {\"actionNumber\": 558, \"clock\": \"PT06M12.00S\", \"timeActual\": \"2021-01-16T02:32:51.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [\"fromturnover\", \"fastbreak\"], \"personId\": 1628407, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:55Z\", \"orderNumber\": 5510000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon Free Throw 1 of 1\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 559, \"clock\": \"PT06M10.00S\", \"timeActual\": \"2021-01-16T02:32:53.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"107\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:32:55Z\", \"orderNumber\": 5520000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 558, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 1, \"description\": \"J. Green REBOUND (Off:1 Def:1)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 560, \"clock\": \"PT06M02.00S\", \"timeActual\": \"2021-01-16T02:33:02.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628400, \"x\": 90.62089356110381, \"y\": 46.88265931372549, \"side\": \"right\", \"shotDistance\": 3.9, \"possession\": 1610612738, \"scoreHome\": \"109\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:33:08Z\", \"orderNumber\": 5530000, \"xLegacy\": -16, \"yLegacy\": 36, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 12, \"description\": \"S. Ojeleye Layup (12 PTS) (A. Nesmith 1 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1630174], \"assistPlayerNameInitial\": \"A. Nesmith\", \"assistPersonId\": 1630174, \"assistTotal\": 1}, {\"actionNumber\": 562, \"clock\": \"PT06M02.00S\", \"timeActual\": \"2021-01-16T02:33:06.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"1freethrow\"], \"personId\": 1630211, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"109\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:33:39Z\", \"officialId\": 1627541, \"orderNumber\": 5550000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"K. Mane shooting personal FOUL (1 PF) (Ojeleye 1 FT)\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211, 1628400], \"foulDrawnPlayerName\": \"Ojeleye\", \"foulDrawnPersonId\": 1628400}, {\"actionNumber\": 564, \"clock\": \"PT06M02.00S\", \"timeActual\": \"2021-01-16T02:33:40.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"110\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:33:40Z\", \"orderNumber\": 5570000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"S. Ojeleye Free Throw 1 of 1 (13 PTS)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 565, \"clock\": \"PT05M48.00S\", \"timeActual\": \"2021-01-16T02:33:54.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1629648, \"x\": 21.76412614980289, \"y\": 59.872855392156865, \"side\": \"left\", \"shotDistance\": 15.99, \"possession\": 1610612753, \"scoreHome\": \"110\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:34:01Z\", \"orderNumber\": 5580000, \"xLegacy\": -49, \"yLegacy\": 152, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Bone 15' pullup Shot\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 566, \"clock\": \"PT05M45.00S\", \"timeActual\": \"2021-01-16T02:33:57.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"110\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:34:01Z\", \"orderNumber\": 5590000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 565, \"reboundTotal\": 1, \"reboundDefensiveTotal\": 1, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:1)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 567, \"clock\": \"PT05M39.00S\", \"timeActual\": \"2021-01-16T02:34:03.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [], \"personId\": 1630174, \"x\": 66.44218134034165, \"y\": 30.215992647058826, \"side\": \"right\", \"shotDistance\": 28.09, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"88\", \"edited\": \"2021-01-16T02:34:10Z\", \"orderNumber\": 5600000, \"xLegacy\": -99, \"yLegacy\": 263, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 5, \"description\": \"A. Nesmith 28' 3PT pullup (5 PTS) (T. Waters 2 AST)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 2}, {\"actionNumber\": 569, \"clock\": \"PT05M14.00S\", \"timeActual\": \"2021-01-16T02:34:28.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"bank\", \"qualifiers\": [], \"personId\": 1630211, \"x\": 27.414586070959263, \"y\": 78.25520833333334, \"side\": \"left\", \"shotDistance\": 24.91, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:34:36Z\", \"orderNumber\": 5620000, \"xLegacy\": -141, \"yLegacy\": 205, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 3, \"description\": \"K. Mane 24' 3PT bank (3 PTS) (K. Birch 2 AST)\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211, 203920], \"assistPlayerNameInitial\": \"K. Birch\", \"assistPersonId\": 203920, \"assistTotal\": 2}, {\"actionNumber\": 571, \"clock\": \"PT04M57.00S\", \"timeActual\": \"2021-01-16T02:34:46.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1629750, \"x\": 68.80749014454665, \"y\": 19.186580882352942, \"side\": \"right\", \"shotDistance\": 28.58, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:34:57Z\", \"orderNumber\": 5640000, \"xLegacy\": -154, \"yLegacy\": 241, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Green 28' 3PT\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750]}, {\"actionNumber\": 572, \"clock\": \"PT04M54.00S\", \"timeActual\": \"2021-01-16T02:34:49.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:34:57Z\", \"orderNumber\": 5650000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 571, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 573, \"clock\": \"PT04M54.00S\", \"timeActual\": \"2021-01-16T02:34:52.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:34:52Z\", \"orderNumber\": 5660000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 574, \"clock\": \"PT04M42.00S\", \"timeActual\": \"2021-01-16T02:35:12.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628407, \"x\": 19.267411300919843, \"y\": 52.27481617647059, \"side\": \"left\", \"shotDistance\": 12.91, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:21Z\", \"orderNumber\": 5670000, \"xLegacy\": -11, \"yLegacy\": 129, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS D. Bacon 12' Jump Shot\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 575, \"clock\": \"PT04M38.00S\", \"timeActual\": \"2021-01-16T02:35:16.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:21Z\", \"orderNumber\": 5680000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 574, \"reboundTotal\": 2, \"reboundDefensiveTotal\": 2, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:2)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 576, \"clock\": \"PT04M21.00S\", \"timeActual\": \"2021-01-16T02:35:33.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 78.79434954007884, \"y\": 92.9610906862745, \"side\": \"right\", \"shotDistance\": 26.02, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:39Z\", \"orderNumber\": 5690000, \"xLegacy\": 215, \"yLegacy\": 147, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye 26' 3PT\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 577, \"clock\": \"PT04M19.00S\", \"timeActual\": \"2021-01-16T02:35:35.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:39Z\", \"orderNumber\": 5700000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 576, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"G. Clark REBOUND (Off:0 Def:3)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 578, \"clock\": \"PT04M10.00S\", \"timeActual\": \"2021-01-16T02:35:44.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 203920, \"x\": 32.013797634691194, \"y\": 63.05912990196079, \"side\": \"left\", \"shotDistance\": 25.68, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:50Z\", \"orderNumber\": 5710000, \"xLegacy\": -65, \"yLegacy\": 248, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS K. Birch 25' 3PT\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 579, \"clock\": \"PT04M06.00S\", \"timeActual\": \"2021-01-16T02:35:48.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:50Z\", \"orderNumber\": 5720000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 578, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:4)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 580, \"clock\": \"PT04M03.00S\", \"timeActual\": \"2021-01-16T02:35:55.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"timeout\", \"subType\": \"full\", \"qualifiers\": [\"team\", \"mandatory\"], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:35:55Z\", \"orderNumber\": 5730000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"BOS Timeout\", \"personIdsFilter\": []}, {\"actionNumber\": 581, \"clock\": \"PT04M03.00S\", \"timeActual\": \"2021-01-16T02:37:36.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"out\", \"qualifiers\": [], \"personId\": 1628407, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:38:15Z\", \"orderNumber\": 5740000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB out: D. Bacon\", \"playerName\": \"Bacon\", \"playerNameI\": \"D. Bacon\", \"personIdsFilter\": [1628407]}, {\"actionNumber\": 582, \"clock\": \"PT04M03.00S\", \"timeActual\": \"2021-01-16T02:37:36.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"substitution\", \"subType\": \"in\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:38:15Z\", \"orderNumber\": 5750000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"SUB in: C. Anthony\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 583, \"clock\": \"PT03M53.00S\", \"timeActual\": \"2021-01-16T02:38:59.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"traveling\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:39:05Z\", \"officialId\": 202041, \"orderNumber\": 5760000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"A. Nesmith traveling TURNOVER (1 TO)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 584, \"clock\": \"PT03M42.00S\", \"timeActual\": \"2021-01-16T02:39:22.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"qualifiers\": [], \"personId\": 1629750, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:39:32Z\", \"officialId\": 202041, \"orderNumber\": 5770000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"J. Green personal FOUL (2 PF)\", \"playerName\": \"Green\", \"playerNameI\": \"J. Green\", \"personIdsFilter\": [1629750, 1630175], \"foulDrawnPlayerName\": \"Anthony\", \"foulDrawnPersonId\": 1630175}, {\"actionNumber\": 586, \"clock\": \"PT03M36.00S\", \"timeActual\": \"2021-01-16T02:39:45.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"pullup\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630175, \"x\": 24.129434954007884, \"y\": 30.215992647058826, \"side\": \"left\", \"shotDistance\": 20.04, \"possession\": 1610612753, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:39:52Z\", \"orderNumber\": 5790000, \"xLegacy\": 99, \"yLegacy\": 174, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 20' pullup Shot\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 587, \"clock\": \"PT03M33.00S\", \"timeActual\": \"2021-01-16T02:39:48.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"113\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:39:52Z\", \"orderNumber\": 5800000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 586, \"reboundTotal\": 3, \"reboundDefensiveTotal\": 3, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:3)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 588, \"clock\": \"PT03M26.00S\", \"timeActual\": \"2021-01-16T02:39:56.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"alley-oop\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629605, \"x\": 92.9862023653088, \"y\": 48.84344362745098, \"side\": \"right\", \"shotDistance\": 1.46, \"possession\": 1610612738, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:03Z\", \"orderNumber\": 5810000, \"xLegacy\": -6, \"yLegacy\": 13, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 2, \"description\": \"T. Fall alley-oop DUNK (2 PTS) (T. Waters 3 AST)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 3}, {\"actionNumber\": 590, \"clock\": \"PT03M07.00S\", \"timeActual\": \"2021-01-16T02:40:15.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving finger roll\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630211, \"x\": 5.863994743758213, \"y\": 58.40226715686274, \"side\": \"left\", \"shotDistance\": 4.21, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:29Z\", \"orderNumber\": 5830000, \"xLegacy\": -42, \"yLegacy\": 3, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS K. Mane driving finger roll Layup - blocked\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211, 1629605], \"blockPlayerName\": \"Fall\", \"blockPersonId\": 1629605}, {\"actionNumber\": 591, \"clock\": \"PT03M07.00S\", \"timeActual\": \"2021-01-16T02:40:15.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:18Z\", \"orderNumber\": 5840000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"T. Fall BLOCK (1 BLK)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 592, \"clock\": \"PT03M03.00S\", \"timeActual\": \"2021-01-16T02:40:19.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:29Z\", \"orderNumber\": 5850000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 590, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 1, \"description\": \"C. Anthony REBOUND (Off:1 Def:5)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 605, \"clock\": \"PT03M03.00S\", \"timeActual\": \"2021-01-16T02:40:32.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1630175, \"x\": 6.783837056504599, \"y\": 49.82383578431372, \"side\": \"left\", \"shotDistance\": 1.13, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:48:24Z\", \"orderNumber\": 5855000, \"xLegacy\": 1, \"yLegacy\": 11, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony Jump Shot - blocked\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1630174], \"blockPlayerName\": \"Nesmith\", \"blockPersonId\": 1630174}, {\"actionNumber\": 606, \"clock\": \"PT03M03.00S\", \"timeActual\": \"2021-01-16T02:40:32.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"block\", \"qualifiers\": [], \"personId\": 1630174, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:56Z\", \"orderNumber\": 5857500, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"A. Nesmith BLOCK (1 BLK)\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 607, \"clock\": \"PT03M03.00S\", \"timeActual\": \"2021-01-16T02:40:32.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"offensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:48:24Z\", \"orderNumber\": 5858750, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 605, \"description\": \"TEAM offensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 593, \"clock\": \"PT03M01.00S\", \"timeActual\": \"2021-01-16T02:40:48.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"jumpball\", \"subType\": \"recovered\", \"descriptor\": \"heldball\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:48:15Z\", \"orderNumber\": 5860000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"jumpBallRecoveredName\": \"C. Anthony\", \"jumpBallRecoverdPersonId\": 1630175, \"side\": null, \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175, 1630211, 1629682], \"jumpBallWonPlayerName\": \"Mane\", \"jumpBallWonPersonId\": 1630211, \"description\": \"Jump Ball K. Mane vs. T. Waters: Tip to C. Anthony\", \"jumpBallLostPlayerName\": \"Waters\", \"jumpBallLostPersonId\": 1629682}, {\"actionNumber\": 596, \"clock\": \"PT02M57.00S\", \"timeActual\": \"2021-01-16T02:40:51.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"driving floating\", \"qualifiers\": [\"pointsinthepaint\", \"2ndchance\"], \"personId\": 1630175, \"x\": 5.995400788436268, \"y\": 63.05912990196079, \"side\": \"left\", \"shotDistance\": 6.54, \"possession\": 1610612753, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:56Z\", \"orderNumber\": 5890000, \"xLegacy\": -65, \"yLegacy\": 4, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 6' driving floating Shot\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 597, \"clock\": \"PT02M55.00S\", \"timeActual\": \"2021-01-16T02:40:53.4Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"115\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:40:53Z\", \"orderNumber\": 5900000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 596, \"reboundTotal\": 4, \"reboundDefensiveTotal\": 4, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:4)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 598, \"clock\": \"PT02M44.00S\", \"timeActual\": \"2021-01-16T02:41:07.3Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1628400, \"x\": 90.75229960578186, \"y\": 52.029718137254896, \"side\": \"right\", \"shotDistance\": 3.59, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:13Z\", \"orderNumber\": 5910000, \"xLegacy\": 10, \"yLegacy\": 34, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"S. Ojeleye driving Layup (15 PTS) (T. Waters 4 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 4}, {\"actionNumber\": 600, \"clock\": \"PT02M44.00S\", \"timeActual\": \"2021-01-16T02:41:11.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"inpenalty\", \"1freethrow\"], \"personId\": 1630211, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:17Z\", \"officialId\": 201638, \"orderNumber\": 5930000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 2, \"foulTechnicalTotal\": 0, \"description\": \"K. Mane shooting personal FOUL (2 PF) (Ojeleye 1 FT)\", \"playerName\": \"Mane\", \"playerNameI\": \"K. Mane\", \"personIdsFilter\": [1630211, 1628400], \"foulDrawnPlayerName\": \"Ojeleye\", \"foulDrawnPersonId\": 1628400}, {\"actionNumber\": 602, \"clock\": \"PT02M44.00S\", \"timeActual\": \"2021-01-16T02:41:34.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:01Z\", \"orderNumber\": 5950000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS S. Ojeleye Free Throw 1 of 1\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 603, \"clock\": \"PT02M42.00S\", \"timeActual\": \"2021-01-16T02:41:36.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:01Z\", \"orderNumber\": 5960000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 602, \"description\": \"TEAM defensive REBOUND\", \"personIdsFilter\": []}, {\"actionNumber\": 604, \"clock\": \"PT02M42.00S\", \"timeActual\": \"2021-01-16T02:41:38.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"out-of-bounds\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:41:38Z\", \"orderNumber\": 5970000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 608, \"clock\": \"PT02M32.00S\", \"timeActual\": \"2021-01-16T02:41:56.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"turnover\", \"subType\": \"out-of-bounds\", \"descriptor\": \"bad pass\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:05Z\", \"officialId\": 1627541, \"orderNumber\": 5980000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 1, \"description\": \"G. Clark bad pass out-of-bounds TURNOVER (1 TO)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 609, \"clock\": \"PT02M20.00S\", \"timeActual\": \"2021-01-16T02:42:15.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fromturnover\"], \"personId\": 1630174, \"x\": 85.89027595269383, \"y\": 95.41207107843137, \"side\": \"right\", \"shotDistance\": 24.08, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:21Z\", \"orderNumber\": 5990000, \"xLegacy\": 227, \"yLegacy\": 80, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS A. Nesmith 24' 3PT\", \"playerName\": \"Nesmith\", \"playerNameI\": \"A. Nesmith\", \"personIdsFilter\": [1630174]}, {\"actionNumber\": 610, \"clock\": \"PT02M17.00S\", \"timeActual\": \"2021-01-16T02:42:18.0Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 203920, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"91\", \"edited\": \"2021-01-16T02:42:21Z\", \"orderNumber\": 6000000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 609, \"reboundTotal\": 12, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 7, \"description\": \"K. Birch REBOUND (Off:7 Def:5)\", \"playerName\": \"Birch\", \"playerNameI\": \"K. Birch\", \"personIdsFilter\": [203920]}, {\"actionNumber\": 611, \"clock\": \"PT02M08.00S\", \"timeActual\": \"2021-01-16T02:42:26.5Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Hook\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629648, \"x\": 14.4053876478318, \"y\": 45.41207107843137, \"side\": \"left\", \"shotDistance\": 8.6, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:34Z\", \"orderNumber\": 6010000, \"xLegacy\": 23, \"yLegacy\": 83, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 9, \"description\": \"J. Bone 8' driving Hook (9 PTS)\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 612, \"clock\": \"PT02M00.00S\", \"timeActual\": \"2021-01-16T02:42:34.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"bad pass\", \"qualifiers\": [], \"personId\": 1629682, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:41Z\", \"orderNumber\": 6020000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"turnoverTotal\": 2, \"description\": \"T. Waters bad pass TURNOVER (2 TO)\", \"playerName\": \"Waters\", \"playerNameI\": \"T. Waters\", \"personIdsFilter\": [1629682, 1629109], \"stealPlayerName\": \"Clark\", \"stealPersonId\": 1629109}, {\"actionNumber\": 613, \"clock\": \"PT02M00.00S\", \"timeActual\": \"2021-01-16T02:42:34.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"steal\", \"qualifiers\": [], \"personId\": 1629109, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:36Z\", \"orderNumber\": 6030000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"G. Clark STEAL (1 STL)\", \"playerName\": \"Clark\", \"playerNameI\": \"G. Clark\", \"personIdsFilter\": [1629109]}, {\"actionNumber\": 614, \"clock\": \"PT01M55.00S\", \"timeActual\": \"2021-01-16T02:42:40.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [\"fromturnover\", \"fastbreak\"], \"personId\": 1629648, \"x\": 4.5499342969776615, \"y\": 96.39246323529412, \"side\": \"left\", \"shotDistance\": 23.22, \"possession\": 1610612753, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:47Z\", \"orderNumber\": 6040000, \"xLegacy\": -232, \"yLegacy\": -10, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS J. Bone 3PT\", \"playerName\": \"Bone\", \"playerNameI\": \"J. Bone\", \"personIdsFilter\": [1629648]}, {\"actionNumber\": 615, \"clock\": \"PT01M51.00S\", \"timeActual\": \"2021-01-16T02:42:44.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"117\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:42:47Z\", \"orderNumber\": 6050000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 614, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 0, \"description\": \"T. Fall REBOUND (Off:0 Def:5)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 616, \"clock\": \"PT01M28.00S\", \"timeActual\": \"2021-01-16T02:43:06.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1628400, \"x\": 63.15703022339028, \"y\": 26.53952205882353, \"side\": \"right\", \"shotDistance\": 31.64, \"possession\": 1610612738, \"scoreHome\": \"120\", \"scoreAway\": \"93\", \"edited\": \"2021-01-16T02:43:13Z\", \"orderNumber\": 6060000, \"xLegacy\": -117, \"yLegacy\": 294, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 18, \"description\": \"S. Ojeleye 31' 3PT (18 PTS) (A. Nesmith 2 AST)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400, 1630174], \"assistPlayerNameInitial\": \"A. Nesmith\", \"assistPersonId\": 1630174, \"assistTotal\": 2}, {\"actionNumber\": 618, \"clock\": \"PT01M07.00S\", \"timeActual\": \"2021-01-16T02:43:32.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving reverse\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 5.863994743758213, \"y\": 45.41207107843137, \"side\": \"left\", \"shotDistance\": 2.3, \"possession\": 1610612753, \"scoreHome\": \"120\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:43:39Z\", \"orderNumber\": 6080000, \"xLegacy\": 23, \"yLegacy\": 3, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 13, \"description\": \"C. Anthony driving reverse Layup (13 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 619, \"clock\": \"PT00M58.40S\", \"timeActual\": \"2021-01-16T02:43:46.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"Jump Shot\", \"descriptor\": \"bank\", \"qualifiers\": [], \"personId\": 1629605, \"x\": 75.16425755584757, \"y\": 24.60171568627451, \"side\": \"right\", \"shotDistance\": 22.11, \"possession\": 1610612738, \"scoreHome\": \"122\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:44:12Z\", \"orderNumber\": 6090000, \"xLegacy\": -127, \"yLegacy\": 181, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 4, \"description\": \"T. Fall 22' bank Jump Shot (4 PTS) (T. Waters 5 AST)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605, 1629682], \"assistPlayerNameInitial\": \"T. Waters\", \"assistPersonId\": 1629682, \"assistTotal\": 5}, {\"actionNumber\": 621, \"clock\": \"PT00M51.30S\", \"timeActual\": \"2021-01-16T02:43:58.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"3pt\", \"subType\": \"Jump Shot\", \"qualifiers\": [], \"personId\": 1630175, \"x\": 23.866622864651774, \"y\": 84.1375612745098, \"side\": \"left\", \"shotDistance\": 24.22, \"possession\": 1610612753, \"scoreHome\": \"122\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:44:08Z\", \"orderNumber\": 6110000, \"xLegacy\": -171, \"yLegacy\": 172, \"isFieldGoal\": 1, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony 24' 3PT\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 622, \"clock\": \"PT00M47.40S\", \"timeActual\": \"2021-01-16T02:44:02.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"122\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:44:02Z\", \"orderNumber\": 6120000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 621, \"reboundTotal\": 5, \"reboundDefensiveTotal\": 5, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:5)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 623, \"clock\": \"PT00M37.50S\", \"timeActual\": \"2021-01-16T02:44:12.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"2pt\", \"subType\": \"DUNK\", \"descriptor\": \"driving\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1629605, \"x\": 90.3580814717477, \"y\": 49.82383578431372, \"side\": \"right\", \"shotDistance\": 3.81, \"possession\": 1610612738, \"scoreHome\": \"124\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:45:36Z\", \"orderNumber\": 6130000, \"xLegacy\": -1, \"yLegacy\": 38, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 6, \"description\": \"T. Fall driving DUNK (6 PTS)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605]}, {\"actionNumber\": 625, \"clock\": \"PT00M37.50S\", \"timeActual\": \"2021-01-16T02:44:19.2Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"stoppage\", \"subType\": \"equipment issue\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"95\", \"edited\": \"2021-01-16T02:44:33Z\", \"orderNumber\": 6150000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"personIdsFilter\": []}, {\"actionNumber\": 626, \"clock\": \"PT00M27.70S\", \"timeActual\": \"2021-01-16T02:44:38.6Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"2pt\", \"subType\": \"Layup\", \"descriptor\": \"driving reverse\", \"qualifiers\": [\"pointsinthepaint\"], \"personId\": 1630175, \"x\": 7.752956636005257, \"y\": 47.64093137254902, \"side\": \"left\", \"shotDistance\": 2.36, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:44:46Z\", \"orderNumber\": 6160000, \"xLegacy\": 12, \"yLegacy\": 20, \"isFieldGoal\": 1, \"shotResult\": \"Made\", \"pointsTotal\": 15, \"description\": \"C. Anthony driving reverse Layup (15 PTS)\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 627, \"clock\": \"PT00M27.70S\", \"timeActual\": \"2021-01-16T02:44:41.9Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"foul\", \"subType\": \"personal\", \"descriptor\": \"shooting\", \"qualifiers\": [\"inpenalty\", \"1freethrow\"], \"personId\": 1629605, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:44:50Z\", \"officialId\": 202041, \"orderNumber\": 6170000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"foulPersonalTotal\": 1, \"foulTechnicalTotal\": 0, \"description\": \"T. Fall shooting personal FOUL (1 PF) (Anthony 1 FT)\", \"playerName\": \"Fall\", \"playerNameI\": \"T. Fall\", \"personIdsFilter\": [1629605, 1630175], \"foulDrawnPlayerName\": \"Anthony\", \"foulDrawnPersonId\": 1630175}, {\"actionNumber\": 629, \"clock\": \"PT00M27.70S\", \"timeActual\": \"2021-01-16T02:45:11.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612753, \"teamTricode\": \"ORL\", \"actionType\": \"freethrow\", \"subType\": \"1 of 1\", \"qualifiers\": [], \"personId\": 1630175, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:45:14Z\", \"orderNumber\": 6190000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotResult\": \"Missed\", \"description\": \"MISS C. Anthony Free Throw 1 of 1\", \"playerName\": \"Anthony\", \"playerNameI\": \"C. Anthony\", \"personIdsFilter\": [1630175]}, {\"actionNumber\": 630, \"clock\": \"PT00M27.70S\", \"timeActual\": \"2021-01-16T02:45:11.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"rebound\", \"subType\": \"defensive\", \"qualifiers\": [], \"personId\": 1628400, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:45:25Z\", \"orderNumber\": 6200000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"shotActionNumber\": 629, \"reboundTotal\": 6, \"reboundDefensiveTotal\": 6, \"reboundOffensiveTotal\": 0, \"description\": \"S. Ojeleye REBOUND (Off:0 Def:6)\", \"playerName\": \"Ojeleye\", \"playerNameI\": \"S. Ojeleye\", \"personIdsFilter\": [1628400]}, {\"actionNumber\": 631, \"clock\": \"PT00M03.70S\", \"timeActual\": \"2021-01-16T02:45:39.7Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"teamId\": 1610612738, \"teamTricode\": \"BOS\", \"actionType\": \"turnover\", \"subType\": \"shot clock\", \"qualifiers\": [\"team\"], \"personId\": 0, \"x\": null, \"y\": null, \"side\": null, \"possession\": 1610612738, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:45:46Z\", \"officialId\": 1627541, \"orderNumber\": 6210000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"description\": \"BOS shot clock Team TURNOVER\", \"personIdsFilter\": []}, {\"actionNumber\": 632, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T02:45:52.8Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"period\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 1610612753, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:45:52Z\", \"orderNumber\": 6220000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Period End\", \"personIdsFilter\": []}, {\"actionNumber\": 633, \"clock\": \"PT00M00.00S\", \"timeActual\": \"2021-01-16T02:46:17.1Z\", \"period\": 4, \"periodType\": \"REGULAR\", \"actionType\": \"game\", \"subType\": \"end\", \"qualifiers\": [], \"personId\": 0, \"x\": null, \"y\": null, \"possession\": 0, \"scoreHome\": \"124\", \"scoreAway\": \"97\", \"edited\": \"2021-01-16T02:46:17Z\", \"orderNumber\": 6230000, \"xLegacy\": null, \"yLegacy\": null, \"isFieldGoal\": 0, \"side\": null, \"description\": \"Game End\", \"personIdsFilter\": []}]}}\n" + "2: 1:PT12M00.00S (period)\n", + "4: 1:PT11M58.00S Grant Williams (jumpball)\n", + "7: 1:PT11M47.00S Julius Randle (foul)\n", + "9: 1:PT11M47.00S Grant Williams (freethrow)\n", + "10: 1:PT11M47.00S (rebound)\n", + "11: 1:PT11M47.00S Grant Williams (freethrow)\n", + "12: 1:PT11M45.00S Julius Randle (rebound)\n", + "13: 1:PT11M25.00S RJ Barrett (turnover)\n", + "14: 1:PT11M25.00S Kemba Walker (steal)\n", + "15: 1:PT11M21.00S Kemba Walker (turnover)\n", + "16: 1:PT11M07.00S RJ Barrett (2pt)\n", + "17: 1:PT11M06.00S Mitchell Robinson (rebound)\n", + "18: 1:PT11M06.00S Mitchell Robinson (2pt)\n", + "19: 1:PT10M53.00S Tristan Thompson (2pt)\n", + "21: 1:PT10M26.00S RJ Barrett (3pt)\n", + "22: 1:PT10M24.00S Reggie Bullock (rebound)\n", + "23: 1:PT10M17.00S Julius Randle (3pt)\n", + "24: 1:PT10M01.00S Marcus Smart (3pt)\n", + "25: 1:PT09M58.00S Elfrid Payton (rebound)\n", + "26: 1:PT09M50.00S Elfrid Payton (2pt)\n", + "27: 1:PT09M50.00S (timeout)\n", + "28: 1:PT09M35.00S Kemba Walker (3pt)\n", + "29: 1:PT09M29.00S RJ Barrett (rebound)\n", + "30: 1:PT09M20.00S Reggie Bullock (3pt)\n", + "31: 1:PT09M18.00S Kemba Walker (rebound)\n", + "32: 1:PT09M09.00S Grant Williams (2pt)\n", + "34: 1:PT08M57.00S Kemba Walker (foul)\n", + "36: 1:PT08M43.00S Julius Randle (2pt)\n", + "37: 1:PT08M41.00S Grant Williams (rebound)\n", + "38: 1:PT08M31.00S Kemba Walker (turnover)\n", + "39: 1:PT08M20.00S Reggie Bullock (3pt)\n", + "40: 1:PT08M16.00S Jaylen Brown (rebound)\n", + "41: 1:PT08M09.00S Mitchell Robinson (foul)\n", + "43: 1:PT07M58.00S Grant Williams (3pt)\n", + "44: 1:PT07M56.00S RJ Barrett (rebound)\n", + "45: 1:PT07M53.00S Grant Williams (foul)\n", + "47: 1:PT07M53.00S Julius Randle (freethrow)\n", + "48: 1:PT07M53.00S (rebound)\n", + "49: 1:PT07M53.00S Julius Randle (freethrow)\n", + "50: 1:PT07M36.00S Kemba Walker (turnover)\n", + "51: 1:PT07M36.00S Julius Randle (steal)\n", + "52: 1:PT07M24.00S RJ Barrett (foul)\n", + "54: 1:PT07M24.00S RJ Barrett (turnover)\n", + "55: 1:PT07M14.00S (stoppage)\n", + "56: 1:PT07M14.00S Kemba Walker (substitution)\n", + "57: 1:PT07M14.00S Jeff Teague (substitution)\n", + "58: 1:PT07M06.00S Jaylen Brown (3pt)\n", + "59: 1:PT07M02.00S Julius Randle (rebound)\n", + "60: 1:PT06M52.00S Reggie Bullock (3pt)\n", + "62: 1:PT06M36.00S Marcus Smart (3pt)\n", + "63: 1:PT06M33.00S Jaylen Brown (rebound)\n", + "64: 1:PT06M31.00S Jaylen Brown (2pt)\n", + "65: 1:PT06M31.00S Tristan Thompson (rebound)\n", + "66: 1:PT06M27.00S Tristan Thompson (turnover)\n", + "67: 1:PT06M27.00S RJ Barrett (steal)\n", + "68: 1:PT06M12.00S Elfrid Payton (2pt)\n", + "69: 1:PT06M10.00S Mitchell Robinson (rebound)\n", + "70: 1:PT06M08.00S Reggie Bullock (3pt)\n", + "71: 1:PT06M05.00S (rebound)\n", + "72: 1:PT06M05.00S (stoppage)\n", + "73: 1:PT05M52.00S Jaylen Brown (3pt)\n", + "75: 1:PT05M41.00S Jeff Teague (foul)\n", + "77: 1:PT05M41.00S Elfrid Payton (freethrow)\n", + "78: 1:PT05M41.00S Grant Williams (substitution)\n", + "79: 1:PT05M41.00S Tristan Thompson (substitution)\n", + "80: 1:PT05M41.00S Daniel Theis (substitution)\n", + "81: 1:PT05M41.00S Semi Ojeleye (substitution)\n", + "82: 1:PT05M41.00S Elfrid Payton (freethrow)\n", + "83: 1:PT05M17.00S Jeff Teague (2pt)\n", + "84: 1:PT05M13.00S RJ Barrett (rebound)\n", + "85: 1:PT05M02.00S RJ Barrett (2pt)\n", + "86: 1:PT04M43.00S Jeff Teague (3pt)\n", + "87: 1:PT04M43.00S Mitchell Robinson (block)\n", + "88: 1:PT04M43.00S (rebound)\n", + "89: 1:PT04M43.00S Jeff Teague (foul)\n", + "91: 1:PT04M43.00S Mitchell Robinson (substitution)\n", + "92: 1:PT04M43.00S Reggie Bullock (substitution)\n", + "93: 1:PT04M43.00S Austin Rivers (substitution)\n", + "94: 1:PT04M43.00S Nerlens Noel (substitution)\n", + "95: 1:PT04M27.00S Julius Randle (2pt)\n", + "96: 1:PT04M26.00S Jeff Teague (rebound)\n", + "97: 1:PT04M20.00S Jaylen Brown (3pt)\n", + "99: 1:PT04M06.00S Julius Randle (2pt)\n", + "101: 1:PT03M54.00S Jaylen Brown (3pt)\n", + "103: 1:PT03M32.00S RJ Barrett (2pt)\n", + "104: 1:PT03M31.00S RJ Barrett (rebound)\n", + "105: 1:PT03M31.00S Jaylen Brown (foul)\n", + "107: 1:PT03M31.00S RJ Barrett (freethrow)\n", + "108: 1:PT03M31.00S Marcus Smart (substitution)\n", + "109: 1:PT03M31.00S Payton Pritchard (substitution)\n", + "110: 1:PT03M31.00S RJ Barrett (freethrow)\n", + "111: 1:PT03M21.00S Elfrid Payton (foul)\n", + "113: 1:PT03M10.00S Payton Pritchard (3pt)\n", + "114: 1:PT03M07.00S Nerlens Noel (rebound)\n", + "115: 1:PT02M51.00S Julius Randle (3pt)\n", + "116: 1:PT02M47.00S RJ Barrett (rebound)\n", + "117: 1:PT02M44.00S Julius Randle (2pt)\n", + "119: 1:PT02M27.00S Daniel Theis (2pt)\n", + "121: 1:PT02M07.00S RJ Barrett (3pt)\n", + "123: 1:PT01M55.00S Jaylen Brown (2pt)\n", + "125: 1:PT01M43.00S Austin Rivers (3pt)\n", + "126: 1:PT01M40.00S Daniel Theis (rebound)\n", + "127: 1:PT01M32.00S Jeff Teague (2pt)\n", + "128: 1:PT01M32.00S Julius Randle (rebound)\n", + "129: 1:PT01M11.00S Elfrid Payton (2pt)\n", + "130: 1:PT01M08.00S Jeff Teague (rebound)\n", + "131: 1:PT01M05.00S Jeff Teague (turnover)\n", + "132: 1:PT01M05.00S Elfrid Payton (steal)\n", + "133: 1:PT01M02.00S Elfrid Payton (2pt)\n", + "134: 1:PT01M00.00S RJ Barrett (rebound)\n", + "135: 1:PT01M00.00S Jaylen Brown (foul)\n", + "137: 1:PT01M00.00S (timeout)\n", + "139: 1:PT01M00.00S Elfrid Payton (substitution)\n", + "141: 1:PT01M00.00S Immanuel Quickley (substitution)\n", + "142: 1:PT01M00.00S RJ Barrett (freethrow)\n", + "143: 1:PT01M00.00S RJ Barrett (freethrow)\n", + "145: 1:PT00M45.00S Jaylen Brown (turnover)\n", + "146: 1:PT00M45.00S RJ Barrett (steal)\n", + "147: 1:PT00M34.70S Julius Randle (2pt)\n", + "148: 1:PT00M31.80S Daniel Theis (rebound)\n", + "175: 1:PT00M31.80S Daniel Theis (turnover)\n", + "183: 1:PT00M31.80S Julius Randle (steal)\n", + "149: 1:PT00M31.80S Julius Randle (2pt)\n", + "150: 1:PT00M19.10S Semi Ojeleye (3pt)\n", + "151: 1:PT00M17.70S Daniel Theis (rebound)\n", + "152: 1:PT00M13.30S Payton Pritchard (jumpball)\n", + "155: 1:PT00M01.40S (turnover)\n", + "156: 1:PT00M01.40S (stoppage)\n", + "157: 1:PT00M01.40S Payton Pritchard (substitution)\n", + "158: 1:PT00M01.40S Tristan Thompson (substitution)\n", + "159: 1:PT00M00.00S (period)\n", + "160: 2:PT12M00.00S Jaylen Brown (substitution)\n", + "161: 2:PT12M00.00S Jeff Teague (substitution)\n", + "162: 2:PT12M00.00S Tristan Thompson (substitution)\n", + "163: 2:PT12M00.00S RJ Barrett (substitution)\n", + "164: 2:PT12M00.00S Julius Randle (substitution)\n", + "165: 2:PT12M00.00S Payton Pritchard (substitution)\n", + "166: 2:PT12M00.00S Javonte Green (substitution)\n", + "167: 2:PT12M00.00S Kemba Walker (substitution)\n", + "168: 2:PT12M00.00S Obi Toppin (substitution)\n", + "169: 2:PT12M00.00S Kevin Knox II (substitution)\n", + "170: 2:PT12M00.00S (period)\n", + "171: 2:PT11M41.00S Immanuel Quickley (3pt)\n", + "172: 2:PT11M38.00S Javonte Green (rebound)\n", + "173: 2:PT11M26.00S Kemba Walker (2pt)\n", + "174: 2:PT11M23.00S (rebound)\n", + "176: 2:PT11M23.00S (stoppage)\n", + "177: 2:PT11M01.00S Obi Toppin (3pt)\n", + "178: 2:PT10M59.00S Javonte Green (rebound)\n", + "179: 2:PT10M48.00S Kemba Walker (2pt)\n", + "180: 2:PT10M34.00S Obi Toppin (2pt)\n", + "182: 2:PT10M22.00S Kemba Walker (3pt)\n", + "184: 2:PT09M59.00S Austin Rivers (2pt)\n", + "185: 2:PT09M59.00S Payton Pritchard (rebound)\n", + "186: 2:PT09M52.00S Kemba Walker (3pt)\n", + "187: 2:PT09M49.00S Austin Rivers (rebound)\n", + "188: 2:PT09M29.00S Immanuel Quickley (2pt)\n", + "247: 2:PT09M29.00S Payton Pritchard (block)\n", + "189: 2:PT09M27.00S Daniel Theis (rebound)\n", + "190: 2:PT09M25.00S Daniel Theis (turnover)\n", + "191: 2:PT09M25.00S Nerlens Noel (steal)\n", + "192: 2:PT09M22.00S Immanuel Quickley (3pt)\n", + "193: 2:PT09M12.00S Nerlens Noel (foul)\n", + "195: 2:PT09M03.00S Daniel Theis (2pt)\n", + "197: 2:PT08M44.00S Immanuel Quickley (2pt)\n", + "198: 2:PT08M42.00S Semi Ojeleye (rebound)\n", + "199: 2:PT08M33.00S Kemba Walker (2pt)\n", + "200: 2:PT08M30.00S Kevin Knox II (rebound)\n", + "201: 2:PT08M21.00S Kevin Knox II (2pt)\n", + "202: 2:PT08M19.00S (rebound)\n", + "203: 2:PT08M19.00S (stoppage)\n", + "204: 2:PT08M19.00S Daniel Theis (substitution)\n", + "205: 2:PT08M19.00S Tristan Thompson (substitution)\n", + "206: 2:PT08M08.00S Kemba Walker (turnover)\n", + "207: 2:PT07M56.00S Kevin Knox II (3pt)\n", + "208: 2:PT07M52.00S Kemba Walker (rebound)\n", + "209: 2:PT07M43.00S Semi Ojeleye (foul)\n", + "211: 2:PT07M43.00S Semi Ojeleye (turnover)\n", + "212: 2:PT07M43.00S Nerlens Noel (substitution)\n", + "213: 2:PT07M43.00S Mitchell Robinson (substitution)\n", + "215: 2:PT07M24.00S Immanuel Quickley (2pt)\n", + "216: 2:PT07M14.00S Kemba Walker (2pt)\n", + "217: 2:PT07M14.00S Mitchell Robinson (foul)\n", + "219: 2:PT07M14.00S Kemba Walker (freethrow)\n", + "220: 2:PT06M53.00S Obi Toppin (turnover)\n", + "221: 2:PT06M53.00S (timeout)\n", + "222: 2:PT06M37.00S Javonte Green (2pt)\n", + "224: 2:PT06M11.00S Obi Toppin (2pt)\n", + "226: 2:PT05M59.00S Semi Ojeleye (3pt)\n", + "227: 2:PT05M57.00S Tristan Thompson (rebound)\n", + "228: 2:PT05M55.00S Tristan Thompson (2pt)\n", + "229: 2:PT05M54.00S Kevin Knox II (rebound)\n", + "230: 2:PT05M42.00S Obi Toppin (2pt)\n", + "231: 2:PT05M40.00S Payton Pritchard (rebound)\n", + "232: 2:PT05M34.00S Semi Ojeleye (3pt)\n", + "233: 2:PT05M32.00S Mitchell Robinson (rebound)\n", + "234: 2:PT05M19.00S Austin Rivers (foul)\n", + "236: 2:PT05M19.00S Austin Rivers (turnover)\n", + "237: 2:PT05M19.00S Kemba Walker (substitution)\n", + "238: 2:PT05M19.00S Marcus Smart (substitution)\n", + "239: 2:PT05M02.00S Semi Ojeleye (3pt)\n", + "240: 2:PT04M59.00S Mitchell Robinson (rebound)\n", + "241: 2:PT04M59.00S Payton Pritchard (substitution)\n" ] - } - ], - "source": [ - "# Query nba.live.endpoints for the score board of GameID 002200011 = IND vs NYK\n", - "from nba_api.live.nba.endpoints import playbyplay\n", - "print(playbyplay.PlayByPlay('0022000180').get_response())\n" - ] - }, - { - "cell_type": "code", - "execution_count": 49, - "metadata": { - "scrolled": true - }, - "outputs": [ + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "242: 2:PT04M59.00S Austin Rivers (substitution)\n", + "243: 2:PT04M59.00S Kevin Knox II (substitution)\n", + "244: 2:PT04M59.00S Jaylen Brown (substitution)\n", + "245: 2:PT04M59.00S RJ Barrett (substitution)\n", + "246: 2:PT04M59.00S Reggie Bullock (substitution)\n", + "248: 2:PT04M57.00S Semi Ojeleye (jumpball)\n", + "251: 2:PT04M57.00S Mitchell Robinson (turnover)\n", + "252: 2:PT04M57.00S Tristan Thompson (steal)\n", + "253: 2:PT04M48.00S Marcus Smart (2pt)\n", + "254: 2:PT04M44.00S Javonte Green (rebound)\n", + "255: 2:PT04M38.00S Marcus Smart (2pt)\n", + "256: 2:PT04M36.00S Obi Toppin (rebound)\n", + "257: 2:PT04M26.00S Immanuel Quickley (2pt)\n", + "271: 2:PT04M09.00S Jaylen Brown (turnover)\n", + "272: 2:PT04M09.00S Reggie Bullock (steal)\n", + "262: 2:PT04M05.00S Marcus Smart (foul)\n", + "264: 2:PT04M05.00S RJ Barrett (freethrow)\n", + "265: 2:PT04M05.00S (rebound)\n", + "266: 2:PT04M05.00S Semi Ojeleye (substitution)\n", + "267: 2:PT04M05.00S Obi Toppin (substitution)\n", + "268: 2:PT04M05.00S Grant Williams (substitution)\n", + "269: 2:PT04M05.00S Julius Randle (substitution)\n", + "270: 2:PT04M05.00S RJ Barrett (freethrow)\n", + "273: 2:PT03M46.00S Jaylen Brown (2pt)\n", + "274: 2:PT03M44.00S Julius Randle (rebound)\n", + "275: 2:PT03M33.00S Immanuel Quickley (turnover)\n", + "276: 2:PT03M33.00S Jaylen Brown (steal)\n", + "277: 2:PT03M30.00S Tristan Thompson (2pt)\n", + "278: 2:PT03M26.00S Reggie Bullock (rebound)\n", + "279: 2:PT03M23.00S Immanuel Quickley (2pt)\n", + "280: 2:PT03M01.00S Jaylen Brown (2pt)\n", + "281: 2:PT03M01.00S Reggie Bullock (rebound)\n", + "282: 2:PT02M50.00S Immanuel Quickley (2pt)\n", + "283: 2:PT02M36.00S Immanuel Quickley (foul)\n", + "285: 2:PT02M36.00S (timeout)\n", + "286: 2:PT02M36.00S Javonte Green (substitution)\n", + "287: 2:PT02M36.00S Immanuel Quickley (substitution)\n", + "288: 2:PT02M36.00S Jeff Teague (substitution)\n", + "289: 2:PT02M36.00S Elfrid Payton (substitution)\n", + "290: 2:PT02M28.00S Marcus Smart (3pt)\n", + "291: 2:PT02M27.00S (rebound)\n", + "292: 2:PT02M27.00S (stoppage)\n", + "293: 2:PT02M14.00S RJ Barrett (turnover)\n", + "294: 2:PT02M14.00S Marcus Smart (steal)\n", + "295: 2:PT02M04.00S Marcus Smart (2pt)\n", + "297: 2:PT02M04.00S RJ Barrett (foul)\n", + "299: 2:PT02M04.00S Marcus Smart (freethrow)\n", + "300: 2:PT02M02.00S Grant Williams (rebound)\n", + "301: 2:PT01M54.00S Jaylen Brown (3pt)\n", + "302: 2:PT01M51.00S Elfrid Payton (rebound)\n", + "303: 2:PT01M43.00S Reggie Bullock (2pt)\n", + "305: 2:PT01M32.00S Grant Williams (3pt)\n", + "306: 2:PT01M30.00S RJ Barrett (rebound)\n", + "307: 2:PT01M26.00S Grant Williams (foul)\n", + "309: 2:PT01M17.00S Reggie Bullock (jumpball)\n", + "312: 2:PT01M09.00S Elfrid Payton (2pt)\n", + "313: 2:PT01M09.00S Tristan Thompson (block)\n", + "314: 2:PT01M04.00S Mitchell Robinson (rebound)\n", + "315: 2:PT01M04.00S Mitchell Robinson (2pt)\n", + "316: 2:PT01M04.00S Elfrid Payton (rebound)\n", + "317: 2:PT01M00.00S Julius Randle (turnover)\n", + "318: 2:PT00M50.30S Mitchell Robinson (foul)\n", + "320: 2:PT00M50.30S Jaylen Brown (freethrow)\n", + "321: 2:PT00M50.30S Mitchell Robinson (substitution)\n", + "322: 2:PT00M50.30S Nerlens Noel (substitution)\n", + "323: 2:PT00M50.30S Jaylen Brown (freethrow)\n", + "324: 2:PT00M39.70S Julius Randle (2pt)\n", + "325: 2:PT00M39.10S (rebound)\n", + "326: 2:PT00M39.10S (stoppage)\n", + "327: 2:PT00M34.80S Jaylen Brown (foul)\n", + "329: 2:PT00M34.80S Julius Randle (freethrow)\n", + "330: 2:PT00M34.80S Julius Randle (freethrow)\n", + "331: 2:PT00M22.20S Marcus Smart (2pt)\n", + "332: 2:PT00M04.30S Elfrid Payton (turnover)\n", + "333: 2:PT00M04.30S Jeff Teague (steal)\n", + "334: 2:PT00M00.40S Jaylen Brown (3pt)\n", + "335: 2:PT00M00.40S Elfrid Payton (block)\n", + "336: 2:PT00M00.40S Reggie Bullock (rebound)\n", + "337: 2:PT00M00.00S (period)\n", + "338: 3:PT12M00.00S Jeff Teague (substitution)\n", + "339: 3:PT12M00.00S Nerlens Noel (substitution)\n", + "340: 3:PT12M00.00S Kemba Walker (substitution)\n", + "341: 3:PT12M00.00S Mitchell Robinson (substitution)\n", + "342: 3:PT12M00.00S (period)\n", + "343: 3:PT11M47.00S Mitchell Robinson (2pt)\n", + "345: 3:PT11M29.00S (stoppage)\n", + "346: 3:PT11M23.00S Kemba Walker (3pt)\n", + "347: 3:PT11M20.00S RJ Barrett (rebound)\n", + "348: 3:PT11M07.00S RJ Barrett (3pt)\n", + "350: 3:PT11M06.00S (timeout)\n", + "351: 3:PT11M06.00S Grant Williams (substitution)\n", + "352: 3:PT11M06.00S Daniel Theis (substitution)\n", + "353: 3:PT10M53.00S Kemba Walker (turnover)\n", + "354: 3:PT10M53.00S Julius Randle (steal)\n", + "355: 3:PT10M49.00S Reggie Bullock (3pt)\n", + "357: 3:PT10M24.00S Marcus Smart (3pt)\n", + "358: 3:PT10M20.00S Julius Randle (rebound)\n", + "359: 3:PT10M07.00S Reggie Bullock (3pt)\n", + "360: 3:PT10M03.00S Kemba Walker (rebound)\n", + "361: 3:PT09M50.00S Marcus Smart (2pt)\n", + "362: 3:PT09M50.00S Mitchell Robinson (block)\n", + "363: 3:PT09M48.00S Reggie Bullock (rebound)\n", + "364: 3:PT09M33.00S RJ Barrett (3pt)\n", + "365: 3:PT09M29.00S Jaylen Brown (rebound)\n", + "366: 3:PT09M24.00S Elfrid Payton (foul)\n", + "368: 3:PT09M19.00S Kemba Walker (3pt)\n", + "369: 3:PT09M15.00S Tristan Thompson (rebound)\n", + "370: 3:PT09M13.00S Kemba Walker (3pt)\n", + "371: 3:PT09M09.00S Julius Randle (rebound)\n", + "372: 3:PT09M01.00S Julius Randle (foul)\n", + "374: 3:PT09M01.00S Julius Randle (turnover)\n", + "375: 3:PT08M47.00S Jaylen Brown (3pt)\n", + "376: 3:PT08M47.00S (rebound)\n", + "377: 3:PT08M47.00S (stoppage)\n", + "378: 3:PT08M33.00S RJ Barrett (2pt)\n", + "379: 3:PT08M30.00S Daniel Theis (rebound)\n", + "380: 3:PT08M25.00S Kemba Walker (2pt)\n", + "381: 3:PT08M21.00S Jaylen Brown (rebound)\n", + "382: 3:PT08M20.00S Jaylen Brown (3pt)\n", + "383: 3:PT08M17.00S Elfrid Payton (rebound)\n", + "384: 3:PT08M10.00S Reggie Bullock (3pt)\n", + "385: 3:PT08M05.00S RJ Barrett (rebound)\n", + "386: 3:PT08M05.00S RJ Barrett (2pt)\n", + "387: 3:PT07M53.00S Marcus Smart (2pt)\n", + "388: 3:PT07M35.00S Mitchell Robinson (2pt)\n", + "390: 3:PT07M24.00S Jaylen Brown (2pt)\n", + "391: 3:PT07M05.00S Julius Randle (2pt)\n", + "393: 3:PT06M54.00S Reggie Bullock (foul)\n", + "395: 3:PT06M54.00S Kemba Walker (freethrow)\n", + "396: 3:PT06M54.00S Kemba Walker (freethrow)\n", + "397: 3:PT06M52.00S Julius Randle (rebound)\n", + "398: 3:PT06M40.00S Elfrid Payton (turnover)\n", + "399: 3:PT06M40.00S Kemba Walker (steal)\n", + "400: 3:PT06M37.00S Marcus Smart (3pt)\n", + "401: 3:PT06M34.00S Tristan Thompson (rebound)\n", + "402: 3:PT06M34.00S Mitchell Robinson (foul)\n", + "404: 3:PT06M34.00S Tristan Thompson (freethrow)\n", + "405: 3:PT06M34.00S (rebound)\n", + "406: 3:PT06M34.00S Mitchell Robinson (substitution)\n", + "407: 3:PT06M34.00S Nerlens Noel (substitution)\n", + "408: 3:PT06M34.00S Tristan Thompson (freethrow)\n", + "409: 3:PT06M20.00S Elfrid Payton (3pt)\n", + "410: 3:PT06M17.00S Tristan Thompson (rebound)\n", + "411: 3:PT06M03.00S Kemba Walker (3pt)\n", + "412: 3:PT06M00.00S Julius Randle (rebound)\n", + "414: 3:PT05M54.00S Marcus Smart (foul)\n", + "416: 3:PT05M54.00S Tristan Thompson (substitution)\n", + "417: 3:PT05M54.00S Semi Ojeleye (substitution)\n", + "418: 3:PT05M41.00S RJ Barrett (2pt)\n", + "419: 3:PT05M39.00S Daniel Theis (rebound)\n", + "420: 3:PT05M32.00S Daniel Theis (3pt)\n", + "422: 3:PT05M23.00S Elfrid Payton (2pt)\n", + "423: 3:PT05M23.00S Daniel Theis (foul)\n", + "425: 3:PT05M23.00S Elfrid Payton (freethrow)\n", + "426: 3:PT05M13.00S Kemba Walker (3pt)\n", + "427: 3:PT05M11.00S RJ Barrett (rebound)\n", + "428: 3:PT04M54.00S RJ Barrett (turnover)\n", + "429: 3:PT04M54.00S Kemba Walker (steal)\n", + "430: 3:PT04M49.00S Jaylen Brown (2pt)\n", + "432: 3:PT04M28.00S Elfrid Payton (2pt)\n", + "435: 3:PT04M11.00S Marcus Smart (2pt)\n", + "436: 3:PT04M09.00S Julius Randle (rebound)\n", + "437: 3:PT03M50.00S Reggie Bullock (turnover)\n", + "438: 3:PT03M50.00S (timeout)\n", + "439: 3:PT03M50.00S Kemba Walker (substitution)\n", + "440: 3:PT03M50.00S RJ Barrett (substitution)\n", + "441: 3:PT03M50.00S Payton Pritchard (substitution)\n", + "442: 3:PT03M50.00S Kevin Knox II (substitution)\n", + "443: 3:PT03M34.00S Daniel Theis (3pt)\n", + "444: 3:PT03M31.00S Payton Pritchard (rebound)\n", + "445: 3:PT03M27.00S Semi Ojeleye (3pt)\n", + "446: 3:PT03M26.00S (rebound)\n", + "447: 3:PT03M26.00S (stoppage)\n", + "448: 3:PT03M16.00S Elfrid Payton (2pt)\n", + "449: 3:PT03M13.00S Marcus Smart (rebound)\n", + "450: 3:PT03M08.00S Jaylen Brown (2pt)\n", + "451: 3:PT03M08.00S Nerlens Noel (block)\n", + "452: 3:PT03M06.00S Julius Randle (rebound)\n", + "453: 3:PT02M45.00S Julius Randle (3pt)\n", + "454: 3:PT02M44.00S Payton Pritchard (rebound)\n", + "455: 3:PT02M26.00S Payton Pritchard (turnover)\n", + "456: 3:PT02M26.00S Elfrid Payton (substitution)\n", + "457: 3:PT02M26.00S Immanuel Quickley (substitution)\n", + "458: 3:PT02M05.00S Julius Randle (2pt)\n", + "459: 3:PT02M05.00S Daniel Theis (foul)\n", + "461: 3:PT02M05.00S Reggie Bullock (substitution)\n", + "462: 3:PT02M05.00S Austin Rivers (substitution)\n", + "463: 3:PT02M05.00S Julius Randle (freethrow)\n", + "464: 3:PT01M53.00S Kevin Knox II (foul)\n", + "466: 3:PT01M53.00S Jaylen Brown (substitution)\n", + "467: 3:PT01M53.00S Marcus Smart (substitution)\n", + "468: 3:PT01M53.00S Aaron Nesmith (substitution)\n", + "469: 3:PT01M53.00S Javonte Green (substitution)\n", + "470: 3:PT01M47.00S Payton Pritchard (3pt)\n", + "471: 3:PT01M44.00S (rebound)\n", + "472: 3:PT01M44.00S (stoppage)\n", + "473: 3:PT01M35.00S Payton Pritchard (turnover)\n", + "474: 3:PT01M35.00S Nerlens Noel (steal)\n", + "475: 3:PT01M30.00S Nerlens Noel (2pt)\n", + "477: 3:PT01M07.00S Immanuel Quickley (foul)\n", + "479: 3:PT01M07.00S Javonte Green (freethrow)\n", + "480: 3:PT01M07.00S (rebound)\n", + "481: 3:PT01M07.00S Semi Ojeleye (substitution)\n", + "482: 3:PT01M07.00S Grant Williams (substitution)\n", + "483: 3:PT01M07.00S Javonte Green (freethrow)\n", + "484: 3:PT00M55.80S Immanuel Quickley (2pt)\n", + "485: 3:PT00M52.40S Daniel Theis (rebound)\n", + "486: 3:PT00M50.70S Payton Pritchard (3pt)\n", + "487: 3:PT00M40.00S Daniel Theis (violation)\n", + "488: 3:PT00M40.00S Julius Randle (substitution)\n", + "489: 3:PT00M40.00S Obi Toppin (substitution)\n", + "490: 3:PT00M39.00S Daniel Theis (foul)\n", + "492: 3:PT00M39.00S (timeout)\n", + "493: 3:PT00M39.00S Daniel Theis (substitution)\n", + "494: 3:PT00M39.00S Jeff Teague (substitution)\n", + "495: 3:PT00M27.60S Obi Toppin (3pt)\n", + "497: 3:PT00M01.60S Aaron Nesmith (3pt)\n", + "498: 3:PT00M01.60S Nerlens Noel (rebound)\n", + "499: 3:PT00M00.00S (period)\n", + "500: 4:PT12M00.00S Aaron Nesmith (substitution)\n" + ] + }, { "name": "stdout", "output_type": "stream", "text": [ - "[\"actionNumber:\", \"actionType:\", \"assistPersonId:\", \"assistPlayerNameInitial:\", \"assistTotal:\", \"blockPersonId:\", \"blockPlayerName:\", \"clock:\", \"description:\", \"descriptor:\", \"edited:\", \"foulDrawnPersonId:\", \"foulDrawnPlayerName:\", \"foulPersonalTotal:\", \"foulTechnicalTotal:\", \"isFieldGoal:\", \"jumpBallLostPersonId:\", \"jumpBallLostPlayerName:\", \"jumpBallRecoverdPersonId:\", \"jumpBallRecoveredName:\", \"jumpBallWonPersonId:\", \"jumpBallWonPlayerName:\", \"officialId:\", \"orderNumber:\", \"period:\", \"periodType:\", \"personId:\", \"personIdsFilter:\", \"playerName:\", \"playerNameI:\", \"pointsTotal:\", \"possession:\", \"qualifiers:\", \"reboundDefensiveTotal:\", \"reboundOffensiveTotal:\", \"reboundTotal:\", \"scoreAway:\", \"scoreHome:\", \"shotActionNumber:\", \"shotDistance:\", \"shotResult:\", \"side:\", \"side:\", \"stealPersonId:\", \"stealPlayerName:\", \"subType:\", \"teamId:\", \"teamTricode:\", \"timeActual:\", \"turnoverTotal:\", \"value:\", \"x:\", \"x:\", \"xLegacy:\", \"xLegacy:\", \"y:\", \"y:\", \"yLegacy:\", \"yLegacy:\"]\n", - "537\n", - "59\n" + "501: 4:PT12M00.00S Javonte Green (substitution)\n", + "502: 4:PT12M00.00S Jeff Teague (substitution)\n", + "503: 4:PT12M00.00S Tristan Thompson (substitution)\n", + "504: 4:PT12M00.00S Marcus Smart (substitution)\n", + "505: 4:PT12M00.00S Jaylen Brown (substitution)\n", + "506: 4:PT12M00.00S (period)\n", + "507: 4:PT11M48.00S Tristan Thompson (2pt)\n", + "508: 4:PT11M48.00S Obi Toppin (block)\n", + "509: 4:PT11M47.00S (rebound)\n", + "510: 4:PT11M47.00S (stoppage)\n", + "511: 4:PT11M43.00S Tristan Thompson (foul)\n", + "513: 4:PT11M43.00S Tristan Thompson (turnover)\n", + "514: 4:PT11M32.00S Obi Toppin (2pt)\n", + "516: 4:PT11M19.00S Tristan Thompson (2pt)\n", + "517: 4:PT11M18.00S Jaylen Brown (rebound)\n", + "518: 4:PT11M16.00S Jaylen Brown (2pt)\n", + "560: 4:PT11M06.00S Immanuel Quickley (turnover)\n", + "561: 4:PT11M06.00S Grant Williams (steal)\n", + "562: 4:PT11M06.00S Grant Williams (turnover)\n", + "563: 4:PT11M06.00S Immanuel Quickley (steal)\n", + "519: 4:PT10M56.00S Immanuel Quickley (3pt)\n", + "520: 4:PT10M54.00S Marcus Smart (rebound)\n", + "521: 4:PT10M40.00S Marcus Smart (3pt)\n", + "522: 4:PT10M38.00S (rebound)\n", + "523: 4:PT10M38.00S Nerlens Noel (foul)\n", + "525: 4:PT10M32.00S Austin Rivers (foul)\n", + "527: 4:PT10M32.00S Jaylen Brown (freethrow)\n", + "528: 4:PT10M32.00S Jaylen Brown (freethrow)\n", + "529: 4:PT10M16.00S Obi Toppin (3pt)\n", + "531: 4:PT10M03.00S Marcus Smart (2pt)\n", + "532: 4:PT09M58.00S Payton Pritchard (foul)\n", + "534: 4:PT09M48.00S Austin Rivers (2pt)\n", + "535: 4:PT09M47.00S Payton Pritchard (rebound)\n", + "536: 4:PT09M44.00S Immanuel Quickley (foul)\n", + "538: 4:PT09M35.00S Jaylen Brown (2pt)\n", + "539: 4:PT09M33.00S Tristan Thompson (rebound)\n", + "540: 4:PT09M32.00S Marcus Smart (3pt)\n", + "541: 4:PT09M30.00S (rebound)\n", + "542: 4:PT09M30.00S Nerlens Noel (foul)\n", + "544: 4:PT09M30.00S Nerlens Noel (substitution)\n", + "545: 4:PT09M30.00S Austin Rivers (substitution)\n", + "546: 4:PT09M30.00S Mitchell Robinson (substitution)\n", + "547: 4:PT09M30.00S Reggie Bullock (substitution)\n", + "548: 4:PT09M26.00S Jaylen Brown (3pt)\n", + "549: 4:PT09M22.00S Mitchell Robinson (rebound)\n", + "550: 4:PT09M17.00S Jaylen Brown (foul)\n", + "551: 4:PT09M17.00S Immanuel Quickley (freethrow)\n", + "552: 4:PT09M05.00S Obi Toppin (3pt)\n", + "553: 4:PT09M01.00S Jaylen Brown (rebound)\n", + "554: 4:PT08M58.00S Jaylen Brown (2pt)\n", + "555: 4:PT08M58.00S Reggie Bullock (foul)\n", + "557: 4:PT08M58.00S (timeout)\n", + "559: 4:PT08M58.00S (instantreplay)\n", + "564: 4:PT08M58.00S Payton Pritchard (substitution)\n", + "565: 4:PT08M58.00S Jeff Teague (substitution)\n", + "566: 4:PT08M58.00S Jaylen Brown (freethrow)\n", + "567: 4:PT08M55.00S Obi Toppin (rebound)\n", + "568: 4:PT08M46.00S Kevin Knox II (3pt)\n", + "570: 4:PT08M31.00S Kevin Knox II (foul)\n", + "572: 4:PT08M31.00S Obi Toppin (substitution)\n", + "573: 4:PT08M31.00S Julius Randle (substitution)\n", + "574: 4:PT08M31.00S Marcus Smart (freethrow)\n", + "575: 4:PT08M31.00S Marcus Smart (freethrow)\n", + "576: 4:PT08M30.00S Reggie Bullock (rebound)\n", + "577: 4:PT08M06.00S Julius Randle (3pt)\n", + "579: 4:PT07M49.00S Kevin Knox II (foul)\n", + "581: 4:PT07M49.00S Marcus Smart (freethrow)\n", + "582: 4:PT07M49.00S Kevin Knox II (substitution)\n", + "583: 4:PT07M49.00S RJ Barrett (substitution)\n", + "584: 4:PT07M49.00S Marcus Smart (freethrow)\n", + "585: 4:PT07M49.00S Reggie Bullock (rebound)\n", + "586: 4:PT07M26.00S Julius Randle (turnover)\n", + "587: 4:PT07M26.00S Marcus Smart (steal)\n", + "588: 4:PT07M22.00S Jaylen Brown (2pt)\n", + "590: 4:PT07M08.00S Marcus Smart (foul)\n", + "592: 4:PT06M54.00S (turnover)\n", + "593: 4:PT06M42.00S Jeff Teague (3pt)\n", + "594: 4:PT06M39.00S Julius Randle (rebound)\n", + "595: 4:PT06M33.00S Grant Williams (foul)\n", + "597: 4:PT06M33.00S (timeout)\n", + "598: 4:PT06M33.00S Jaylen Brown (substitution)\n", + "599: 4:PT06M33.00S Tristan Thompson (substitution)\n", + "600: 4:PT06M33.00S Marcus Smart (substitution)\n", + "601: 4:PT06M33.00S Aaron Nesmith (substitution)\n", + "602: 4:PT06M33.00S Javonte Green (substitution)\n", + "603: 4:PT06M33.00S Tremont Waters (substitution)\n", + "604: 4:PT06M26.00S Julius Randle (3pt)\n", + "605: 4:PT06M20.00S Mitchell Robinson (rebound)\n", + "606: 4:PT06M20.00S Mitchell Robinson (2pt)\n", + "607: 4:PT06M10.00S RJ Barrett (foul)\n", + "609: 4:PT06M10.00S Javonte Green (freethrow)\n", + "610: 4:PT06M10.00S Javonte Green (freethrow)\n", + "611: 4:PT05M49.00S Immanuel Quickley (3pt)\n", + "612: 4:PT05M39.00S Tremont Waters (3pt)\n", + "613: 4:PT05M37.00S Javonte Green (rebound)\n", + "614: 4:PT05M34.00S Aaron Nesmith (2pt)\n", + "615: 4:PT05M34.00S Immanuel Quickley (block)\n", + "616: 4:PT05M33.00S (rebound)\n", + "617: 4:PT05M33.00S (stoppage)\n", + "618: 4:PT05M22.00S RJ Barrett (2pt)\n", + "620: 4:PT05M12.00S Javonte Green (3pt)\n", + "621: 4:PT05M10.00S Julius Randle (rebound)\n", + "622: 4:PT04M59.00S Javonte Green (foul)\n", + "624: 4:PT04M59.00S Jeff Teague (substitution)\n", + "625: 4:PT04M59.00S Semi Ojeleye (substitution)\n", + "626: 4:PT04M53.00S Grant Williams (foul)\n", + "628: 4:PT04M53.00S RJ Barrett (freethrow)\n", + "629: 4:PT04M53.00S Mitchell Robinson (substitution)\n", + "630: 4:PT04M53.00S Julius Randle (substitution)\n", + "631: 4:PT04M53.00S Obi Toppin (substitution)\n", + "632: 4:PT04M53.00S Nerlens Noel (substitution)\n", + "633: 4:PT04M53.00S RJ Barrett (freethrow)\n", + "634: 4:PT04M41.00S Grant Williams (3pt)\n", + "635: 4:PT04M38.00S RJ Barrett (rebound)\n", + "636: 4:PT04M16.00S Immanuel Quickley (2pt)\n", + "637: 4:PT04M05.00S Semi Ojeleye (3pt)\n", + "638: 4:PT04M02.00S Obi Toppin (rebound)\n", + "639: 4:PT03M53.00S Reggie Bullock (3pt)\n", + "641: 4:PT03M44.00S Immanuel Quickley (foul)\n", + "643: 4:PT03M44.00S Semi Ojeleye (freethrow)\n", + "644: 4:PT03M44.00S Immanuel Quickley (substitution)\n", + "645: 4:PT03M44.00S RJ Barrett (substitution)\n", + "646: 4:PT03M44.00S Dennis Smith Jr. (substitution)\n", + "647: 4:PT03M44.00S Kevin Knox II (substitution)\n", + "648: 4:PT03M44.00S Semi Ojeleye (freethrow)\n", + "649: 4:PT03M31.00S Grant Williams (foul)\n", + "651: 4:PT03M31.00S Nerlens Noel (freethrow)\n", + "652: 4:PT03M31.00S (rebound)\n", + "653: 4:PT03M31.00S Reggie Bullock (substitution)\n", + "654: 4:PT03M31.00S Theo Pinson (substitution)\n", + "655: 4:PT03M31.00S Nerlens Noel (freethrow)\n", + "656: 4:PT03M21.00S Aaron Nesmith (3pt)\n", + "657: 4:PT03M19.00S Semi Ojeleye (rebound)\n", + "658: 4:PT03M17.00S Theo Pinson (foul)\n", + "660: 4:PT03M17.00S Javonte Green (freethrow)\n", + "661: 4:PT03M17.00S Kevin Knox II (substitution)\n", + "662: 4:PT03M17.00S Ignas Brazdeikis (substitution)\n", + "663: 4:PT03M17.00S Javonte Green (freethrow)\n", + "664: 4:PT03M17.00S Obi Toppin (rebound)\n", + "665: 4:PT03M00.00S Theo Pinson (3pt)\n", + "666: 4:PT02M57.00S Aaron Nesmith (rebound)\n", + "667: 4:PT02M41.00S Javonte Green (2pt)\n", + "669: 4:PT02M27.00S Dennis Smith Jr. (2pt)\n", + "670: 4:PT02M24.00S Tremont Waters (rebound)\n", + "671: 4:PT02M20.00S Theo Pinson (foul)\n", + "673: 4:PT02M20.00S Semi Ojeleye (freethrow)\n", + "674: 4:PT02M20.00S Semi Ojeleye (freethrow)\n", + "675: 4:PT02M04.00S Nerlens Noel (2pt)\n", + "676: 4:PT02M01.00S Javonte Green (rebound)\n", + "677: 4:PT01M54.00S Grant Williams (3pt)\n", + "678: 4:PT01M52.00S Nerlens Noel (rebound)\n", + "679: 4:PT01M38.00S Aaron Nesmith (foul)\n", + "681: 4:PT01M38.00S Dennis Smith Jr. (freethrow)\n", + "682: 4:PT01M38.00S Dennis Smith Jr. (freethrow)\n", + "683: 4:PT01M38.00S Semi Ojeleye (rebound)\n", + "684: 4:PT01M22.00S Aaron Nesmith (2pt)\n", + "685: 4:PT01M22.00S Nerlens Noel (block)\n", + "686: 4:PT01M19.00S Obi Toppin (rebound)\n", + "687: 4:PT01M15.00S Ignas Brazdeikis (turnover)\n", + "688: 4:PT01M15.00S Tremont Waters (steal)\n", + "689: 4:PT01M13.00S Javonte Green (turnover)\n", + "690: 4:PT01M13.00S Obi Toppin (steal)\n", + "691: 4:PT01M12.00S (stoppage)\n", + "692: 4:PT00M56.90S Dennis Smith Jr. (3pt)\n", + "693: 4:PT00M55.20S (rebound)\n", + "694: 4:PT00M55.20S (stoppage)\n", + "695: 4:PT00M49.70S Tremont Waters (3pt)\n", + "696: 4:PT00M35.90S Nerlens Noel (2pt)\n", + "697: 4:PT00M21.20S Nerlens Noel (foul)\n", + "699: 4:PT00M21.20S Grant Williams (freethrow)\n", + "701: 4:PT00M21.20S Grant Williams (freethrow)\n", + "702: 4:PT00M19.70S Nerlens Noel (rebound)\n", + "703: 4:PT00M00.00S (period)\n", + "704: 4:PT00M00.00S (game)\n" ] } ], "source": [ - "# Query nba.live.endpoints for the play by play of GameID 002200011 = IND vs NYK\n", + "# Query nba.live.endpoints for the score board of GameID 0022000180 = NYK vs BOS\n", + "# Simple PlayByPlay Loop demonstrating data usage\n", "from nba_api.live.nba.endpoints import playbyplay\n", - "f = \"{k_key}:{v_type}\"\n", - "e = \"{k_key}:<{v_value}>\"\n", + "from nba_api.stats.static import players\n", "\n", - "actions = playbyplay.PlayByPlay('0022000180').get_dict()['game']['actions']\n", - "action_keys = []\n", - "no_actions = 0\n", - "no_keys = 0\n", - "for actions in actions:\n", - " no_actions = no_actions + 1\n", - " for key in actions.keys():\n", - " value = f.format(k_key=key,v_type=type(actions[key]))\n", - " if value not in action_keys :\n", - " no_keys = no_keys + 1\n", - " action_keys.append(value)\n", - "print(sorted(action_keys))\n", - "print(no_actions)\n", - "print(no_keys)" + "pbp = playbyplay.PlayByPlay('0022000196')\n", + "line = \"{action_number}: {period}:{clock} {player_id} ({action_type})\"\n", + "actions = pbp.get_dict()['game']['actions'] #plays are referred to in the live data as `actions`\n", + "for action in actions:\n", + " player_name = ''\n", + " player = players.find_player_by_id(action['personId'])\n", + " if player is not None:\n", + " player_name = player['full_name']\n", + " print(line.format(action_number=action['actionNumber'],period=action['period'],clock=action['clock'],action_type=action['actionType'],player_id=player_name))" ] }, { diff --git a/nba_api/live/nba/endpoints/boxscore.py b/nba_api/live/nba/endpoints/boxscore.py index 387456c5..cfc2222f 100644 --- a/nba_api/live/nba/endpoints/boxscore.py +++ b/nba_api/live/nba/endpoints/boxscore.py @@ -1,4 +1,3 @@ -from tests.live.endpoints.test_boxscore import test_home_team_dict from nba_api.live.nba.endpoints._base import Endpoint from nba_api.live.nba.library.http import NBALiveHTTP class BoxScore(Endpoint): From 2e6afebfebe93bf9f8119dd438e23b09184bb1f0 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Mon, 18 Jan 2021 16:41:00 -0500 Subject: [PATCH 18/20] removed .vscode/launch.json --- .vscode/launch.json | 76 --------------------------------------------- 1 file changed, 76 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 599b5572..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Python: Testing", - "type": "python", - "request": "test", - "redirectOutput": true, - }, - { - "name": "Python: Current File (Integrated Terminal)", - "type": "python", - "request": "launch", - "program": "${file}", - "console": "integratedTerminal" - }, - { - "name": "Python: Remote Attach", - "type": "python", - "request": "attach", - "port": 5678, - "host": "localhost", - "pathMappings": [ - { - "localRoot": "${workspaceFolder}", - "remoteRoot": "." - } - ] - }, - { - "name": "Python: Module", - "type": "python", - "request": "launch", - "module": "enter-your-module-name-here", - "console": "integratedTerminal" - }, - { - "name": "Python: Django", - "type": "python", - "request": "launch", - "program": "${workspaceFolder}/manage.py", - "console": "integratedTerminal", - "args": [ - "runserver", - "--noreload", - "--nothreading" - ], - "django": true - }, - { - "name": "Python: Flask", - "type": "python", - "request": "launch", - "module": "flask", - "env": { - "FLASK_APP": "app.py" - }, - "args": [ - "run", - "--no-debugger", - "--no-reload" - ], - "jinja": true - }, - { - "name": "Python: Current File (External Terminal)", - "type": "python", - "request": "launch", - "program": "${file}", - "console": "externalTerminal" - } - ] -} \ No newline at end of file From fad840435697d3f97dcc1abdb7b68b6a77bbe0f9 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Mon, 18 Jan 2021 16:47:11 -0500 Subject: [PATCH 19/20] rolling back notebook changes --- docs/examples/Basics.ipynb | 6 +++--- docs/examples/Finding Games.ipynb | 6 +++--- docs/examples/PlayByPlay.ipynb | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/examples/Basics.ipynb b/docs/examples/Basics.ipynb index cf60dad3..c58b05c8 100644 --- a/docs/examples/Basics.ipynb +++ b/docs/examples/Basics.ipynb @@ -472,9 +472,9 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "nba", "language": "python", - "name": "python3" + "name": "nba" }, "language_info": { "codemirror_mode": { @@ -486,7 +486,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.1" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/docs/examples/Finding Games.ipynb b/docs/examples/Finding Games.ipynb index ae7228ed..1fadf4b2 100644 --- a/docs/examples/Finding Games.ipynb +++ b/docs/examples/Finding Games.ipynb @@ -1388,9 +1388,9 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "nba", "language": "python", - "name": "python3" + "name": "nba" }, "language_info": { "codemirror_mode": { @@ -1402,7 +1402,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.1" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/docs/examples/PlayByPlay.ipynb b/docs/examples/PlayByPlay.ipynb index 5547933c..ac4435a1 100644 --- a/docs/examples/PlayByPlay.ipynb +++ b/docs/examples/PlayByPlay.ipynb @@ -69,14 +69,14 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Searching through 12 game(s) for the game_id of 0022000178 where IND @ POR\n" + "Searching through 63 game(s) for the game_id of 0021800854 where IND vs. MIL\n" ] } ], @@ -827,7 +827,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.1" + "version": "3.7.1" } }, "nbformat": 4, From c37a54f37603b4e60ee08a0f930a119899178474 Mon Sep 17 00:00:00 2001 From: Randy Forbes Date: Tue, 19 Oct 2021 20:36:59 -0400 Subject: [PATCH 20/20] updated latest data.py from master --- nba_api/stats/library/data.py | 161 +++------------------------------- 1 file changed, 12 insertions(+), 149 deletions(-) diff --git a/nba_api/stats/library/data.py b/nba_api/stats/library/data.py index 9144a114..dc14455c 100644 --- a/nba_api/stats/library/data.py +++ b/nba_api/stats/library/data.py @@ -4,11 +4,7 @@ player_index_full_name = 3 player_index_is_active = 4 -<<<<<<< HEAD -# Data last updated: Jan, 09 2021 -======= # Data last updated: Oct, 04 2021 ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 players = [ [76001, "Abdelnaby", "Alaa", "Alaa Abdelnaby", False], @@ -30,7 +26,7 @@ [76011, "Adams", "Alvan", "Alvan Adams", False], [76012, "Adams", "Don", "Don Adams", False], [200801, "Adams", "Hassan", "Hassan Adams", False], - [1629121, "Adams", "Jaylen", "Jaylen Adams", True], + [1629121, "Adams", "Jaylen", "Jaylen Adams", False], [203919, "Adams", "Jordan", "Jordan Adams", False], [149, "Adams", "Michael", "Michael Adams", False], [203500, "Adams", "Steven", "Steven Adams", True], @@ -62,11 +58,7 @@ [76022, "Alexander", "Gary", "Gary Alexander", False], [201570, "Alexander", "Joe", "Joe Alexander", False], [1629734, "Alexander", "Kyle", "Kyle Alexander", False], -<<<<<<< HEAD - [1630234, "Alexander", "Ty-Shon", "Ty-Shon Alexander", True], -======= [1630234, "Alexander", "Ty-Shon", "Ty-Shon Alexander", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [2349, "Alexander", "Victor", "Victor Alexander", False], [1629638, "Alexander-Walker", "Nickeil", "Nickeil Alexander-Walker", True], [76024, "Alford", "Steve", "Steve Alford", False], @@ -302,7 +294,7 @@ [201158, "Belinelli", "Marco", "Marco Belinelli", False], [2294, "Bell", "Charlie", "Charlie Bell", False], [76142, "Bell", "Dennis", "Dennis Bell", False], - [1628395, "Bell", "Jordan", "Jordan Bell", False], + [1628395, "Bell", "Jordan", "Jordan Bell", True], [1952, "Bell", "Raja", "Raja Bell", False], [2559, "Bell", "Troy", "Troy Bell", False], [76143, "Bell", "William", "William Bell", False], @@ -505,7 +497,7 @@ [76255, "Brindley", "Audley", "Audley Brindley", False], [1628515, "Briscoe", "Isaiah", "Isaiah Briscoe", False], [76256, "Brisker", "John", "John Brisker", False], - [1629052, "Brissett", "Oshae", "Oshae Brissett", False], + [1629052, "Brissett", "Oshae", "Oshae Brissett", True], [76257, "Bristow", "Allan", "Allan Bristow", False], [76258, "Britt", "Tyrone", "Tyrone Britt", False], [76259, "Britt", "Wayman", "Wayman Britt", False], @@ -565,10 +557,7 @@ [1628425, "Brown", "Sterling", "Sterling Brown", True], [2357, "Brown", "Tierre", "Tierre Brown", False], [76268, "Brown", "Tony", "Tony Brown", False], -<<<<<<< HEAD -======= [1630535, "Brown III", "Greg", "Greg Brown III", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1629718, "Brown Jr.", "Charlie", "Charlie Brown Jr.", False], [1628972, "Brown Jr.", "Troy", "Troy Brown Jr.", True], [76287, "Browne", "Jim", "Jim Browne", False], @@ -743,7 +732,7 @@ [76384, "Charles", "Lorenzo", "Lorenzo Charles", False], [1629147, "Chealey", "Joe", "Joe Chealey", False], [384, "Cheaney", "Calbert", "Calbert Cheaney", False], - [1629597, "Cheatham", "Zylan", "Zylan Cheatham", False], + [1629597, "Cheatham", "Zylan", "Zylan Cheatham", True], [76385, "Cheeks", "Maurice", "Maurice Cheeks", False], [76386, "Chenier", "Phil", "Phil Chenier", False], [203805, "Cherry", "Will", "Will Cherry", False], @@ -783,11 +772,7 @@ [76402, "Cleamons", "Jim", "Jim Cleamons", False], [2043, "Cleaves", "Mateen", "Mateen Cleaves", False], [76403, "Clemens", "John", "John Clemens", False], -<<<<<<< HEAD - [1629598, "Clemons", "Chris", "Chris Clemons", True], -======= [1629598, "Clemons", "Chris", "Chris Clemons", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1628499, "Cleveland", "Antonius", "Antonius Cleveland", False], [76404, "Clifton", "Nat", "Nat Clifton", False], [76406, "Closs", "Bill", "Bill Closs", False], @@ -847,7 +832,7 @@ [76437, "Cook", "Norm", "Norm Cook", False], [2241, "Cook", "Omar", "Omar Cook", False], [1626188, "Cook", "Quinn", "Quinn Cook", True], - [1629076, "Cook", "Tyler", "Tyler Cook", False], + [1629076, "Cook", "Tyler", "Tyler Cook", True], [1628429, "Cooke", "Charles", "Charles Cooke", False], [76439, "Cooke", "David", "David Cooke", False], [76440, "Cooke", "Joe", "Joe Cooke", False], @@ -954,11 +939,7 @@ [76507, "Darden", "Jimmy", "Jimmy Darden", False], [212, "Dare", "Yinka", "Yinka Dare", False], [76509, "Dark", "Jesse", "Jesse Dark", False], -<<<<<<< HEAD - [1630268, "Darling", "Nate", "Nate Darling", True], -======= [1630268, "Darling", "Nate", "Nate Darling", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [76511, "Darrow", "Jimmy", "Jimmy Darrow", False], [203540, "Datome", "Gigi", "Gigi Datome", False], [921, "Daugherty", "Brad", "Brad Daugherty", False], @@ -1023,12 +1004,8 @@ [201942, "DeRozan", "DeMar", "DeMar DeRozan", True], [76562, "DeZonie", "Hank", "Hank DeZonie", False], [76544, "Deane", "Greg", "Greg Deane", False], -<<<<<<< HEAD - [203473, "Dedmon", "Dewayne", "Dewayne Dedmon", False], -======= [1630466, "Deck", "Gabriel", "Gabriel Deck", True], [203473, "Dedmon", "Dewayne", "Dewayne Dedmon", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [76546, "Dees", "Archie", "Archie Dees", False], [143, "Dehere", "Terry", "Terry Dehere", False], [76548, "Dehnert", "Red", "Red Dehnert", False], @@ -1101,12 +1078,8 @@ [201595, "Dorsey", "Joey", "Joey Dorsey", False], [1628416, "Dorsey", "Tyler", "Tyler Dorsey", False], [1629652, "Dort", "Luguentz", "Luguentz Dort", True], -<<<<<<< HEAD - [1628422, "Dotson", "Damyean", "Damyean Dotson", True], -======= [1630245, "Dosunmu", "Ayo", "Ayo Dosunmu", True], [1628422, "Dotson", "Damyean", "Damyean Dotson", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1629653, "Dotson", "Devon", "Devon Dotson", True], [200763, "Douby", "Quincy", "Quincy Douby", False], [76588, "Douglas", "Bruce", "Bruce Douglas", False], @@ -1387,20 +1360,12 @@ [76748, "Frank", "Tellis", "Tellis Frank", False], [76749, "Frankel", "Nat", "Nat Frankel", False], [203479, "Franklin", "Jamaal", "Jamaal Franklin", False], -<<<<<<< HEAD - [204025, "Frazier", "Tim", "Tim Frazier", True], - [76750, "Frazier", "Walt", "Walt Frazier", False], - [76751, "Frazier", "Will", "Will Frazier", False], - [1626187, "Frazier II", "Michael", "Michael Frazier II", False], - [1628982, "Frazier Jr.", "Melvin", "Melvin Frazier Jr.", False], -======= [1629606, "Franks", "Robert", "Robert Franks", False], [1628982, "Frazier", "Melvin", "Melvin Frazier", False], [204025, "Frazier", "Tim", "Tim Frazier", False], [76750, "Frazier", "Walt", "Walt Frazier", False], [76751, "Frazier", "Will", "Will Frazier", False], [1626187, "Frazier II", "Michael", "Michael Frazier II", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [76752, "Frederick", "Anthony", "Anthony Frederick", False], [202690, "Fredette", "Jimmer", "Jimmer Fredette", False], [76753, "Free", "World", "World Free", False], @@ -1675,11 +1640,7 @@ [76911, "Haffner", "Scott", "Scott Haffner", False], [76912, "Hagan", "Cliff", "Cliff Hagan", False], [76913, "Hagan", "Glenn", "Glenn Hagan", False], -<<<<<<< HEAD - [1630204, "Hagans", "Ashton", "Ashton Hagans", True], -======= [1630204, "Hagans", "Ashton", "Ashton Hagans", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [76914, "Hahn", "Bob", "Bob Hahn", False], [76915, "Hairston", "Al", "Al Hairston", False], [76916, "Hairston", "Happy", "Happy Hairston", False], @@ -1695,11 +1656,7 @@ [76922, "Halimon", "Shaler", "Shaler Halimon", False], [1628985, "Hall", "Devon", "Devon Hall", False], [1629743, "Hall", "Donta", "Donta Hall", False], -<<<<<<< HEAD - [1630221, "Hall", "Josh", "Josh Hall", True], -======= [1630221, "Hall", "Josh", "Josh Hall", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [200837, "Hall", "Mike", "Mike Hall", False], [76923, "Halliburton", "Jeff", "Jeff Halliburton", False], [1032, "Ham", "Darvin", "Darvin Ham", False], @@ -1770,11 +1727,7 @@ [2734, "Harris", "Devin", "Devin Harris", False], [203548, "Harris", "Elias", "Elias Harris", False], [203914, "Harris", "Gary", "Gary Harris", True], -<<<<<<< HEAD - [1630223, "Harris", "Jalen", "Jalen Harris", True], -======= [1630223, "Harris", "Jalen", "Jalen Harris", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [203925, "Harris", "Joe", "Joe Harris", True], [446, "Harris", "Lucious", "Lucious Harris", False], [202412, "Harris", "Manny", "Manny Harris", False], @@ -2126,18 +2079,14 @@ [1630198, "Joe", "Isaiah", "Isaiah Joe", True], [2639, "Johnsen", "Britton", "Britton Johnsen", False], [200792, "Johnson", "Alexander", "Alexander Johnson", False], - [1628993, "Johnson", "Alize", "Alize Johnson", False], + [1628993, "Johnson", "Alize", "Alize Johnson", True], [101161, "Johnson", "Amir", "Amir Johnson", False], [77131, "Johnson", "Andy", "Andy Johnson", False], [1533, "Johnson", "Anthony", "Anthony Johnson", False], [202356, "Johnson", "Armon", "Armon Johnson", False], [77132, "Johnson", "Arnie", "Arnie Johnson", False], [422, "Johnson", "Avery", "Avery Johnson", False], -<<<<<<< HEAD - [1629168, "Johnson", "BJ", "BJ Johnson", False], -======= [1629168, "Johnson", "B.J.", "B.J. Johnson", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1627744, "Johnson", "Brice", "Brice Johnson", False], [77130, "Johnson", "Buck", "Buck Johnson", False], [1629661, "Johnson", "Cameron", "Cameron Johnson", True], @@ -2244,11 +2193,7 @@ [77189, "Jones", "Major", "Major Jones", False], [2891, "Jones", "Mark", "Mark Jones", False], [90000, "Jones", "Mark", "Mark Jones", False], -<<<<<<< HEAD - [1630222, "Jones", "Mason", "Mason Jones", True], -======= [1630222, "Jones", "Mason", "Mason Jones", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [77195, "Jones", "Nick", "Nick Jones", False], [77191, "Jones", "Ozell", "Ozell Jones", False], [461, "Jones", "Popeye", "Popeye Jones", False], @@ -2360,7 +2305,7 @@ [1562, "King", "Gerard", "Gerard King", False], [77270, "King", "Jim", "Jim King", False], [728, "King", "Jimmy", "Jimmy King", False], - [1629663, "King", "Louis", "Louis King", False], + [1629663, "King", "Louis", "Louis King", True], [77272, "King", "Maury", "Maury King", False], [77273, "King", "Reggie", "Reggie King", False], [1101, "King", "Rich", "Rich King", False], @@ -2555,10 +2500,7 @@ [77383, "Lewis", "Ralph", "Ralph Lewis", False], [1740, "Lewis", "Rashard", "Rashard Lewis", False], [77384, "Lewis", "Reggie", "Reggie Lewis", False], -<<<<<<< HEAD -======= [1630575, "Lewis", "Scottie", "Scottie Lewis", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1630184, "Lewis Jr.", "Kira", "Kira Lewis Jr.", True], [77386, "Liberty", "Marcus", "Marcus Liberty", False], [77387, "Lichti", "Todd", "Todd Lichti", False], @@ -2656,11 +2598,7 @@ [1894, "Maggette", "Corey", "Corey Maggette", False], [77442, "Magley", "Dave", "Dave Magley", False], [2048, "Magloire", "Jamaal", "Jamaal Magloire", False], -<<<<<<< HEAD - [1630266, "Magnay", "Will", "Will Magnay", True], -======= [1630266, "Magnay", "Will", "Will Magnay", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [101133, "Mahinmi", "Ian", "Ian Mahinmi", False], [77443, "Mahnken", "John", "John Mahnken", False], [77444, "Mahoney", "Francis", "Francis Mahoney", False], @@ -2678,11 +2616,7 @@ [1630572, "Mamukelashvili", "Sandro", "Sandro Mamukelashvili", True], [77451, "Manakas", "Ted", "Ted Manakas", False], [77452, "Mandic", "John", "John Mandic", False], -<<<<<<< HEAD - [1630211, "Mane", "Karim", "Karim Mane", True], -======= [1630211, "Mane", "Karim", "Karim Mane", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [77453, "Mangiapane", "Frank", "Frank Mangiapane", False], [986, "Mann", "Marcus", "Marcus Mann", False], [1629611, "Mann", "Terance", "Terance Mann", True], @@ -2690,11 +2624,7 @@ [330, "Manning", "Danny", "Danny Manning", False], [77454, "Manning", "Ed", "Ed Manning", False], [316, "Manning", "Richard", "Richard Manning", False], -<<<<<<< HEAD - [1630185, "Mannion", "Nico", "Nico Mannion", True], -======= [1630185, "Mannion", "Nico", "Nico Mannion", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [77456, "Mannion", "Pace", "Pace Mannion", False], [77457, "Mantis", "Nick", "Nick Mantis", False], [77459, "Maravich", "Pete", "Pete Maravich", False], @@ -2734,10 +2664,7 @@ [1626185, "Martin", "Jarell", "Jarell Martin", False], [77474, "Martin", "Jeff", "Jeff Martin", False], [1629725, "Martin", "Jeremiah", "Jeremiah Martin", False], -<<<<<<< HEAD -======= [1630231, "Martin", "KJ", "KJ Martin", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1629103, "Martin", "Kelan", "Kelan Martin", True], [2030, "Martin", "Kenyon", "Kenyon Martin", False], [2755, "Martin", "Kevin", "Kevin Martin", False], @@ -2746,27 +2673,18 @@ [77477, "Martin", "Phil", "Phil Martin", False], [77479, "Martin", "Ronald", "Ronald Martin", False], [77480, "Martin", "Slater", "Slater Martin", False], - [1630231, "Martin Jr.", "Kenyon", "Kenyon Martin Jr.", True], [469, "Mashburn", "Jamal", "Jamal Mashburn", False], [77482, "Masino", "Al", "Al Masino", False], [193, "Mason", "Anthony", "Anthony Mason", False], [2046, "Mason", "Desmond", "Desmond Mason", False], -<<<<<<< HEAD - [1628412, "Mason", "Frank", "Frank Mason", False], -======= [1628412, "Mason III", "Frank", "Frank Mason III", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [2427, "Mason Jr.", "Roger", "Roger Mason Jr.", False], [763, "Massenburg", "Tony", "Tony Massenburg", False], [77483, "Mast", "Eddie", "Eddie Mast", False], [1628999, "Maten", "Yante", "Yante Maten", False], [1629726, "Mathews", "Garrison", "Garrison Mathews", True], [1628493, "Mathiang", "Mangok", "Mangok Mathiang", False], -<<<<<<< HEAD - [1629751, "Mathias", "Dakota", "Dakota Mathias", True], -======= [1629751, "Mathias", "Dakota", "Dakota Mathias", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [77484, "Matthews", "Wes", "Wes Matthews", False], [202083, "Matthews", "Wesley", "Wesley Matthews", False], [77485, "Maughan", "Ariel", "Ariel Maughan", False], @@ -3104,10 +3022,7 @@ [939, "Myers", "Pete", "Pete Myers", False], [1629004, "Mykhailiuk", "Svi", "Svi Mykhailiuk", True], [1823, "N'diaye", "Makhtar", "Makhtar N'diaye", False], -<<<<<<< HEAD -======= [1626122, "N'diaye", "Makhtar", "Makhtar N'diaye", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [2055, "N'diaye", "Mamadou", "Mamadou N'diaye", False], [77681, "Naber", "Bob", "Bob Naber", False], [77682, "Nachamkin", "Boris", "Boris Nachamkin", False], @@ -3146,10 +3061,7 @@ [2749, "Nelson", "Jameer", "Jameer Nelson", False], [77701, "Nelson", "Louie", "Louie Nelson", False], [1129, "Nembhard", "Ruben", "Ruben Nembhard", False], -<<<<<<< HEAD -======= [1630612, "Nembhard Jr.", "RJ", "RJ Nembhard Jr.", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [2403, "Nene", "", "Nene", False], [1838, "Nesby", "Tyrone", "Tyrone Nesby", False], [1630174, "Nesmith", "Aaron", "Aaron Nesmith", True], @@ -3197,11 +3109,7 @@ [77731, "Norris", "Audie", "Audie Norris", False], [983, "Norris", "Moochie", "Moochie Norris", False], [77732, "Norris", "Sylvester", "Sylvester Norris", False], -<<<<<<< HEAD - [1629668, "Norvell Jr.", "Zach", "Zach Norvell Jr.", False], -======= [1629668, "Norvell", "Zach", "Zach Norvell", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [77733, "Norwood", "Willie", "Willie Norwood", False], [77734, "Nostrand", "George", "George Nostrand", False], [77735, "Noszka", "Stan", "Stan Noszka", False], @@ -3376,7 +3284,7 @@ [203901, "Payton", "Elfrid", "Elfrid Payton", True], [56, "Payton", "Gary", "Gary Payton", False], [77824, "Payton", "Mel", "Mel Payton", False], - [1627780, "Payton II", "Gary", "Gary Payton II", False], + [1627780, "Payton II", "Gary", "Gary Payton II", True], [77825, "Pearcy", "George", "George Pearcy", False], [77826, "Pearcy", "Henry", "Henry Pearcy", False], [200762, "Pecherov", "Oleksiy", "Oleksiy Pecherov", False], @@ -3448,11 +3356,7 @@ [77865, "Plummer", "Gary", "Gary Plummer", False], [2750, "Podkolzin", "Pavel", "Pavel Podkolzin", False], [1627751, "Poeltl", "Jakob", "Jakob Poeltl", True], -<<<<<<< HEAD - [1629738, "Poirier", "Vincent", "Vincent Poirier", True], -======= [1629738, "Poirier", "Vincent", "Vincent Poirier", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1630197, "Pokusevski", "Aleksej", "Aleksej Pokusevski", True], [77866, "Polee", "Dwayne", "Dwayne Polee", False], [77867, "Pollard", "Jim", "Jim Pollard", False], @@ -3462,10 +3366,7 @@ [77869, "Pondexter", "Cliff", "Cliff Pondexter", False], [202347, "Pondexter", "Quincy", "Quincy Pondexter", False], [1629044, "Ponds", "Shamorie", "Shamorie Ponds", False], -<<<<<<< HEAD -======= [1630582, "Pons", "Yves", "Yves Pons", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1629673, "Poole", "Jordan", "Jordan Poole", True], [77870, "Pope", "David", "David Pope", False], [998, "Pope", "Mark", "Mark Pope", False], @@ -3473,11 +3374,7 @@ [77873, "Poquette", "Ben", "Ben Poquette", False], [2084, "Porter", "Chris", "Chris Porter", False], [77875, "Porter", "Howard", "Howard Porter", False], -<<<<<<< HEAD - [1629007, "Porter", "Jontay", "Jontay Porter", True], -======= [1629007, "Porter", "Jontay", "Jontay Porter", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [77876, "Porter", "Kevin", "Kevin Porter", False], [345, "Porter", "Terry", "Terry Porter", False], [1629645, "Porter Jr.", "Kevin", "Kevin Porter Jr.", True], @@ -3688,13 +3585,8 @@ [77989, "Robinson", "Jackie", "Jackie Robinson", False], [1554, "Robinson", "Jamal", "Jamal Robinson", False], [381, "Robinson", "James", "James Robinson", False], -<<<<<<< HEAD - [1629010, "Robinson", "Jerome", "Jerome Robinson", True], - [1629620, "Robinson", "Justin", "Justin Robinson", False], -======= [1629010, "Robinson", "Jerome", "Jerome Robinson", False], [1629620, "Robinson", "Justin", "Justin Robinson", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1683, "Robinson", "Larry", "Larry Robinson", False], [1629011, "Robinson", "Mitchell", "Mitchell Robinson", True], [101126, "Robinson", "Nate", "Nate Robinson", False], @@ -3842,7 +3734,7 @@ [78085, "Schnellbacher", "Otto", "Otto Schnellbacher", False], [78086, "Schnittker", "Dick", "Dick Schnittker", False], [78087, "Schoene", "Russ", "Russ Schoene", False], - [1629678, "Schofield", "Admiral", "Admiral Schofield", False], + [1629678, "Schofield", "Admiral", "Admiral Schofield", True], [78088, "Scholz", "Dave", "Dave Scholz", False], [78089, "Schoon", "Milt", "Milt Schoon", False], [96, "Schrempf", "Detlef", "Detlef Schrempf", False], @@ -3967,11 +3859,7 @@ [101189, "Singleton", "James", "James Singleton", False], [78162, "Singleton", "Mckinley", "Mckinley Singleton", False], [78163, "Sinicola", "Zeke", "Zeke Sinicola", False], -<<<<<<< HEAD - [1629686, "Sirvydis", "Deividas", "Deividas Sirvydis", True], -======= [1629686, "Sirvydis", "Deividas", "Deividas Sirvydis", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [78164, "Sitton", "Charlie", "Charlie Sitton", False], [203491, "Siva", "Peyton", "Peyton Siva", False], [101, "Skiles", "Scott", "Scott Skiles", False], @@ -4233,10 +4121,7 @@ [1629150, "Terry", "Emanuel", "Emanuel Terry", True], [1891, "Terry", "Jason", "Jason Terry", False], [1630179, "Terry", "Tyrell", "Tyrell Terry", True], -<<<<<<< HEAD -======= [1630257, "Teske", "Jon", "Jon Teske", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [201934, "Thabeet", "Hasheem", "Hasheem Thabeet", False], [78309, "Thacker", "Tom", "Tom Thacker", False], [1628464, "Theis", "Daniel", "Daniel Theis", True], @@ -4248,10 +4133,7 @@ [203519, "Thomas", "Adonis", "Adonis Thomas", False], [2873, "Thomas", "Billy", "Billy Thomas", False], [1630271, "Thomas", "Brodric", "Brodric Thomas", True], -<<<<<<< HEAD -======= [1630560, "Thomas", "Cam", "Cam Thomas", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1063, "Thomas", "Carl", "Carl Thomas", False], [78316, "Thomas", "Charles", "Charles Thomas", False], [2041, "Thomas", "Etan", "Etan Thomas", False], @@ -4264,7 +4146,7 @@ [78321, "Thomas", "Joe", "Joe Thomas", False], [1519, "Thomas", "John", "John Thomas", False], [1903, "Thomas", "Kenny", "Kenny Thomas", False], - [1629017, "Thomas", "Khyri", "Khyri Thomas", False], + [1629017, "Thomas", "Khyri", "Khyri Thomas", True], [703, "Thomas", "Kurt", "Kurt Thomas", False], [202498, "Thomas", "Lance", "Lance Thomas", False], [202952, "Thomas", "Malcolm", "Malcolm Thomas", False], @@ -4297,7 +4179,7 @@ [201154, "Thornton", "Al", "Al Thornton", False], [738, "Thornton", "Bob", "Bob Thornton", False], [201977, "Thornton", "Marcus", "Marcus Thornton", False], - [1628414, "Thornwell", "Sindarius", "Sindarius Thornwell", True], + [1628414, "Thornwell", "Sindarius", "Sindarius Thornwell", False], [901, "Thorpe", "Otis", "Otis Thorpe", False], [9, "Threatt", "Sedale", "Sedale Threatt", False], [600001, "Thurmond", "Nate", "Nate Thurmond", False], @@ -4307,11 +4189,7 @@ [78342, "Tieman", "Dan", "Dan Tieman", False], [1629681, "Tillie", "Killian", "Killian Tillie", True], [78343, "Tillis", "Darren", "Darren Tillis", False], -<<<<<<< HEAD - [1630214, "Tillman", "Xavier", "Xavier Tillman", True], -======= [1630214, "Tillman Sr.", "Xavier", "Xavier Tillman Sr.", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [78344, "Tingle", "Jack", "Jack Tingle", False], [2224, "Tinsley", "Jamaal", "Jamaal Tinsley", False], [47, "Tisdale", "Wayman", "Wayman Tisdale", False], @@ -4464,10 +4342,7 @@ [1630532, "Wagner", "Franz", "Franz Wagner", True], [78429, "Wagner", "Milt", "Milt Wagner", False], [1629021, "Wagner", "Moritz", "Moritz Wagner", True], -<<<<<<< HEAD -======= [1630688, "Wainright", "Ish", "Ish Wainright", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [203079, "Waiters", "Dion", "Dion Waiters", False], [78430, "Waiters", "Granville", "Granville Waiters", False], [78431, "Wakefield", "Andre", "Andre Wakefield", False], @@ -4505,13 +4380,8 @@ [78450, "Walton", "Bill", "Bill Walton", False], [78449, "Walton", "Lloyd", "Lloyd Walton", False], [2575, "Walton", "Luke", "Luke Walton", False], -<<<<<<< HEAD - [1628476, "Walton Jr.", "Derrick", "Derrick Walton Jr.", False], - [202954, "Wanamaker", "Brad", "Brad Wanamaker", True], -======= [1628476, "Walton Jr.", "Derrick", "Derrick Walton Jr.", True], [202954, "Wanamaker", "Brad", "Brad Wanamaker", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [78453, "Wanzer", "Bobby", "Bobby Wanzer", False], [78454, "Warbington", "Perry", "Perry Warbington", False], [369, "Ward", "Charlie", "Charlie Ward", False], @@ -4630,11 +4500,7 @@ [730, "Whitfield", "Dwayne", "Dwayne Whitfield", False], [78519, "Whitney", "Charles", "Charles Whitney", False], [43, "Whitney", "Chris", "Chris Whitney", False], -<<<<<<< HEAD - [204222, "Whittington", "Greg", "Greg Whittington", True], -======= [204222, "Whittington", "Greg", "Greg Whittington", False], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [203963, "Whittington", "Shayne", "Shayne Whittington", False], [78520, "Wicks", "Sidney", "Sidney Wicks", False], [78521, "Wier", "Murray", "Murray Wier", False], @@ -4818,10 +4684,7 @@ [1007, "Wright", "Luther", "Luther Wright", False], [1630589, "Wright", "Moses", "Moses Wright", True], [412, "Wright", "Sharone", "Sharone Wright", False], -<<<<<<< HEAD -======= [1630593, "Wright IV", "McKinley", "McKinley Wright IV", True], ->>>>>>> 038e42d14621b23a9a4e5b41cab2a690a4277a44 [1629625, "Wright-Foreman", "Justin", "Justin Wright-Foreman", False], [203100, "Wroten", "Tony", "Tony Wroten", False], [78627, "Wynder", "A.J.", "A.J. Wynder", False], @@ -4909,4 +4772,4 @@ [1610612764, 'WAS', 'Wizards', 1961, 'Washington', 'Washington Wizards', 'District of Columbia'], [1610612765, 'DET', 'Pistons', 1948, 'Detroit', 'Detroit Pistons', 'Michigan'], [1610612766, 'CHA', 'Hornets', 1988, 'Charlotte', 'Charlotte Hornets', 'North Carolina'] -] \ No newline at end of file +]