ahl_scraper 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rspec +3 -0
  4. data/.rubocop.yml +85 -0
  5. data/.ruby-version +1 -0
  6. data/.solargraph.yml +15 -0
  7. data/.travis.yml +6 -0
  8. data/.vscode/settings.json +11 -0
  9. data/CODE_OF_CONDUCT.md +74 -0
  10. data/Gemfile +25 -0
  11. data/Gemfile.lock +114 -0
  12. data/LICENSE.txt +21 -0
  13. data/README.md +235 -0
  14. data/Rakefile +8 -0
  15. data/ahl_scraper.gemspec +27 -0
  16. data/bin/console +16 -0
  17. data/bin/setup +8 -0
  18. data/lib/ahl_scraper.rb +55 -0
  19. data/lib/ahl_scraper/fetchers/division_data_fetcher.rb +19 -0
  20. data/lib/ahl_scraper/fetchers/game_data_fetcher.rb +29 -0
  21. data/lib/ahl_scraper/fetchers/game_event_data_fetcher.rb +19 -0
  22. data/lib/ahl_scraper/fetchers/player_data_fetcher.rb +25 -0
  23. data/lib/ahl_scraper/fetchers/player_games/data_fetcher.rb +30 -0
  24. data/lib/ahl_scraper/fetchers/playoff_bracket_data_fetcher.rb +19 -0
  25. data/lib/ahl_scraper/fetchers/season_data_fetcher.rb +15 -0
  26. data/lib/ahl_scraper/fetchers/season_end_date_fetcher.rb +34 -0
  27. data/lib/ahl_scraper/fetchers/season_game_ids_fetcher.rb +21 -0
  28. data/lib/ahl_scraper/fetchers/season_start_date_fetcher.rb +30 -0
  29. data/lib/ahl_scraper/fetchers/season_type_fetcher.rb +33 -0
  30. data/lib/ahl_scraper/fetchers/team_data_fetcher.rb +19 -0
  31. data/lib/ahl_scraper/fetchers/team_games/data_fetcher.rb +22 -0
  32. data/lib/ahl_scraper/fetchers/team_roster_data_fetcher.rb +67 -0
  33. data/lib/ahl_scraper/fixed_games/1001050.json +2182 -0
  34. data/lib/ahl_scraper/fixed_games/1018774.json +2573 -0
  35. data/lib/ahl_scraper/fixed_games/1020527.json +2483 -0
  36. data/lib/ahl_scraper/games.rb +46 -0
  37. data/lib/ahl_scraper/games/events.rb +8 -0
  38. data/lib/ahl_scraper/helpers/birthdate_helper.rb +27 -0
  39. data/lib/ahl_scraper/helpers/elapsed_time_helper.rb +24 -0
  40. data/lib/ahl_scraper/helpers/ice_time_helper.rb +18 -0
  41. data/lib/ahl_scraper/helpers/parameterize_helper.rb +35 -0
  42. data/lib/ahl_scraper/helpers/period_time_helper.rb +25 -0
  43. data/lib/ahl_scraper/helpers/season_dates_helper.rb +14 -0
  44. data/lib/ahl_scraper/player_games.rb +19 -0
  45. data/lib/ahl_scraper/players.rb +12 -0
  46. data/lib/ahl_scraper/playoff_brackets.rb +17 -0
  47. data/lib/ahl_scraper/resource.rb +38 -0
  48. data/lib/ahl_scraper/resources/game.rb +373 -0
  49. data/lib/ahl_scraper/resources/game_list_item.rb +57 -0
  50. data/lib/ahl_scraper/resources/games/coach.rb +23 -0
  51. data/lib/ahl_scraper/resources/games/events/shot.rb +10 -0
  52. data/lib/ahl_scraper/resources/games/goal.rb +161 -0
  53. data/lib/ahl_scraper/resources/games/goalie.rb +106 -0
  54. data/lib/ahl_scraper/resources/games/info.rb +83 -0
  55. data/lib/ahl_scraper/resources/games/on_ice_skater.rb +35 -0
  56. data/lib/ahl_scraper/resources/games/overtime.rb +48 -0
  57. data/lib/ahl_scraper/resources/games/penalty.rb +101 -0
  58. data/lib/ahl_scraper/resources/games/penalty_shot.rb +82 -0
  59. data/lib/ahl_scraper/resources/games/period.rb +31 -0
  60. data/lib/ahl_scraper/resources/games/referee.rb +23 -0
  61. data/lib/ahl_scraper/resources/games/shootout_attempt.rb +61 -0
  62. data/lib/ahl_scraper/resources/games/skater.rb +94 -0
  63. data/lib/ahl_scraper/resources/games/star.rb +47 -0
  64. data/lib/ahl_scraper/resources/games/team.rb +85 -0
  65. data/lib/ahl_scraper/resources/goalie_game_list_item.rb +69 -0
  66. data/lib/ahl_scraper/resources/player.rb +71 -0
  67. data/lib/ahl_scraper/resources/playoff_bracket.rb +21 -0
  68. data/lib/ahl_scraper/resources/playoff_brackets/game.rb +43 -0
  69. data/lib/ahl_scraper/resources/playoff_brackets/round.rb +31 -0
  70. data/lib/ahl_scraper/resources/playoff_brackets/series.rb +73 -0
  71. data/lib/ahl_scraper/resources/playoff_brackets/team.rb +39 -0
  72. data/lib/ahl_scraper/resources/roster_player.rb +71 -0
  73. data/lib/ahl_scraper/resources/season.rb +93 -0
  74. data/lib/ahl_scraper/resources/season_list_item.rb +30 -0
  75. data/lib/ahl_scraper/resources/seasons/team.rb +77 -0
  76. data/lib/ahl_scraper/resources/skater_game_list_item.rb +65 -0
  77. data/lib/ahl_scraper/resources/team_game_list_item.rb +64 -0
  78. data/lib/ahl_scraper/resources/team_list_item.rb +20 -0
  79. data/lib/ahl_scraper/roster_players.rb +11 -0
  80. data/lib/ahl_scraper/seasons.rb +31 -0
  81. data/lib/ahl_scraper/services/games/create_skaters_service.rb +72 -0
  82. data/lib/ahl_scraper/services/games/on_ice_statlines_service.rb +117 -0
  83. data/lib/ahl_scraper/services/games/penalty_shot_statlines_service.rb +38 -0
  84. data/lib/ahl_scraper/services/games/penalty_shots_service.rb +30 -0
  85. data/lib/ahl_scraper/services/games/penalty_statlines_service.rb +62 -0
  86. data/lib/ahl_scraper/services/games/scoring_statlines_service.rb +115 -0
  87. data/lib/ahl_scraper/services/games/shootout_statlines_service.rb +42 -0
  88. data/lib/ahl_scraper/services/games/team_on_ice_goals_service.rb +152 -0
  89. data/lib/ahl_scraper/services/games/time_splits_service.rb +70 -0
  90. data/lib/ahl_scraper/services/seasons/teams_service.rb +20 -0
  91. data/lib/ahl_scraper/team_games.rb +17 -0
  92. data/lib/ahl_scraper/teams.rb +11 -0
  93. data/lib/ahl_scraper/version.rb +5 -0
  94. metadata +138 -0
@@ -0,0 +1,67 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AhlScraper
4
+ class TeamRosterDataFetcher
5
+ def initialize(team_id, season_id)
6
+ @team_id = team_id
7
+ @season_id = season_id
8
+ end
9
+
10
+ def call
11
+ fetch_roster_data
12
+ merge_positional_data
13
+ merge_roster_data
14
+ merge_all_data
15
+ end
16
+
17
+ private
18
+
19
+ def fetch_roster_data
20
+ @roster_data = JSON.parse(Nokogiri::HTML(URI.parse(roster_url).open).text[5..-2], symbolize_names: true)
21
+ end
22
+
23
+ def forward_data
24
+ @forward_data ||= JSON.parse(Nokogiri::HTML(URI.parse(forwards_url).open).text[5..-2], symbolize_names: true).dig(0, :sections, 0, :data)
25
+ end
26
+
27
+ def defencemen_data
28
+ @defencemen_data ||= JSON.parse(Nokogiri::HTML(URI.parse(defencemen_url).open).text[5..-2], symbolize_names: true).dig(0, :sections, 0, :data)
29
+ end
30
+
31
+ def goalie_data
32
+ @goalie_data ||= JSON.parse(Nokogiri::HTML(URI.parse(goalies_url).open).text[5..-2], symbolize_names: true).dig(0, :sections, 0, :data)
33
+ end
34
+
35
+ def merge_roster_data
36
+ @player_data = @roster_data.dig(:roster, 0, :sections)[0..2].map { |players| players[:data] }.flatten
37
+ end
38
+
39
+ def merge_positional_data
40
+ @positional_data = (forward_data + defencemen_data + goalie_data).filter { |player| !player[:row][:player_id].nil? }
41
+ .map { |player| [player[:row][:player_id], player] }
42
+ .to_h
43
+ end
44
+
45
+ def merge_all_data
46
+ @player_bio_data = @player_data.map do |player|
47
+ { bio: player, stats: @positional_data[player[:row][:player_id]] }
48
+ end
49
+ end
50
+
51
+ def roster_url
52
+ "https://lscluster.hockeytech.com/feed/index.php?feed=statviewfeed&view=roster&team_id=#{@team_id}&season_id=#{@season_id}&key=50c2cd9b5e18e390&client_code=ahl&site_id=3&league_id=4&lang=en&callback=json" # rubocop:disable Layout/LineLength
53
+ end
54
+
55
+ def forwards_url
56
+ "https://lscluster.hockeytech.com/feed/index.php?feed=statviewfeed&view=players&season=#{@season_id}&team=#{@team_id}&position=skaters&rookies=0&statsType=standard&rosterstatus=undefined&site_id=3&first=0&limit=20&sort=points&league_id=4&lang=en&division=-1&key=50c2cd9b5e18e390&client_code=ahl&league_id=4&callback=json" # rubocop:disable Layout/LineLength
57
+ end
58
+
59
+ def defencemen_url
60
+ "https://lscluster.hockeytech.com/feed/index.php?feed=statviewfeed&view=players&season=#{@season_id}&team=#{@team_id}&position=defencemen&rookies=0&statsType=standard&rosterstatus=undefined&site_id=3&first=0&limit=20&sort=points&league_id=4&lang=en&division=-1&key=50c2cd9b5e18e390&client_code=ahl&league_id=4&callback=json" # rubocop:disable Layout/LineLength
61
+ end
62
+
63
+ def goalies_url
64
+ "https://lscluster.hockeytech.com/feed/index.php?feed=statviewfeed&view=players&season=#{@season_id}&team=#{@team_id}&position=goalies&rookies=0&statsType=standard&rosterstatus=undefined&site_id=3&first=0&limit=20&sort=gaa&league_id=4&lang=en&division=-1&qualified=all&key=50c2cd9b5e18e390&client_code=ahl&league_id=4&callback=json" # rubocop:disable Layout/LineLength
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,2182 @@
1
+ {
2
+ "details": {
3
+ "id": 1001050,
4
+ "date": "Saturday, October 08, 2005",
5
+ "gameNumber": "17",
6
+ "venue": "Wachovia Arena at Casey Plaza",
7
+ "attendance": 8245,
8
+ "startTime": "7:05 pm",
9
+ "endTime": "9:26 pm",
10
+ "duration": "2:21",
11
+ "gameReportUrl": "https://lscluster.hockeytech.com/game_reports/official-game-report.php?lang_id=1&client_code=ahl&game_id=1001050",
12
+ "textBoxscoreUrl": "https://lscluster.hockeytech.com/game_reports/text-game-report.php?lang_id=1&client_code=ahl&game_id=1001050",
13
+ "ticketsUrl": "",
14
+ "started": "1",
15
+ "final": "1",
16
+ "publicNotes": "",
17
+ "status": "Final",
18
+ "seasonId": "1",
19
+ "htvGameId": "",
20
+ "GameDateISO8601": "2005-10-08T19:05:00-04:00"
21
+ },
22
+ "referees": [],
23
+ "linesmen": [
24
+ {
25
+ "firstName": "Mark",
26
+ "lastName": "Hamlett",
27
+ "jerseyNumber": 81,
28
+ "role": "Linesman"
29
+ },
30
+ {
31
+ "firstName": "John",
32
+ "lastName": "Everett",
33
+ "jerseyNumber": 82,
34
+ "role": "Linesman"
35
+ }
36
+ ],
37
+ "mostValuablePlayers": [
38
+ {
39
+ "team": {
40
+ "id": 316,
41
+ "name": "Wilkes-Barre/Scranton Penguins",
42
+ "city": "W-B/Scranton",
43
+ "nickname": "Penguins",
44
+ "abbreviation": "WBS",
45
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
46
+ "divisionName": "East Division"
47
+ },
48
+ "player": {
49
+ "info": {
50
+ "id": 2,
51
+ "firstName": "Marc-Andre",
52
+ "lastName": "Fleury",
53
+ "jerseyNumber": 29,
54
+ "position": "G",
55
+ "birthDate": "1984-11-28"
56
+ },
57
+ "stats": {
58
+ "goals": 0,
59
+ "assists": 0,
60
+ "points": 0,
61
+ "penaltyMinutes": 0,
62
+ "plusMinus": 0,
63
+ "faceoffAttempts": 0,
64
+ "faceoffWins": 0,
65
+ "timeOnIce": "60:00",
66
+ "shotsAgainst": 27,
67
+ "goalsAgainst": 1,
68
+ "saves": 26
69
+ },
70
+ "starting": 1,
71
+ "status": ""
72
+ },
73
+ "isGoalie": true,
74
+ "playerImage": "https://assets.leaguestat.com/ahl/240x240/2.jpg"
75
+ },
76
+ {
77
+ "team": {
78
+ "id": 316,
79
+ "name": "Wilkes-Barre/Scranton Penguins",
80
+ "city": "W-B/Scranton",
81
+ "nickname": "Penguins",
82
+ "abbreviation": "WBS",
83
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
84
+ "divisionName": "East Division"
85
+ },
86
+ "player": {
87
+ "info": {
88
+ "id": 15,
89
+ "firstName": "Ryan",
90
+ "lastName": "Stone",
91
+ "jerseyNumber": 23,
92
+ "position": "C",
93
+ "birthDate": "1985-03-20"
94
+ },
95
+ "stats": {
96
+ "goals": 1,
97
+ "assists": 0,
98
+ "points": 1,
99
+ "penaltyMinutes": 2,
100
+ "plusMinus": 2,
101
+ "faceoffAttempts": 0,
102
+ "faceoffWins": 0,
103
+ "shots": 1,
104
+ "hits": 0
105
+ },
106
+ "starting": 0,
107
+ "status": ""
108
+ },
109
+ "isGoalie": false,
110
+ "playerImage": "https://assets.leaguestat.com/ahl/240x240/15.jpg"
111
+ },
112
+ {
113
+ "team": {
114
+ "id": 316,
115
+ "name": "Wilkes-Barre/Scranton Penguins",
116
+ "city": "W-B/Scranton",
117
+ "nickname": "Penguins",
118
+ "abbreviation": "WBS",
119
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
120
+ "divisionName": "East Division"
121
+ },
122
+ "player": {
123
+ "info": {
124
+ "id": 11,
125
+ "firstName": "Jonathan",
126
+ "lastName": "Filewich",
127
+ "jerseyNumber": 18,
128
+ "position": "RW",
129
+ "birthDate": "1984-10-02"
130
+ },
131
+ "stats": {
132
+ "goals": 1,
133
+ "assists": 0,
134
+ "points": 1,
135
+ "penaltyMinutes": 0,
136
+ "plusMinus": 1,
137
+ "faceoffAttempts": 0,
138
+ "faceoffWins": 0,
139
+ "shots": 3,
140
+ "hits": 0
141
+ },
142
+ "starting": 0,
143
+ "status": ""
144
+ },
145
+ "isGoalie": false,
146
+ "playerImage": "https://assets.leaguestat.com/ahl/240x240/11.jpg"
147
+ }
148
+ ],
149
+ "hasShootout": false,
150
+ "homeTeam": {
151
+ "info": {
152
+ "id": 316,
153
+ "name": "Wilkes-Barre/Scranton Penguins",
154
+ "city": "W-B/Scranton",
155
+ "nickname": "Penguins",
156
+ "abbreviation": "WBS",
157
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
158
+ "divisionName": "East Division"
159
+ },
160
+ "stats": {
161
+ "shots": 26,
162
+ "goals": 2,
163
+ "hits": 0,
164
+ "powerPlayGoals": 0,
165
+ "powerPlayOpportunities": 7,
166
+ "goalCount": 2,
167
+ "assistCount": 2,
168
+ "penaltyMinuteCount": 22,
169
+ "infractionCount": 11
170
+ },
171
+ "media": {
172
+ "audioUrl": "",
173
+ "videoUrl": "",
174
+ "webcastUrl": "https://www.b2livetv.com/hockey/ahl/wilkes-barre/billnow.asp"
175
+ },
176
+ "coaches": [
177
+ { "firstName": "Mike", "lastName": "Yeo", "role": "Assistant Coach" }
178
+ ],
179
+ "skaters": [
180
+ {
181
+ "info": {
182
+ "id": 21,
183
+ "firstName": "Andy",
184
+ "lastName": "Schneider",
185
+ "jerseyNumber": 2,
186
+ "position": "D",
187
+ "birthDate": "1981-07-31"
188
+ },
189
+ "stats": {
190
+ "goals": 0,
191
+ "assists": 1,
192
+ "points": 1,
193
+ "penaltyMinutes": 2,
194
+ "plusMinus": 1,
195
+ "faceoffAttempts": 0,
196
+ "faceoffWins": 0,
197
+ "shots": 1,
198
+ "hits": 0
199
+ },
200
+ "starting": 0,
201
+ "status": ""
202
+ },
203
+ {
204
+ "info": {
205
+ "id": 17,
206
+ "firstName": "Chris",
207
+ "lastName": "Kelleher",
208
+ "jerseyNumber": 4,
209
+ "position": "D",
210
+ "birthDate": "1975-03-23"
211
+ },
212
+ "stats": {
213
+ "goals": 0,
214
+ "assists": 0,
215
+ "points": 0,
216
+ "penaltyMinutes": 0,
217
+ "plusMinus": 1,
218
+ "faceoffAttempts": 0,
219
+ "faceoffWins": 0,
220
+ "shots": 1,
221
+ "hits": 0
222
+ },
223
+ "starting": 0,
224
+ "status": ""
225
+ },
226
+ {
227
+ "info": {
228
+ "id": 22,
229
+ "firstName": "Noah",
230
+ "lastName": "Welch",
231
+ "jerseyNumber": 5,
232
+ "position": "D",
233
+ "birthDate": "1982-08-26"
234
+ },
235
+ "stats": {
236
+ "goals": 0,
237
+ "assists": 1,
238
+ "points": 1,
239
+ "penaltyMinutes": 0,
240
+ "plusMinus": 2,
241
+ "faceoffAttempts": 0,
242
+ "faceoffWins": 0,
243
+ "shots": 3,
244
+ "hits": 0
245
+ },
246
+ "starting": 0,
247
+ "status": ""
248
+ },
249
+ {
250
+ "info": {
251
+ "id": 14,
252
+ "firstName": "Michel",
253
+ "lastName": "Ouellet",
254
+ "jerseyNumber": 7,
255
+ "position": "RW",
256
+ "birthDate": "1982-03-05"
257
+ },
258
+ "stats": {
259
+ "goals": 0,
260
+ "assists": 0,
261
+ "points": 0,
262
+ "penaltyMinutes": 0,
263
+ "plusMinus": 0,
264
+ "faceoffAttempts": 0,
265
+ "faceoffWins": 0,
266
+ "shots": 3,
267
+ "hits": 0
268
+ },
269
+ "starting": 0,
270
+ "status": ""
271
+ },
272
+ {
273
+ "info": {
274
+ "id": 16,
275
+ "firstName": "Daniel",
276
+ "lastName": "Fernholm",
277
+ "jerseyNumber": 8,
278
+ "position": "D",
279
+ "birthDate": "1983-12-20"
280
+ },
281
+ "stats": {
282
+ "goals": 0,
283
+ "assists": 0,
284
+ "points": 0,
285
+ "penaltyMinutes": 0,
286
+ "plusMinus": 0,
287
+ "faceoffAttempts": 0,
288
+ "faceoffWins": 0,
289
+ "shots": 0,
290
+ "hits": 0
291
+ },
292
+ "starting": 0,
293
+ "status": ""
294
+ },
295
+ {
296
+ "info": {
297
+ "id": 4,
298
+ "firstName": "Colby",
299
+ "lastName": "Armstrong",
300
+ "jerseyNumber": 9,
301
+ "position": "RW",
302
+ "birthDate": "1982-11-23"
303
+ },
304
+ "stats": {
305
+ "goals": 0,
306
+ "assists": 0,
307
+ "points": 0,
308
+ "penaltyMinutes": 2,
309
+ "plusMinus": 0,
310
+ "faceoffAttempts": 0,
311
+ "faceoffWins": 0,
312
+ "shots": 1,
313
+ "hits": 0
314
+ },
315
+ "starting": 1,
316
+ "status": "A"
317
+ },
318
+ {
319
+ "info": {
320
+ "id": 9,
321
+ "firstName": "Stephen",
322
+ "lastName": "Dixon",
323
+ "jerseyNumber": 10,
324
+ "position": "C",
325
+ "birthDate": "1985-09-07"
326
+ },
327
+ "stats": {
328
+ "goals": 0,
329
+ "assists": 0,
330
+ "points": 0,
331
+ "penaltyMinutes": 0,
332
+ "plusMinus": 1,
333
+ "faceoffAttempts": 0,
334
+ "faceoffWins": 0,
335
+ "shots": 0,
336
+ "hits": 0
337
+ },
338
+ "starting": 0,
339
+ "status": ""
340
+ },
341
+ {
342
+ "info": {
343
+ "id": 6,
344
+ "firstName": "Daniel",
345
+ "lastName": "Carcillo",
346
+ "jerseyNumber": 13,
347
+ "position": "LW",
348
+ "birthDate": "1985-01-28"
349
+ },
350
+ "stats": {
351
+ "goals": 0,
352
+ "assists": 0,
353
+ "points": 0,
354
+ "penaltyMinutes": 6,
355
+ "plusMinus": 0,
356
+ "faceoffAttempts": 0,
357
+ "faceoffWins": 0,
358
+ "shots": 2,
359
+ "hits": 0
360
+ },
361
+ "starting": 0,
362
+ "status": ""
363
+ },
364
+ {
365
+ "info": {
366
+ "id": 7,
367
+ "firstName": "Erik",
368
+ "lastName": "Christensen",
369
+ "jerseyNumber": 16,
370
+ "position": "C",
371
+ "birthDate": "1983-12-17"
372
+ },
373
+ "stats": {
374
+ "goals": 0,
375
+ "assists": 0,
376
+ "points": 0,
377
+ "penaltyMinutes": 0,
378
+ "plusMinus": 0,
379
+ "faceoffAttempts": 0,
380
+ "faceoffWins": 0,
381
+ "shots": 1,
382
+ "hits": 0
383
+ },
384
+ "starting": 0,
385
+ "status": ""
386
+ },
387
+ {
388
+ "info": {
389
+ "id": 13,
390
+ "firstName": "Guillaume",
391
+ "lastName": "Lefebvre",
392
+ "jerseyNumber": 17,
393
+ "position": "LW",
394
+ "birthDate": "1981-05-07"
395
+ },
396
+ "stats": {
397
+ "goals": 0,
398
+ "assists": 0,
399
+ "points": 0,
400
+ "penaltyMinutes": 4,
401
+ "plusMinus": 1,
402
+ "faceoffAttempts": 0,
403
+ "faceoffWins": 0,
404
+ "shots": 1,
405
+ "hits": 0
406
+ },
407
+ "starting": 0,
408
+ "status": ""
409
+ },
410
+ {
411
+ "info": {
412
+ "id": 11,
413
+ "firstName": "Jonathan",
414
+ "lastName": "Filewich",
415
+ "jerseyNumber": 18,
416
+ "position": "RW",
417
+ "birthDate": "1984-10-02"
418
+ },
419
+ "stats": {
420
+ "goals": 1,
421
+ "assists": 0,
422
+ "points": 1,
423
+ "penaltyMinutes": 0,
424
+ "plusMinus": 1,
425
+ "faceoffAttempts": 0,
426
+ "faceoffWins": 0,
427
+ "shots": 3,
428
+ "hits": 0
429
+ },
430
+ "starting": 0,
431
+ "status": ""
432
+ },
433
+ {
434
+ "info": {
435
+ "id": 23,
436
+ "firstName": "Ryan",
437
+ "lastName": "Whitney",
438
+ "jerseyNumber": 19,
439
+ "position": "D",
440
+ "birthDate": "1983-02-19"
441
+ },
442
+ "stats": {
443
+ "goals": 0,
444
+ "assists": 0,
445
+ "points": 0,
446
+ "penaltyMinutes": 0,
447
+ "plusMinus": 0,
448
+ "faceoffAttempts": 0,
449
+ "faceoffWins": 0,
450
+ "shots": 2,
451
+ "hits": 0
452
+ },
453
+ "starting": 1,
454
+ "status": ""
455
+ },
456
+ {
457
+ "info": {
458
+ "id": 15,
459
+ "firstName": "Ryan",
460
+ "lastName": "Stone",
461
+ "jerseyNumber": 23,
462
+ "position": "C",
463
+ "birthDate": "1985-03-20"
464
+ },
465
+ "stats": {
466
+ "goals": 1,
467
+ "assists": 0,
468
+ "points": 1,
469
+ "penaltyMinutes": 2,
470
+ "plusMinus": 2,
471
+ "faceoffAttempts": 0,
472
+ "faceoffWins": 0,
473
+ "shots": 1,
474
+ "hits": 0
475
+ },
476
+ "starting": 0,
477
+ "status": ""
478
+ },
479
+ {
480
+ "info": {
481
+ "id": 24,
482
+ "firstName": "Tomas",
483
+ "lastName": "Surovy",
484
+ "jerseyNumber": 25,
485
+ "position": "LW",
486
+ "birthDate": "1981-09-24"
487
+ },
488
+ "stats": {
489
+ "goals": 0,
490
+ "assists": 0,
491
+ "points": 0,
492
+ "penaltyMinutes": 2,
493
+ "plusMinus": 0,
494
+ "faceoffAttempts": 0,
495
+ "faceoffWins": 0,
496
+ "shots": 3,
497
+ "hits": 0
498
+ },
499
+ "starting": 1,
500
+ "status": ""
501
+ },
502
+ {
503
+ "info": {
504
+ "id": 5,
505
+ "firstName": "Dennis",
506
+ "lastName": "Bonvie",
507
+ "jerseyNumber": 27,
508
+ "position": "RW",
509
+ "birthDate": "1973-07-23"
510
+ },
511
+ "stats": {
512
+ "goals": 0,
513
+ "assists": 0,
514
+ "points": 0,
515
+ "penaltyMinutes": 2,
516
+ "plusMinus": 0,
517
+ "faceoffAttempts": 0,
518
+ "faceoffWins": 0,
519
+ "shots": 0,
520
+ "hits": 0
521
+ },
522
+ "starting": 0,
523
+ "status": "A"
524
+ },
525
+ {
526
+ "info": {
527
+ "id": 12,
528
+ "firstName": "Matt",
529
+ "lastName": "Hussey",
530
+ "jerseyNumber": 28,
531
+ "position": "C",
532
+ "birthDate": "1979-05-28"
533
+ },
534
+ "stats": {
535
+ "goals": 0,
536
+ "assists": 0,
537
+ "points": 0,
538
+ "penaltyMinutes": 2,
539
+ "plusMinus": 0,
540
+ "faceoffAttempts": 0,
541
+ "faceoffWins": 0,
542
+ "shots": 4,
543
+ "hits": 0
544
+ },
545
+ "starting": 1,
546
+ "status": ""
547
+ },
548
+ {
549
+ "info": {
550
+ "id": 20,
551
+ "firstName": "Alain",
552
+ "lastName": "Nasreddine",
553
+ "jerseyNumber": 32,
554
+ "position": "D",
555
+ "birthDate": "1975-07-10"
556
+ },
557
+ "stats": {
558
+ "goals": 0,
559
+ "assists": 0,
560
+ "points": 0,
561
+ "penaltyMinutes": 0,
562
+ "plusMinus": 0,
563
+ "faceoffAttempts": 0,
564
+ "faceoffWins": 0,
565
+ "shots": 0,
566
+ "hits": 0
567
+ },
568
+ "starting": 1,
569
+ "status": "C"
570
+ }
571
+ ],
572
+ "goalies": [
573
+ {
574
+ "info": {
575
+ "id": 2,
576
+ "firstName": "Marc-Andre",
577
+ "lastName": "Fleury",
578
+ "jerseyNumber": 29,
579
+ "position": "G",
580
+ "birthDate": "1984-11-28"
581
+ },
582
+ "stats": {
583
+ "goals": 0,
584
+ "assists": 0,
585
+ "points": 0,
586
+ "penaltyMinutes": 0,
587
+ "plusMinus": 0,
588
+ "faceoffAttempts": 0,
589
+ "faceoffWins": 0,
590
+ "timeOnIce": "60:00",
591
+ "shotsAgainst": 27,
592
+ "goalsAgainst": 1,
593
+ "saves": 26
594
+ },
595
+ "starting": 1,
596
+ "status": ""
597
+ },
598
+ {
599
+ "info": {
600
+ "id": 3,
601
+ "firstName": "Dany",
602
+ "lastName": "Sabourin",
603
+ "jerseyNumber": 35,
604
+ "position": "G",
605
+ "birthDate": "1980-09-02"
606
+ },
607
+ "stats": {
608
+ "goals": 0,
609
+ "assists": 0,
610
+ "points": 0,
611
+ "penaltyMinutes": 0,
612
+ "plusMinus": 0,
613
+ "faceoffAttempts": 0,
614
+ "faceoffWins": 0,
615
+ "timeOnIce": null,
616
+ "shotsAgainst": 0,
617
+ "goalsAgainst": 0,
618
+ "saves": 0
619
+ },
620
+ "starting": 0,
621
+ "status": ""
622
+ }
623
+ ],
624
+ "goalieLog": [],
625
+ "seasonStats": []
626
+ },
627
+ "visitingTeam": {
628
+ "info": {
629
+ "id": 319,
630
+ "name": "Hershey Bears",
631
+ "city": "Hershey",
632
+ "nickname": "Hershey",
633
+ "abbreviation": "HER",
634
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
635
+ "divisionName": "East Division"
636
+ },
637
+ "stats": {
638
+ "shots": 27,
639
+ "goals": 1,
640
+ "hits": 0,
641
+ "powerPlayGoals": 1,
642
+ "powerPlayOpportunities": 11,
643
+ "goalCount": 1,
644
+ "assistCount": 2,
645
+ "penaltyMinuteCount": 14,
646
+ "infractionCount": 7
647
+ },
648
+ "media": {
649
+ "audioUrl": "",
650
+ "videoUrl": "",
651
+ "webcastUrl": "https://www.b2livetv.com/hockey/ahl/hershey/billnow.asp"
652
+ },
653
+ "coaches": [
654
+ { "firstName": "Bruce", "lastName": "Boudreau", "role": "Head Coach" },
655
+ { "firstName": "Bob", "lastName": "Woods", "role": "Assistant Coach" }
656
+ ],
657
+ "skaters": [
658
+ {
659
+ "info": {
660
+ "id": 130,
661
+ "firstName": "Mark",
662
+ "lastName": "Wotton",
663
+ "jerseyNumber": 4,
664
+ "position": "D",
665
+ "birthDate": "1973-10-16"
666
+ },
667
+ "stats": {
668
+ "goals": 0,
669
+ "assists": 0,
670
+ "points": 0,
671
+ "penaltyMinutes": 0,
672
+ "plusMinus": -1,
673
+ "faceoffAttempts": 0,
674
+ "faceoffWins": 0,
675
+ "shots": 0,
676
+ "hits": 0
677
+ },
678
+ "starting": 1,
679
+ "status": "A"
680
+ },
681
+ {
682
+ "info": {
683
+ "id": 136,
684
+ "firstName": "Mike",
685
+ "lastName": "Green",
686
+ "jerseyNumber": 5,
687
+ "position": "D",
688
+ "birthDate": "1985-10-12"
689
+ },
690
+ "stats": {
691
+ "goals": 0,
692
+ "assists": 0,
693
+ "points": 0,
694
+ "penaltyMinutes": 2,
695
+ "plusMinus": 0,
696
+ "faceoffAttempts": 0,
697
+ "faceoffWins": 0,
698
+ "shots": 3,
699
+ "hits": 0
700
+ },
701
+ "starting": 0,
702
+ "status": ""
703
+ },
704
+ {
705
+ "info": {
706
+ "id": 142,
707
+ "firstName": "Jean-Francois",
708
+ "lastName": "Fortin",
709
+ "jerseyNumber": 7,
710
+ "position": "D",
711
+ "birthDate": "1979-03-15"
712
+ },
713
+ "stats": {
714
+ "goals": 0,
715
+ "assists": 0,
716
+ "points": 0,
717
+ "penaltyMinutes": 4,
718
+ "plusMinus": -2,
719
+ "faceoffAttempts": 0,
720
+ "faceoffWins": 0,
721
+ "shots": 1,
722
+ "hits": 0
723
+ },
724
+ "starting": 0,
725
+ "status": ""
726
+ },
727
+ {
728
+ "info": {
729
+ "id": 146,
730
+ "firstName": "Joey",
731
+ "lastName": "Tenute",
732
+ "jerseyNumber": 10,
733
+ "position": "C",
734
+ "birthDate": "1983-04-02"
735
+ },
736
+ "stats": {
737
+ "goals": 0,
738
+ "assists": 0,
739
+ "points": 0,
740
+ "penaltyMinutes": 2,
741
+ "plusMinus": 0,
742
+ "faceoffAttempts": 0,
743
+ "faceoffWins": 0,
744
+ "shots": 1,
745
+ "hits": 0
746
+ },
747
+ "starting": 0,
748
+ "status": ""
749
+ },
750
+ {
751
+ "info": {
752
+ "id": 148,
753
+ "firstName": "Eric",
754
+ "lastName": "Fehr",
755
+ "jerseyNumber": 11,
756
+ "position": "RW",
757
+ "birthDate": "1985-09-07"
758
+ },
759
+ "stats": {
760
+ "goals": 0,
761
+ "assists": 1,
762
+ "points": 1,
763
+ "penaltyMinutes": 0,
764
+ "plusMinus": 0,
765
+ "faceoffAttempts": 0,
766
+ "faceoffWins": 0,
767
+ "shots": 3,
768
+ "hits": 0
769
+ },
770
+ "starting": 1,
771
+ "status": ""
772
+ },
773
+ {
774
+ "info": {
775
+ "id": 150,
776
+ "firstName": "Boyd",
777
+ "lastName": "Kane",
778
+ "jerseyNumber": 12,
779
+ "position": "RW",
780
+ "birthDate": "1978-04-18"
781
+ },
782
+ "stats": {
783
+ "goals": 0,
784
+ "assists": 0,
785
+ "points": 0,
786
+ "penaltyMinutes": 2,
787
+ "plusMinus": -1,
788
+ "faceoffAttempts": 0,
789
+ "faceoffWins": 0,
790
+ "shots": 5,
791
+ "hits": 0
792
+ },
793
+ "starting": 0,
794
+ "status": "A"
795
+ },
796
+ {
797
+ "info": {
798
+ "id": 153,
799
+ "firstName": "Tomas",
800
+ "lastName": "Fleischmann",
801
+ "jerseyNumber": 14,
802
+ "position": "LW",
803
+ "birthDate": "1984-05-16"
804
+ },
805
+ "stats": {
806
+ "goals": 0,
807
+ "assists": 0,
808
+ "points": 0,
809
+ "penaltyMinutes": 0,
810
+ "plusMinus": 0,
811
+ "faceoffAttempts": 0,
812
+ "faceoffWins": 0,
813
+ "shots": 3,
814
+ "hits": 0
815
+ },
816
+ "starting": 0,
817
+ "status": ""
818
+ },
819
+ {
820
+ "info": {
821
+ "id": 156,
822
+ "firstName": "Chris",
823
+ "lastName": "Bourque",
824
+ "jerseyNumber": 17,
825
+ "position": "LW",
826
+ "birthDate": "1986-01-29"
827
+ },
828
+ "stats": {
829
+ "goals": 0,
830
+ "assists": 0,
831
+ "points": 0,
832
+ "penaltyMinutes": 0,
833
+ "plusMinus": -1,
834
+ "faceoffAttempts": 0,
835
+ "faceoffWins": 0,
836
+ "shots": 1,
837
+ "hits": 0
838
+ },
839
+ "starting": 1,
840
+ "status": ""
841
+ },
842
+ {
843
+ "info": {
844
+ "id": 159,
845
+ "firstName": "Jakub",
846
+ "lastName": "Klepis",
847
+ "jerseyNumber": 18,
848
+ "position": "RW",
849
+ "birthDate": "1984-06-05"
850
+ },
851
+ "stats": {
852
+ "goals": 0,
853
+ "assists": 0,
854
+ "points": 0,
855
+ "penaltyMinutes": 0,
856
+ "plusMinus": -1,
857
+ "faceoffAttempts": 0,
858
+ "faceoffWins": 0,
859
+ "shots": 2,
860
+ "hits": 0
861
+ },
862
+ "starting": 0,
863
+ "status": ""
864
+ },
865
+ {
866
+ "info": {
867
+ "id": 168,
868
+ "firstName": "Dave",
869
+ "lastName": "Steckel",
870
+ "jerseyNumber": 20,
871
+ "position": "C",
872
+ "birthDate": "1982-05-15"
873
+ },
874
+ "stats": {
875
+ "goals": 0,
876
+ "assists": 0,
877
+ "points": 0,
878
+ "penaltyMinutes": 0,
879
+ "plusMinus": -1,
880
+ "faceoffAttempts": 0,
881
+ "faceoffWins": 0,
882
+ "shots": 1,
883
+ "hits": 0
884
+ },
885
+ "starting": 1,
886
+ "status": ""
887
+ },
888
+ {
889
+ "info": {
890
+ "id": 170,
891
+ "firstName": "Graham",
892
+ "lastName": "Mink",
893
+ "jerseyNumber": 21,
894
+ "position": "RW",
895
+ "birthDate": "1979-05-21"
896
+ },
897
+ "stats": {
898
+ "goals": 1,
899
+ "assists": 0,
900
+ "points": 1,
901
+ "penaltyMinutes": 0,
902
+ "plusMinus": -1,
903
+ "faceoffAttempts": 0,
904
+ "faceoffWins": 0,
905
+ "shots": 2,
906
+ "hits": 0
907
+ },
908
+ "starting": 0,
909
+ "status": ""
910
+ },
911
+ {
912
+ "info": {
913
+ "id": 172,
914
+ "firstName": "Owen",
915
+ "lastName": "Fussey",
916
+ "jerseyNumber": 22,
917
+ "position": "LW",
918
+ "birthDate": "1983-04-02"
919
+ },
920
+ "stats": {
921
+ "goals": 0,
922
+ "assists": 0,
923
+ "points": 0,
924
+ "penaltyMinutes": 0,
925
+ "plusMinus": -1,
926
+ "faceoffAttempts": 0,
927
+ "faceoffWins": 0,
928
+ "shots": 0,
929
+ "hits": 0
930
+ },
931
+ "starting": 0,
932
+ "status": ""
933
+ },
934
+ {
935
+ "info": {
936
+ "id": 179,
937
+ "firstName": "Louis",
938
+ "lastName": "Robitaille",
939
+ "jerseyNumber": 24,
940
+ "position": "D",
941
+ "birthDate": "1982-03-16"
942
+ },
943
+ "stats": {
944
+ "goals": 0,
945
+ "assists": 0,
946
+ "points": 0,
947
+ "penaltyMinutes": 0,
948
+ "plusMinus": 0,
949
+ "faceoffAttempts": 0,
950
+ "faceoffWins": 0,
951
+ "shots": 0,
952
+ "hits": 0
953
+ },
954
+ "starting": 0,
955
+ "status": ""
956
+ },
957
+ {
958
+ "info": {
959
+ "id": 184,
960
+ "firstName": "Brooks",
961
+ "lastName": "Laich",
962
+ "jerseyNumber": 26,
963
+ "position": "C",
964
+ "birthDate": "1983-06-23"
965
+ },
966
+ "stats": {
967
+ "goals": 0,
968
+ "assists": 1,
969
+ "points": 1,
970
+ "penaltyMinutes": 0,
971
+ "plusMinus": 0,
972
+ "faceoffAttempts": 0,
973
+ "faceoffWins": 0,
974
+ "shots": 2,
975
+ "hits": 0
976
+ },
977
+ "starting": 0,
978
+ "status": ""
979
+ },
980
+ {
981
+ "info": {
982
+ "id": 187,
983
+ "firstName": "Lawrence",
984
+ "lastName": "Nycholat",
985
+ "jerseyNumber": 28,
986
+ "position": "D",
987
+ "birthDate": "1979-05-07"
988
+ },
989
+ "stats": {
990
+ "goals": 0,
991
+ "assists": 0,
992
+ "points": 0,
993
+ "penaltyMinutes": 0,
994
+ "plusMinus": 0,
995
+ "faceoffAttempts": 0,
996
+ "faceoffWins": 0,
997
+ "shots": 1,
998
+ "hits": 0
999
+ },
1000
+ "starting": 0,
1001
+ "status": "A"
1002
+ },
1003
+ {
1004
+ "info": {
1005
+ "id": 190,
1006
+ "firstName": "Dean",
1007
+ "lastName": "Arsene",
1008
+ "jerseyNumber": 29,
1009
+ "position": "D",
1010
+ "birthDate": "1980-07-12"
1011
+ },
1012
+ "stats": {
1013
+ "goals": 0,
1014
+ "assists": 0,
1015
+ "points": 0,
1016
+ "penaltyMinutes": 0,
1017
+ "plusMinus": -1,
1018
+ "faceoffAttempts": 0,
1019
+ "faceoffWins": 0,
1020
+ "shots": 0,
1021
+ "hits": 0
1022
+ },
1023
+ "starting": 0,
1024
+ "status": ""
1025
+ },
1026
+ {
1027
+ "info": {
1028
+ "id": 195,
1029
+ "firstName": "Jakub",
1030
+ "lastName": "Cutta",
1031
+ "jerseyNumber": 32,
1032
+ "position": "D",
1033
+ "birthDate": "1981-12-29"
1034
+ },
1035
+ "stats": {
1036
+ "goals": 0,
1037
+ "assists": 0,
1038
+ "points": 0,
1039
+ "penaltyMinutes": 4,
1040
+ "plusMinus": 0,
1041
+ "faceoffAttempts": 0,
1042
+ "faceoffWins": 0,
1043
+ "shots": 2,
1044
+ "hits": 0
1045
+ },
1046
+ "starting": 1,
1047
+ "status": ""
1048
+ }
1049
+ ],
1050
+ "goalies": [
1051
+ {
1052
+ "info": {
1053
+ "id": 192,
1054
+ "firstName": "Kirk",
1055
+ "lastName": "Daubenspeck",
1056
+ "jerseyNumber": 30,
1057
+ "position": "G",
1058
+ "birthDate": "1974-07-21"
1059
+ },
1060
+ "stats": {
1061
+ "goals": 0,
1062
+ "assists": 0,
1063
+ "points": 0,
1064
+ "penaltyMinutes": 0,
1065
+ "plusMinus": 0,
1066
+ "faceoffAttempts": 0,
1067
+ "faceoffWins": 0,
1068
+ "timeOnIce": null,
1069
+ "shotsAgainst": 0,
1070
+ "goalsAgainst": 0,
1071
+ "saves": 0
1072
+ },
1073
+ "starting": 0,
1074
+ "status": ""
1075
+ },
1076
+ {
1077
+ "info": {
1078
+ "id": 203,
1079
+ "firstName": "Frederic",
1080
+ "lastName": "Cassivi",
1081
+ "jerseyNumber": 35,
1082
+ "position": "G",
1083
+ "birthDate": "1975-06-12"
1084
+ },
1085
+ "stats": {
1086
+ "goals": 0,
1087
+ "assists": 0,
1088
+ "points": 0,
1089
+ "penaltyMinutes": 0,
1090
+ "plusMinus": 0,
1091
+ "faceoffAttempts": 0,
1092
+ "faceoffWins": 0,
1093
+ "timeOnIce": "59:26",
1094
+ "shotsAgainst": 26,
1095
+ "goalsAgainst": 2,
1096
+ "saves": 24
1097
+ },
1098
+ "starting": 1,
1099
+ "status": ""
1100
+ }
1101
+ ],
1102
+ "goalieLog": [],
1103
+ "seasonStats": []
1104
+ },
1105
+ "periods": [
1106
+ {
1107
+ "info": { "id": "1", "shortName": "", "longName": "1st" },
1108
+ "stats": {
1109
+ "homeGoals": "1",
1110
+ "homeShots": "4",
1111
+ "visitingGoals": "0",
1112
+ "visitingShots": "11"
1113
+ },
1114
+ "goals": [
1115
+ {
1116
+ "game_goal_id": "71",
1117
+ "team": {
1118
+ "id": 316,
1119
+ "name": "Wilkes-Barre/Scranton Penguins",
1120
+ "city": "W-B/Scranton",
1121
+ "nickname": "Penguins",
1122
+ "abbreviation": "WBS",
1123
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1124
+ "divisionName": "East Division"
1125
+ },
1126
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1127
+ "time": "8:07",
1128
+ "scorerGoalNumber": "1",
1129
+ "scoredBy": {
1130
+ "id": 15,
1131
+ "firstName": "Ryan",
1132
+ "lastName": "Stone",
1133
+ "jerseyNumber": 23,
1134
+ "position": "C",
1135
+ "birthDate": "1985-03-20"
1136
+ },
1137
+ "assists": [],
1138
+ "assistNumbers": [null, null],
1139
+ "properties": {
1140
+ "isPowerPlay": "0",
1141
+ "isShortHanded": "1",
1142
+ "isEmptyNet": "0",
1143
+ "isPenaltyShot": "0",
1144
+ "isInsuranceGoal": "0",
1145
+ "isGameWinningGoal": "0"
1146
+ },
1147
+ "plus_players": [
1148
+ {
1149
+ "id": 17,
1150
+ "firstName": "Chris",
1151
+ "lastName": "Kelleher",
1152
+ "jerseyNumber": 4,
1153
+ "position": "D",
1154
+ "birthDate": "1975-03-23"
1155
+ },
1156
+ {
1157
+ "id": 22,
1158
+ "firstName": "Noah",
1159
+ "lastName": "Welch",
1160
+ "jerseyNumber": 5,
1161
+ "position": "D",
1162
+ "birthDate": "1982-08-26"
1163
+ },
1164
+ {
1165
+ "id": 13,
1166
+ "firstName": "Guillaume",
1167
+ "lastName": "Lefebvre",
1168
+ "jerseyNumber": 17,
1169
+ "position": "LW",
1170
+ "birthDate": "1981-05-07"
1171
+ },
1172
+ {
1173
+ "id": 15,
1174
+ "firstName": "Ryan",
1175
+ "lastName": "Stone",
1176
+ "jerseyNumber": 23,
1177
+ "position": "C",
1178
+ "birthDate": "1985-03-20"
1179
+ }
1180
+ ],
1181
+ "minus_players": [
1182
+ {
1183
+ "id": 142,
1184
+ "firstName": "Jean-Francois",
1185
+ "lastName": "Fortin",
1186
+ "jerseyNumber": 7,
1187
+ "position": "D",
1188
+ "birthDate": "1979-03-15"
1189
+ },
1190
+ {
1191
+ "id": 150,
1192
+ "firstName": "Boyd",
1193
+ "lastName": "Kane",
1194
+ "jerseyNumber": 12,
1195
+ "position": "RW",
1196
+ "birthDate": "1978-04-18"
1197
+ },
1198
+ {
1199
+ "id": 156,
1200
+ "firstName": "Chris",
1201
+ "lastName": "Bourque",
1202
+ "jerseyNumber": 17,
1203
+ "position": "LW",
1204
+ "birthDate": "1986-01-29"
1205
+ },
1206
+ {
1207
+ "id": 159,
1208
+ "firstName": "Jakub",
1209
+ "lastName": "Klepis",
1210
+ "jerseyNumber": 18,
1211
+ "position": "RW",
1212
+ "birthDate": "1984-06-05"
1213
+ },
1214
+ {
1215
+ "id": 170,
1216
+ "firstName": "Graham",
1217
+ "lastName": "Mink",
1218
+ "jerseyNumber": 21,
1219
+ "position": "RW",
1220
+ "birthDate": "1979-05-21"
1221
+ }
1222
+ ]
1223
+ }
1224
+ ],
1225
+ "penalties": [
1226
+ {
1227
+ "game_penalty_id": null,
1228
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1229
+ "time": "0:40",
1230
+ "againstTeam": {
1231
+ "id": 316,
1232
+ "name": "Wilkes-Barre/Scranton Penguins",
1233
+ "city": "W-B/Scranton",
1234
+ "nickname": "Penguins",
1235
+ "abbreviation": "WBS",
1236
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1237
+ "divisionName": "East Division"
1238
+ },
1239
+ "minutes": 2,
1240
+ "description": "Slashing",
1241
+ "ruleNumber": "",
1242
+ "takenBy": {
1243
+ "id": 13,
1244
+ "firstName": "Guillaume",
1245
+ "lastName": "Lefebvre",
1246
+ "jerseyNumber": 17,
1247
+ "position": "LW",
1248
+ "birthDate": "1981-05-07"
1249
+ },
1250
+ "servedBy": {
1251
+ "id": 13,
1252
+ "firstName": "Guillaume",
1253
+ "lastName": "Lefebvre",
1254
+ "jerseyNumber": 17,
1255
+ "position": "LW",
1256
+ "birthDate": "1981-05-07"
1257
+ },
1258
+ "isPowerPlay": true,
1259
+ "isBench": false
1260
+ },
1261
+ {
1262
+ "game_penalty_id": null,
1263
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1264
+ "time": "3:00",
1265
+ "againstTeam": {
1266
+ "id": 316,
1267
+ "name": "Wilkes-Barre/Scranton Penguins",
1268
+ "city": "W-B/Scranton",
1269
+ "nickname": "Penguins",
1270
+ "abbreviation": "WBS",
1271
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1272
+ "divisionName": "East Division"
1273
+ },
1274
+ "minutes": 2,
1275
+ "description": "Slashing",
1276
+ "ruleNumber": "",
1277
+ "takenBy": {
1278
+ "id": 13,
1279
+ "firstName": "Guillaume",
1280
+ "lastName": "Lefebvre",
1281
+ "jerseyNumber": 17,
1282
+ "position": "LW",
1283
+ "birthDate": "1981-05-07"
1284
+ },
1285
+ "servedBy": {
1286
+ "id": 13,
1287
+ "firstName": "Guillaume",
1288
+ "lastName": "Lefebvre",
1289
+ "jerseyNumber": 17,
1290
+ "position": "LW",
1291
+ "birthDate": "1981-05-07"
1292
+ },
1293
+ "isPowerPlay": true,
1294
+ "isBench": false
1295
+ },
1296
+ {
1297
+ "game_penalty_id": null,
1298
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1299
+ "time": "6:29",
1300
+ "againstTeam": {
1301
+ "id": 316,
1302
+ "name": "Wilkes-Barre/Scranton Penguins",
1303
+ "city": "W-B/Scranton",
1304
+ "nickname": "Penguins",
1305
+ "abbreviation": "WBS",
1306
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1307
+ "divisionName": "East Division"
1308
+ },
1309
+ "minutes": 2,
1310
+ "description": "Unsportsmanlike conduct",
1311
+ "ruleNumber": "",
1312
+ "takenBy": {
1313
+ "id": 5,
1314
+ "firstName": "Dennis",
1315
+ "lastName": "Bonvie",
1316
+ "jerseyNumber": 27,
1317
+ "position": "RW",
1318
+ "birthDate": "1973-07-23"
1319
+ },
1320
+ "servedBy": {
1321
+ "id": 5,
1322
+ "firstName": "Dennis",
1323
+ "lastName": "Bonvie",
1324
+ "jerseyNumber": 27,
1325
+ "position": "RW",
1326
+ "birthDate": "1973-07-23"
1327
+ },
1328
+ "isPowerPlay": true,
1329
+ "isBench": false
1330
+ },
1331
+ {
1332
+ "game_penalty_id": null,
1333
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1334
+ "time": "8:19",
1335
+ "againstTeam": {
1336
+ "id": 319,
1337
+ "name": "Hershey Bears",
1338
+ "city": "Hershey",
1339
+ "nickname": "Hershey",
1340
+ "abbreviation": "HER",
1341
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
1342
+ "divisionName": "East Division"
1343
+ },
1344
+ "minutes": 2,
1345
+ "description": "Hooking",
1346
+ "ruleNumber": "",
1347
+ "takenBy": {
1348
+ "id": 195,
1349
+ "firstName": "Jakub",
1350
+ "lastName": "Cutta",
1351
+ "jerseyNumber": 32,
1352
+ "position": "D",
1353
+ "birthDate": "1981-12-29"
1354
+ },
1355
+ "servedBy": {
1356
+ "id": 195,
1357
+ "firstName": "Jakub",
1358
+ "lastName": "Cutta",
1359
+ "jerseyNumber": 32,
1360
+ "position": "D",
1361
+ "birthDate": "1981-12-29"
1362
+ },
1363
+ "isPowerPlay": true,
1364
+ "isBench": false
1365
+ },
1366
+ {
1367
+ "game_penalty_id": null,
1368
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1369
+ "time": "8:59",
1370
+ "againstTeam": {
1371
+ "id": 316,
1372
+ "name": "Wilkes-Barre/Scranton Penguins",
1373
+ "city": "W-B/Scranton",
1374
+ "nickname": "Penguins",
1375
+ "abbreviation": "WBS",
1376
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1377
+ "divisionName": "East Division"
1378
+ },
1379
+ "minutes": 2,
1380
+ "description": "Hooking",
1381
+ "ruleNumber": "",
1382
+ "takenBy": {
1383
+ "id": 24,
1384
+ "firstName": "Tomas",
1385
+ "lastName": "Surovy",
1386
+ "jerseyNumber": 25,
1387
+ "position": "LW",
1388
+ "birthDate": "1981-09-24"
1389
+ },
1390
+ "servedBy": {
1391
+ "id": 24,
1392
+ "firstName": "Tomas",
1393
+ "lastName": "Surovy",
1394
+ "jerseyNumber": 25,
1395
+ "position": "LW",
1396
+ "birthDate": "1981-09-24"
1397
+ },
1398
+ "isPowerPlay": true,
1399
+ "isBench": false
1400
+ },
1401
+ {
1402
+ "game_penalty_id": null,
1403
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1404
+ "time": "17:54",
1405
+ "againstTeam": {
1406
+ "id": 316,
1407
+ "name": "Wilkes-Barre/Scranton Penguins",
1408
+ "city": "W-B/Scranton",
1409
+ "nickname": "Penguins",
1410
+ "abbreviation": "WBS",
1411
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1412
+ "divisionName": "East Division"
1413
+ },
1414
+ "minutes": 2,
1415
+ "description": "Kneeing",
1416
+ "ruleNumber": "",
1417
+ "takenBy": {
1418
+ "id": 6,
1419
+ "firstName": "Daniel",
1420
+ "lastName": "Carcillo",
1421
+ "jerseyNumber": 13,
1422
+ "position": "LW",
1423
+ "birthDate": "1985-01-28"
1424
+ },
1425
+ "servedBy": {
1426
+ "id": 6,
1427
+ "firstName": "Daniel",
1428
+ "lastName": "Carcillo",
1429
+ "jerseyNumber": 13,
1430
+ "position": "LW",
1431
+ "birthDate": "1985-01-28"
1432
+ },
1433
+ "isPowerPlay": true,
1434
+ "isBench": false
1435
+ }
1436
+ ]
1437
+ },
1438
+ {
1439
+ "info": { "id": "2", "shortName": "", "longName": "2nd" },
1440
+ "stats": {
1441
+ "homeGoals": "0",
1442
+ "homeShots": "10",
1443
+ "visitingGoals": "0",
1444
+ "visitingShots": "7"
1445
+ },
1446
+ "goals": [],
1447
+ "penalties": [
1448
+ {
1449
+ "game_penalty_id": null,
1450
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
1451
+ "time": "2:52",
1452
+ "againstTeam": {
1453
+ "id": 316,
1454
+ "name": "Wilkes-Barre/Scranton Penguins",
1455
+ "city": "W-B/Scranton",
1456
+ "nickname": "Penguins",
1457
+ "abbreviation": "WBS",
1458
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1459
+ "divisionName": "East Division"
1460
+ },
1461
+ "minutes": 2,
1462
+ "description": "Tripping",
1463
+ "ruleNumber": "",
1464
+ "takenBy": {
1465
+ "id": 21,
1466
+ "firstName": "Andy",
1467
+ "lastName": "Schneider",
1468
+ "jerseyNumber": 2,
1469
+ "position": "D",
1470
+ "birthDate": "1981-07-31"
1471
+ },
1472
+ "servedBy": {
1473
+ "id": 21,
1474
+ "firstName": "Andy",
1475
+ "lastName": "Schneider",
1476
+ "jerseyNumber": 2,
1477
+ "position": "D",
1478
+ "birthDate": "1981-07-31"
1479
+ },
1480
+ "isPowerPlay": true,
1481
+ "isBench": false
1482
+ },
1483
+ {
1484
+ "game_penalty_id": null,
1485
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
1486
+ "time": "5:31",
1487
+ "againstTeam": {
1488
+ "id": 319,
1489
+ "name": "Hershey Bears",
1490
+ "city": "Hershey",
1491
+ "nickname": "Hershey",
1492
+ "abbreviation": "HER",
1493
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
1494
+ "divisionName": "East Division"
1495
+ },
1496
+ "minutes": 2,
1497
+ "description": "Interference",
1498
+ "ruleNumber": "",
1499
+ "takenBy": {
1500
+ "id": 195,
1501
+ "firstName": "Jakub",
1502
+ "lastName": "Cutta",
1503
+ "jerseyNumber": 32,
1504
+ "position": "D",
1505
+ "birthDate": "1981-12-29"
1506
+ },
1507
+ "servedBy": {
1508
+ "id": 195,
1509
+ "firstName": "Jakub",
1510
+ "lastName": "Cutta",
1511
+ "jerseyNumber": 32,
1512
+ "position": "D",
1513
+ "birthDate": "1981-12-29"
1514
+ },
1515
+ "isPowerPlay": true,
1516
+ "isBench": false
1517
+ },
1518
+ {
1519
+ "game_penalty_id": null,
1520
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
1521
+ "time": "8:05",
1522
+ "againstTeam": {
1523
+ "id": 319,
1524
+ "name": "Hershey Bears",
1525
+ "city": "Hershey",
1526
+ "nickname": "Hershey",
1527
+ "abbreviation": "HER",
1528
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
1529
+ "divisionName": "East Division"
1530
+ },
1531
+ "minutes": 2,
1532
+ "description": "Goaltender interference",
1533
+ "ruleNumber": "",
1534
+ "takenBy": {
1535
+ "id": 146,
1536
+ "firstName": "Joey",
1537
+ "lastName": "Tenute",
1538
+ "jerseyNumber": 10,
1539
+ "position": "C",
1540
+ "birthDate": "1983-04-02"
1541
+ },
1542
+ "servedBy": {
1543
+ "id": 146,
1544
+ "firstName": "Joey",
1545
+ "lastName": "Tenute",
1546
+ "jerseyNumber": 10,
1547
+ "position": "C",
1548
+ "birthDate": "1983-04-02"
1549
+ },
1550
+ "isPowerPlay": true,
1551
+ "isBench": false
1552
+ },
1553
+ {
1554
+ "game_penalty_id": null,
1555
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
1556
+ "time": "13:02",
1557
+ "againstTeam": {
1558
+ "id": 316,
1559
+ "name": "Wilkes-Barre/Scranton Penguins",
1560
+ "city": "W-B/Scranton",
1561
+ "nickname": "Penguins",
1562
+ "abbreviation": "WBS",
1563
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1564
+ "divisionName": "East Division"
1565
+ },
1566
+ "minutes": 2,
1567
+ "description": "Hooking",
1568
+ "ruleNumber": "",
1569
+ "takenBy": {
1570
+ "id": 12,
1571
+ "firstName": "Matt",
1572
+ "lastName": "Hussey",
1573
+ "jerseyNumber": 28,
1574
+ "position": "C",
1575
+ "birthDate": "1979-05-28"
1576
+ },
1577
+ "servedBy": {
1578
+ "id": 12,
1579
+ "firstName": "Matt",
1580
+ "lastName": "Hussey",
1581
+ "jerseyNumber": 28,
1582
+ "position": "C",
1583
+ "birthDate": "1979-05-28"
1584
+ },
1585
+ "isPowerPlay": true,
1586
+ "isBench": false
1587
+ },
1588
+ {
1589
+ "game_penalty_id": null,
1590
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
1591
+ "time": "14:16",
1592
+ "againstTeam": {
1593
+ "id": 316,
1594
+ "name": "Wilkes-Barre/Scranton Penguins",
1595
+ "city": "W-B/Scranton",
1596
+ "nickname": "Penguins",
1597
+ "abbreviation": "WBS",
1598
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1599
+ "divisionName": "East Division"
1600
+ },
1601
+ "minutes": 2,
1602
+ "description": "Hooking",
1603
+ "ruleNumber": "",
1604
+ "takenBy": {
1605
+ "id": 4,
1606
+ "firstName": "Colby",
1607
+ "lastName": "Armstrong",
1608
+ "jerseyNumber": 9,
1609
+ "position": "RW",
1610
+ "birthDate": "1982-11-23"
1611
+ },
1612
+ "servedBy": {
1613
+ "id": 4,
1614
+ "firstName": "Colby",
1615
+ "lastName": "Armstrong",
1616
+ "jerseyNumber": 9,
1617
+ "position": "RW",
1618
+ "birthDate": "1982-11-23"
1619
+ },
1620
+ "isPowerPlay": true,
1621
+ "isBench": false
1622
+ }
1623
+ ]
1624
+ },
1625
+ {
1626
+ "info": { "id": "3", "shortName": "", "longName": "3rd" },
1627
+ "stats": {
1628
+ "homeGoals": "1",
1629
+ "homeShots": "12",
1630
+ "visitingGoals": "1",
1631
+ "visitingShots": "9"
1632
+ },
1633
+ "goals": [
1634
+ {
1635
+ "game_goal_id": "92",
1636
+ "team": {
1637
+ "id": 316,
1638
+ "name": "Wilkes-Barre/Scranton Penguins",
1639
+ "city": "W-B/Scranton",
1640
+ "nickname": "Penguins",
1641
+ "abbreviation": "WBS",
1642
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1643
+ "divisionName": "East Division"
1644
+ },
1645
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
1646
+ "time": "7:53",
1647
+ "scorerGoalNumber": "1",
1648
+ "scoredBy": {
1649
+ "id": 11,
1650
+ "firstName": "Jonathan",
1651
+ "lastName": "Filewich",
1652
+ "jerseyNumber": 18,
1653
+ "position": "RW",
1654
+ "birthDate": "1984-10-02"
1655
+ },
1656
+ "assists": [
1657
+ {
1658
+ "id": 21,
1659
+ "firstName": "Andy",
1660
+ "lastName": "Schneider",
1661
+ "jerseyNumber": 2,
1662
+ "position": "D",
1663
+ "birthDate": "1981-07-31"
1664
+ },
1665
+ {
1666
+ "id": 22,
1667
+ "firstName": "Noah",
1668
+ "lastName": "Welch",
1669
+ "jerseyNumber": 5,
1670
+ "position": "D",
1671
+ "birthDate": "1982-08-26"
1672
+ }
1673
+ ],
1674
+ "assistNumbers": [null, null],
1675
+ "properties": {
1676
+ "isPowerPlay": "0",
1677
+ "isShortHanded": "0",
1678
+ "isEmptyNet": "0",
1679
+ "isPenaltyShot": "0",
1680
+ "isInsuranceGoal": "0",
1681
+ "isGameWinningGoal": "1"
1682
+ },
1683
+ "plus_players": [
1684
+ {
1685
+ "id": 21,
1686
+ "firstName": "Andy",
1687
+ "lastName": "Schneider",
1688
+ "jerseyNumber": 2,
1689
+ "position": "D",
1690
+ "birthDate": "1981-07-31"
1691
+ },
1692
+ {
1693
+ "id": 22,
1694
+ "firstName": "Noah",
1695
+ "lastName": "Welch",
1696
+ "jerseyNumber": 5,
1697
+ "position": "D",
1698
+ "birthDate": "1982-08-26"
1699
+ },
1700
+ {
1701
+ "id": 9,
1702
+ "firstName": "Stephen",
1703
+ "lastName": "Dixon",
1704
+ "jerseyNumber": 10,
1705
+ "position": "C",
1706
+ "birthDate": "1985-09-07"
1707
+ },
1708
+ {
1709
+ "id": 11,
1710
+ "firstName": "Jonathan",
1711
+ "lastName": "Filewich",
1712
+ "jerseyNumber": 18,
1713
+ "position": "RW",
1714
+ "birthDate": "1984-10-02"
1715
+ },
1716
+ {
1717
+ "id": 15,
1718
+ "firstName": "Ryan",
1719
+ "lastName": "Stone",
1720
+ "jerseyNumber": 23,
1721
+ "position": "C",
1722
+ "birthDate": "1985-03-20"
1723
+ }
1724
+ ],
1725
+ "minus_players": [
1726
+ {
1727
+ "id": 130,
1728
+ "firstName": "Mark",
1729
+ "lastName": "Wotton",
1730
+ "jerseyNumber": 4,
1731
+ "position": "D",
1732
+ "birthDate": "1973-10-16"
1733
+ },
1734
+ {
1735
+ "id": 142,
1736
+ "firstName": "Jean-Francois",
1737
+ "lastName": "Fortin",
1738
+ "jerseyNumber": 7,
1739
+ "position": "D",
1740
+ "birthDate": "1979-03-15"
1741
+ },
1742
+ {
1743
+ "id": 168,
1744
+ "firstName": "Dave",
1745
+ "lastName": "Steckel",
1746
+ "jerseyNumber": 20,
1747
+ "position": "C",
1748
+ "birthDate": "1982-05-15"
1749
+ },
1750
+ {
1751
+ "id": 172,
1752
+ "firstName": "Owen",
1753
+ "lastName": "Fussey",
1754
+ "jerseyNumber": 22,
1755
+ "position": "LW",
1756
+ "birthDate": "1983-04-02"
1757
+ },
1758
+ {
1759
+ "id": 190,
1760
+ "firstName": "Dean",
1761
+ "lastName": "Arsene",
1762
+ "jerseyNumber": 29,
1763
+ "position": "D",
1764
+ "birthDate": "1980-07-12"
1765
+ }
1766
+ ]
1767
+ },
1768
+ {
1769
+ "game_goal_id": "93",
1770
+ "team": {
1771
+ "id": 319,
1772
+ "name": "Hershey Bears",
1773
+ "city": "Hershey",
1774
+ "nickname": "Hershey",
1775
+ "abbreviation": "HER",
1776
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
1777
+ "divisionName": "East Division"
1778
+ },
1779
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
1780
+ "time": "16:27",
1781
+ "scorerGoalNumber": "1",
1782
+ "scoredBy": {
1783
+ "id": 170,
1784
+ "firstName": "Graham",
1785
+ "lastName": "Mink",
1786
+ "jerseyNumber": 21,
1787
+ "position": "RW",
1788
+ "birthDate": "1979-05-21"
1789
+ },
1790
+ "assists": [
1791
+ {
1792
+ "id": 184,
1793
+ "firstName": "Brooks",
1794
+ "lastName": "Laich",
1795
+ "jerseyNumber": 26,
1796
+ "position": "C",
1797
+ "birthDate": "1983-06-23"
1798
+ },
1799
+ {
1800
+ "id": 148,
1801
+ "firstName": "Eric",
1802
+ "lastName": "Fehr",
1803
+ "jerseyNumber": 11,
1804
+ "position": "RW",
1805
+ "birthDate": "1985-09-07"
1806
+ }
1807
+ ],
1808
+ "assistNumbers": [null, null],
1809
+ "properties": {
1810
+ "isPowerPlay": "1",
1811
+ "isShortHanded": "0",
1812
+ "isEmptyNet": "0",
1813
+ "isPenaltyShot": "0",
1814
+ "isInsuranceGoal": "0",
1815
+ "isGameWinningGoal": "0"
1816
+ },
1817
+ "plus_players": [
1818
+ {
1819
+ "id": 148,
1820
+ "firstName": "Eric",
1821
+ "lastName": "Fehr",
1822
+ "jerseyNumber": 11,
1823
+ "position": "RW",
1824
+ "birthDate": "1985-09-07"
1825
+ },
1826
+ {
1827
+ "id": 156,
1828
+ "firstName": "Chris",
1829
+ "lastName": "Bourque",
1830
+ "jerseyNumber": 17,
1831
+ "position": "LW",
1832
+ "birthDate": "1986-01-29"
1833
+ },
1834
+ {
1835
+ "id": 170,
1836
+ "firstName": "Graham",
1837
+ "lastName": "Mink",
1838
+ "jerseyNumber": 21,
1839
+ "position": "RW",
1840
+ "birthDate": "1979-05-21"
1841
+ },
1842
+ {
1843
+ "id": 184,
1844
+ "firstName": "Brooks",
1845
+ "lastName": "Laich",
1846
+ "jerseyNumber": 26,
1847
+ "position": "C",
1848
+ "birthDate": "1983-06-23"
1849
+ },
1850
+ {
1851
+ "id": 187,
1852
+ "firstName": "Lawrence",
1853
+ "lastName": "Nycholat",
1854
+ "jerseyNumber": 28,
1855
+ "position": "D",
1856
+ "birthDate": "1979-05-07"
1857
+ }
1858
+ ],
1859
+ "minus_players": [
1860
+ {
1861
+ "id": 4,
1862
+ "firstName": "Colby",
1863
+ "lastName": "Armstrong",
1864
+ "jerseyNumber": 9,
1865
+ "position": "RW",
1866
+ "birthDate": "1982-11-23"
1867
+ },
1868
+ {
1869
+ "id": 13,
1870
+ "firstName": "Guillaume",
1871
+ "lastName": "Lefebvre",
1872
+ "jerseyNumber": 17,
1873
+ "position": "LW",
1874
+ "birthDate": "1981-05-07"
1875
+ },
1876
+ {
1877
+ "id": 23,
1878
+ "firstName": "Ryan",
1879
+ "lastName": "Whitney",
1880
+ "jerseyNumber": 19,
1881
+ "position": "D",
1882
+ "birthDate": "1983-02-19"
1883
+ },
1884
+ {
1885
+ "id": 20,
1886
+ "firstName": "Alain",
1887
+ "lastName": "Nasreddine",
1888
+ "jerseyNumber": 32,
1889
+ "position": "D",
1890
+ "birthDate": "1975-07-10"
1891
+ }
1892
+ ]
1893
+ }
1894
+ ],
1895
+ "penalties": [
1896
+ {
1897
+ "game_penalty_id": null,
1898
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
1899
+ "time": "1:32",
1900
+ "againstTeam": {
1901
+ "id": 319,
1902
+ "name": "Hershey Bears",
1903
+ "city": "Hershey",
1904
+ "nickname": "Hershey",
1905
+ "abbreviation": "HER",
1906
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
1907
+ "divisionName": "East Division"
1908
+ },
1909
+ "minutes": 2,
1910
+ "description": "Tripping",
1911
+ "ruleNumber": "",
1912
+ "takenBy": {
1913
+ "id": 136,
1914
+ "firstName": "Mike",
1915
+ "lastName": "Green",
1916
+ "jerseyNumber": 5,
1917
+ "position": "D",
1918
+ "birthDate": "1985-10-12"
1919
+ },
1920
+ "servedBy": {
1921
+ "id": 136,
1922
+ "firstName": "Mike",
1923
+ "lastName": "Green",
1924
+ "jerseyNumber": 5,
1925
+ "position": "D",
1926
+ "birthDate": "1985-10-12"
1927
+ },
1928
+ "isPowerPlay": true,
1929
+ "isBench": false
1930
+ },
1931
+ {
1932
+ "game_penalty_id": null,
1933
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
1934
+ "time": "5:51",
1935
+ "againstTeam": {
1936
+ "id": 319,
1937
+ "name": "Hershey Bears",
1938
+ "city": "Hershey",
1939
+ "nickname": "Hershey",
1940
+ "abbreviation": "HER",
1941
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
1942
+ "divisionName": "East Division"
1943
+ },
1944
+ "minutes": 2,
1945
+ "description": "Slashing",
1946
+ "ruleNumber": "",
1947
+ "takenBy": {
1948
+ "id": 142,
1949
+ "firstName": "Jean-Francois",
1950
+ "lastName": "Fortin",
1951
+ "jerseyNumber": 7,
1952
+ "position": "D",
1953
+ "birthDate": "1979-03-15"
1954
+ },
1955
+ "servedBy": {
1956
+ "id": 142,
1957
+ "firstName": "Jean-Francois",
1958
+ "lastName": "Fortin",
1959
+ "jerseyNumber": 7,
1960
+ "position": "D",
1961
+ "birthDate": "1979-03-15"
1962
+ },
1963
+ "isPowerPlay": true,
1964
+ "isBench": false
1965
+ },
1966
+ {
1967
+ "game_penalty_id": null,
1968
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
1969
+ "time": "10:22",
1970
+ "againstTeam": {
1971
+ "id": 316,
1972
+ "name": "Wilkes-Barre/Scranton Penguins",
1973
+ "city": "W-B/Scranton",
1974
+ "nickname": "Penguins",
1975
+ "abbreviation": "WBS",
1976
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
1977
+ "divisionName": "East Division"
1978
+ },
1979
+ "minutes": 2,
1980
+ "description": "Hooking",
1981
+ "ruleNumber": "",
1982
+ "takenBy": {
1983
+ "id": 15,
1984
+ "firstName": "Ryan",
1985
+ "lastName": "Stone",
1986
+ "jerseyNumber": 23,
1987
+ "position": "C",
1988
+ "birthDate": "1985-03-20"
1989
+ },
1990
+ "servedBy": {
1991
+ "id": 15,
1992
+ "firstName": "Ryan",
1993
+ "lastName": "Stone",
1994
+ "jerseyNumber": 23,
1995
+ "position": "C",
1996
+ "birthDate": "1985-03-20"
1997
+ },
1998
+ "isPowerPlay": true,
1999
+ "isBench": false
2000
+ },
2001
+ {
2002
+ "game_penalty_id": null,
2003
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
2004
+ "time": "12:05",
2005
+ "againstTeam": {
2006
+ "id": 319,
2007
+ "name": "Hershey Bears",
2008
+ "city": "Hershey",
2009
+ "nickname": "Hershey",
2010
+ "abbreviation": "HER",
2011
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
2012
+ "divisionName": "East Division"
2013
+ },
2014
+ "minutes": 2,
2015
+ "description": "Hooking",
2016
+ "ruleNumber": "",
2017
+ "takenBy": {
2018
+ "id": 142,
2019
+ "firstName": "Jean-Francois",
2020
+ "lastName": "Fortin",
2021
+ "jerseyNumber": 7,
2022
+ "position": "D",
2023
+ "birthDate": "1979-03-15"
2024
+ },
2025
+ "servedBy": {
2026
+ "id": 142,
2027
+ "firstName": "Jean-Francois",
2028
+ "lastName": "Fortin",
2029
+ "jerseyNumber": 7,
2030
+ "position": "D",
2031
+ "birthDate": "1979-03-15"
2032
+ },
2033
+ "isPowerPlay": true,
2034
+ "isBench": false
2035
+ },
2036
+ {
2037
+ "game_penalty_id": null,
2038
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
2039
+ "time": "15:53",
2040
+ "againstTeam": {
2041
+ "id": 316,
2042
+ "name": "Wilkes-Barre/Scranton Penguins",
2043
+ "city": "W-B/Scranton",
2044
+ "nickname": "Penguins",
2045
+ "abbreviation": "WBS",
2046
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
2047
+ "divisionName": "East Division"
2048
+ },
2049
+ "minutes": 2,
2050
+ "description": "Kneeing",
2051
+ "ruleNumber": "",
2052
+ "takenBy": {
2053
+ "id": 6,
2054
+ "firstName": "Daniel",
2055
+ "lastName": "Carcillo",
2056
+ "jerseyNumber": 13,
2057
+ "position": "LW",
2058
+ "birthDate": "1985-01-28"
2059
+ },
2060
+ "servedBy": {
2061
+ "id": 6,
2062
+ "firstName": "Daniel",
2063
+ "lastName": "Carcillo",
2064
+ "jerseyNumber": 13,
2065
+ "position": "LW",
2066
+ "birthDate": "1985-01-28"
2067
+ },
2068
+ "isPowerPlay": true,
2069
+ "isBench": false
2070
+ },
2071
+ {
2072
+ "game_penalty_id": null,
2073
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
2074
+ "time": "15:53",
2075
+ "againstTeam": {
2076
+ "id": 316,
2077
+ "name": "Wilkes-Barre/Scranton Penguins",
2078
+ "city": "W-B/Scranton",
2079
+ "nickname": "Penguins",
2080
+ "abbreviation": "WBS",
2081
+ "logo": "https://assets.leaguestat.com/ahl/logos/316.jpg",
2082
+ "divisionName": "East Division"
2083
+ },
2084
+ "minutes": 2,
2085
+ "description": "Unsportsmanlike conduct",
2086
+ "ruleNumber": "",
2087
+ "takenBy": {
2088
+ "id": 6,
2089
+ "firstName": "Daniel",
2090
+ "lastName": "Carcillo",
2091
+ "jerseyNumber": 13,
2092
+ "position": "LW",
2093
+ "birthDate": "1985-01-28"
2094
+ },
2095
+ "servedBy": {
2096
+ "id": 6,
2097
+ "firstName": "Daniel",
2098
+ "lastName": "Carcillo",
2099
+ "jerseyNumber": 13,
2100
+ "position": "LW",
2101
+ "birthDate": "1985-01-28"
2102
+ },
2103
+ "isPowerPlay": false,
2104
+ "isBench": false
2105
+ },
2106
+ {
2107
+ "game_penalty_id": null,
2108
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
2109
+ "time": "17:11",
2110
+ "againstTeam": {
2111
+ "id": 319,
2112
+ "name": "Hershey Bears",
2113
+ "city": "Hershey",
2114
+ "nickname": "Hershey",
2115
+ "abbreviation": "HER",
2116
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
2117
+ "divisionName": "East Division"
2118
+ },
2119
+ "minutes": 2,
2120
+ "description": "Hooking",
2121
+ "ruleNumber": "",
2122
+ "takenBy": {
2123
+ "id": 150,
2124
+ "firstName": "Boyd",
2125
+ "lastName": "Kane",
2126
+ "jerseyNumber": 12,
2127
+ "position": "RW",
2128
+ "birthDate": "1978-04-18"
2129
+ },
2130
+ "servedBy": {
2131
+ "id": 150,
2132
+ "firstName": "Boyd",
2133
+ "lastName": "Kane",
2134
+ "jerseyNumber": 12,
2135
+ "position": "RW",
2136
+ "birthDate": "1978-04-18"
2137
+ },
2138
+ "isPowerPlay": true,
2139
+ "isBench": false
2140
+ }
2141
+ ]
2142
+ }
2143
+ ],
2144
+ "penaltyShots": { "homeTeam": [], "visitingTeam": [] },
2145
+ "featuredPlayer": {
2146
+ "team": {
2147
+ "id": 319,
2148
+ "name": "Hershey Bears",
2149
+ "city": "Hershey",
2150
+ "nickname": "Hershey",
2151
+ "abbreviation": "HER",
2152
+ "logo": "https://assets.leaguestat.com/ahl/logos/319_1.jpg",
2153
+ "divisionName": "East Division"
2154
+ },
2155
+ "player": {
2156
+ "info": {
2157
+ "id": 0,
2158
+ "firstName": null,
2159
+ "lastName": null,
2160
+ "jerseyNumber": 0,
2161
+ "position": null,
2162
+ "birthDate": null
2163
+ },
2164
+ "stats": {
2165
+ "goals": 0,
2166
+ "assists": 0,
2167
+ "points": 0,
2168
+ "penaltyMinutes": 0,
2169
+ "plusMinus": 0,
2170
+ "faceoffAttempts": 0,
2171
+ "faceoffWins": 0,
2172
+ "shots": 0,
2173
+ "hits": 0
2174
+ },
2175
+ "starting": 0,
2176
+ "status": null
2177
+ },
2178
+ "isGoalie": false,
2179
+ "playerImage": " ",
2180
+ "sponsor": { "name": null, "image": null }
2181
+ }
2182
+ }