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,2573 @@
1
+ {
2
+ "details": {
3
+ "id": 1018774,
4
+ "date": "Friday, December 21, 2018",
5
+ "gameNumber": "437",
6
+ "venue": "Allstate Arena",
7
+ "attendance": 6610,
8
+ "startTime": "7:12 pm",
9
+ "endTime": "9:42 pm",
10
+ "duration": "2:30",
11
+ "gameReportUrl": "https://lscluster.hockeytech.com/game_reports/official-game-report.php?lang_id=1&client_code=ahl&game_id=1018774",
12
+ "textBoxscoreUrl": "https://lscluster.hockeytech.com/game_reports/text-game-report.php?lang_id=1&client_code=ahl&game_id=1018774",
13
+ "ticketsUrl": "https://theahl.com/game-tickets",
14
+ "started": "1",
15
+ "final": "1",
16
+ "publicNotes": "",
17
+ "status": "Final",
18
+ "seasonId": "61",
19
+ "htvGameId": "401223",
20
+ "GameDateISO8601": "2018-12-21T19:00:00-06:00"
21
+ },
22
+ "referees": [
23
+ {
24
+ "firstName": "Kenny",
25
+ "lastName": "Anderson",
26
+ "jerseyNumber": 66,
27
+ "role": "Referee"
28
+ },
29
+ {
30
+ "firstName": "Andrew",
31
+ "lastName": "Howard",
32
+ "jerseyNumber": 50,
33
+ "role": "Referee"
34
+ }
35
+ ],
36
+ "linesmen": [
37
+ {
38
+ "firstName": "James",
39
+ "lastName": "Tobias",
40
+ "jerseyNumber": 61,
41
+ "role": "Linesman"
42
+ },
43
+ {
44
+ "firstName": "William",
45
+ "lastName": "Hancock",
46
+ "jerseyNumber": 17,
47
+ "role": "Linesman"
48
+ }
49
+ ],
50
+ "mostValuablePlayers": [
51
+ {
52
+ "team": {
53
+ "id": 372,
54
+ "name": "Rockford IceHogs",
55
+ "city": "Rockford",
56
+ "nickname": "IceHogs",
57
+ "abbreviation": "RFD",
58
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
59
+ "divisionName": "Central Division"
60
+ },
61
+ "player": {
62
+ "info": {
63
+ "id": 6863,
64
+ "firstName": "Alexandre",
65
+ "lastName": "Fortin",
66
+ "jerseyNumber": 26,
67
+ "position": "LW",
68
+ "birthDate": "1997-02-25"
69
+ },
70
+ "stats": {
71
+ "goals": 2,
72
+ "assists": 0,
73
+ "points": 2,
74
+ "penaltyMinutes": 0,
75
+ "plusMinus": 1,
76
+ "faceoffAttempts": 0,
77
+ "faceoffWins": 0,
78
+ "shots": 3,
79
+ "hits": 0
80
+ },
81
+ "starting": 1,
82
+ "status": ""
83
+ },
84
+ "isGoalie": false,
85
+ "playerImage": "https://assets.leaguestat.com/ahl/240x240/6863.jpg"
86
+ },
87
+ {
88
+ "team": {
89
+ "id": 330,
90
+ "name": "Chicago Wolves",
91
+ "city": "Chicago",
92
+ "nickname": "Wolves",
93
+ "abbreviation": "CHI",
94
+ "logo": "https://assets.leaguestat.com/ahl/logos/330.jpg",
95
+ "divisionName": "Central Division"
96
+ },
97
+ "player": {
98
+ "info": {
99
+ "id": 5671,
100
+ "firstName": "Daniel",
101
+ "lastName": "Carr",
102
+ "jerseyNumber": 7,
103
+ "position": "LW",
104
+ "birthDate": "1991-11-01"
105
+ },
106
+ "stats": {
107
+ "goals": 1,
108
+ "assists": 1,
109
+ "points": 2,
110
+ "penaltyMinutes": 0,
111
+ "plusMinus": 0,
112
+ "faceoffAttempts": 0,
113
+ "faceoffWins": 0,
114
+ "shots": 5,
115
+ "hits": 0
116
+ },
117
+ "starting": 1,
118
+ "status": ""
119
+ },
120
+ "isGoalie": false,
121
+ "playerImage": "https://assets.leaguestat.com/ahl/240x240/5671.jpg"
122
+ },
123
+ {
124
+ "team": {
125
+ "id": 372,
126
+ "name": "Rockford IceHogs",
127
+ "city": "Rockford",
128
+ "nickname": "IceHogs",
129
+ "abbreviation": "RFD",
130
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
131
+ "divisionName": "Central Division"
132
+ },
133
+ "player": {
134
+ "info": {
135
+ "id": 6862,
136
+ "firstName": "Darren",
137
+ "lastName": "Raddysh",
138
+ "jerseyNumber": 24,
139
+ "position": "D",
140
+ "birthDate": "1996-02-28"
141
+ },
142
+ "stats": {
143
+ "goals": 1,
144
+ "assists": 0,
145
+ "points": 1,
146
+ "penaltyMinutes": 0,
147
+ "plusMinus": -1,
148
+ "faceoffAttempts": 0,
149
+ "faceoffWins": 0,
150
+ "shots": 1,
151
+ "hits": 0
152
+ },
153
+ "starting": 0,
154
+ "status": ""
155
+ },
156
+ "isGoalie": false,
157
+ "playerImage": "https://assets.leaguestat.com/ahl/240x240/6862.jpg"
158
+ }
159
+ ],
160
+ "hasShootout": false,
161
+ "homeTeam": {
162
+ "info": {
163
+ "id": 330,
164
+ "name": "Chicago Wolves",
165
+ "city": "Chicago",
166
+ "nickname": "Wolves",
167
+ "abbreviation": "CHI",
168
+ "logo": "https://assets.leaguestat.com/ahl/logos/330.jpg",
169
+ "divisionName": "Central Division"
170
+ },
171
+ "stats": {
172
+ "shots": 36,
173
+ "goals": 4,
174
+ "hits": 0,
175
+ "powerPlayGoals": 0,
176
+ "powerPlayOpportunities": 2,
177
+ "goalCount": 4,
178
+ "assistCount": 8,
179
+ "penaltyMinuteCount": 4,
180
+ "infractionCount": 2
181
+ },
182
+ "media": {
183
+ "audioUrl": "https://www.facebook.com/ChicagoWolves",
184
+ "videoUrl": "",
185
+ "webcastUrl": "https://theahl.com/AHLTV"
186
+ },
187
+ "coaches": [
188
+ { "firstName": "Rocky", "lastName": "Thompson", "role": "Head Coach" },
189
+ { "firstName": "Chris", "lastName": "Dennis", "role": "Assistant Coach" },
190
+ { "firstName": "Bob", "lastName": "Nardella", "role": "Assistant Coach" }
191
+ ],
192
+ "skaters": [
193
+ {
194
+ "info": {
195
+ "id": 7088,
196
+ "firstName": "Nic",
197
+ "lastName": "Hague",
198
+ "jerseyNumber": 2,
199
+ "position": "D",
200
+ "birthDate": "1998-12-05"
201
+ },
202
+ "stats": {
203
+ "goals": 1,
204
+ "assists": 0,
205
+ "points": 1,
206
+ "penaltyMinutes": 0,
207
+ "plusMinus": 1,
208
+ "faceoffAttempts": 0,
209
+ "faceoffWins": 0,
210
+ "shots": 7,
211
+ "hits": 0
212
+ },
213
+ "starting": 1,
214
+ "status": ""
215
+ },
216
+ {
217
+ "info": {
218
+ "id": 5715,
219
+ "firstName": "Griffin",
220
+ "lastName": "Reinhart",
221
+ "jerseyNumber": 6,
222
+ "position": "D",
223
+ "birthDate": "1994-01-24"
224
+ },
225
+ "stats": {
226
+ "goals": 0,
227
+ "assists": 0,
228
+ "points": 0,
229
+ "penaltyMinutes": 0,
230
+ "plusMinus": -1,
231
+ "faceoffAttempts": 0,
232
+ "faceoffWins": 0,
233
+ "shots": 1,
234
+ "hits": 0
235
+ },
236
+ "starting": 0,
237
+ "status": ""
238
+ },
239
+ {
240
+ "info": {
241
+ "id": 5671,
242
+ "firstName": "Daniel",
243
+ "lastName": "Carr",
244
+ "jerseyNumber": 7,
245
+ "position": "LW",
246
+ "birthDate": "1991-11-01"
247
+ },
248
+ "stats": {
249
+ "goals": 1,
250
+ "assists": 1,
251
+ "points": 2,
252
+ "penaltyMinutes": 0,
253
+ "plusMinus": 0,
254
+ "faceoffAttempts": 0,
255
+ "faceoffWins": 0,
256
+ "shots": 5,
257
+ "hits": 0
258
+ },
259
+ "starting": 1,
260
+ "status": ""
261
+ },
262
+ {
263
+ "info": {
264
+ "id": 6316,
265
+ "firstName": "Tyler",
266
+ "lastName": "Wong",
267
+ "jerseyNumber": 8,
268
+ "position": "RW",
269
+ "birthDate": "1996-02-28"
270
+ },
271
+ "stats": {
272
+ "goals": 0,
273
+ "assists": 0,
274
+ "points": 0,
275
+ "penaltyMinutes": 0,
276
+ "plusMinus": -2,
277
+ "faceoffAttempts": 0,
278
+ "faceoffWins": 0,
279
+ "shots": 3,
280
+ "hits": 0
281
+ },
282
+ "starting": 0,
283
+ "status": ""
284
+ },
285
+ {
286
+ "info": {
287
+ "id": 6883,
288
+ "firstName": "Gage",
289
+ "lastName": "Quinney",
290
+ "jerseyNumber": 9,
291
+ "position": "C",
292
+ "birthDate": "1995-07-29"
293
+ },
294
+ "stats": {
295
+ "goals": 1,
296
+ "assists": 0,
297
+ "points": 1,
298
+ "penaltyMinutes": 0,
299
+ "plusMinus": 0,
300
+ "faceoffAttempts": 0,
301
+ "faceoffWins": 0,
302
+ "shots": 4,
303
+ "hits": 0
304
+ },
305
+ "starting": 1,
306
+ "status": ""
307
+ },
308
+ {
309
+ "info": {
310
+ "id": 4883,
311
+ "firstName": "Curtis",
312
+ "lastName": "McKenzie",
313
+ "jerseyNumber": 10,
314
+ "position": "LW",
315
+ "birthDate": "1991-02-22"
316
+ },
317
+ "stats": {
318
+ "goals": 1,
319
+ "assists": 0,
320
+ "points": 1,
321
+ "penaltyMinutes": 2,
322
+ "plusMinus": 3,
323
+ "faceoffAttempts": 0,
324
+ "faceoffWins": 0,
325
+ "shots": 6,
326
+ "hits": 0
327
+ },
328
+ "starting": 0,
329
+ "status": "A"
330
+ },
331
+ {
332
+ "info": {
333
+ "id": 7261,
334
+ "firstName": "Matt",
335
+ "lastName": "Weis",
336
+ "jerseyNumber": 14,
337
+ "position": "C",
338
+ "birthDate": "1995-05-23"
339
+ },
340
+ "stats": {
341
+ "goals": 0,
342
+ "assists": 0,
343
+ "points": 0,
344
+ "penaltyMinutes": 0,
345
+ "plusMinus": -1,
346
+ "faceoffAttempts": 0,
347
+ "faceoffWins": 0,
348
+ "shots": 0,
349
+ "hits": 0
350
+ },
351
+ "starting": 0,
352
+ "status": ""
353
+ },
354
+ {
355
+ "info": {
356
+ "id": 7267,
357
+ "firstName": "Dylan",
358
+ "lastName": "Coghlan",
359
+ "jerseyNumber": 15,
360
+ "position": "D",
361
+ "birthDate": "1998-02-19"
362
+ },
363
+ "stats": {
364
+ "goals": 0,
365
+ "assists": 1,
366
+ "points": 1,
367
+ "penaltyMinutes": 0,
368
+ "plusMinus": 1,
369
+ "faceoffAttempts": 0,
370
+ "faceoffWins": 0,
371
+ "shots": 1,
372
+ "hits": 0
373
+ },
374
+ "starting": 0,
375
+ "status": ""
376
+ },
377
+ {
378
+ "info": {
379
+ "id": 7260,
380
+ "firstName": "Brooks",
381
+ "lastName": "Macek",
382
+ "jerseyNumber": 17,
383
+ "position": "RW",
384
+ "birthDate": "1992-05-15"
385
+ },
386
+ "stats": {
387
+ "goals": 0,
388
+ "assists": 2,
389
+ "points": 2,
390
+ "penaltyMinutes": 0,
391
+ "plusMinus": 0,
392
+ "faceoffAttempts": 0,
393
+ "faceoffWins": 0,
394
+ "shots": 1,
395
+ "hits": 0
396
+ },
397
+ "starting": 1,
398
+ "status": ""
399
+ },
400
+ {
401
+ "info": {
402
+ "id": 5540,
403
+ "firstName": "T.J.",
404
+ "lastName": "Tynan",
405
+ "jerseyNumber": 18,
406
+ "position": "C",
407
+ "birthDate": "1992-02-25"
408
+ },
409
+ "stats": {
410
+ "goals": 0,
411
+ "assists": 1,
412
+ "points": 1,
413
+ "penaltyMinutes": 0,
414
+ "plusMinus": 2,
415
+ "faceoffAttempts": 0,
416
+ "faceoffWins": 0,
417
+ "shots": 1,
418
+ "hits": 0
419
+ },
420
+ "starting": 0,
421
+ "status": "A"
422
+ },
423
+ {
424
+ "info": {
425
+ "id": 6881,
426
+ "firstName": "Keegan",
427
+ "lastName": "Kolesar",
428
+ "jerseyNumber": 20,
429
+ "position": "RW",
430
+ "birthDate": "1997-04-08"
431
+ },
432
+ "stats": {
433
+ "goals": 0,
434
+ "assists": 0,
435
+ "points": 0,
436
+ "penaltyMinutes": 0,
437
+ "plusMinus": -1,
438
+ "faceoffAttempts": 0,
439
+ "faceoffWins": 0,
440
+ "shots": 1,
441
+ "hits": 0
442
+ },
443
+ "starting": 0,
444
+ "status": ""
445
+ },
446
+ {
447
+ "info": {
448
+ "id": 5071,
449
+ "firstName": "Stefan",
450
+ "lastName": "Matteau",
451
+ "jerseyNumber": 23,
452
+ "position": "C",
453
+ "birthDate": "1994-02-23"
454
+ },
455
+ "stats": {
456
+ "goals": 0,
457
+ "assists": 0,
458
+ "points": 0,
459
+ "penaltyMinutes": 0,
460
+ "plusMinus": -1,
461
+ "faceoffAttempts": 0,
462
+ "faceoffWins": 0,
463
+ "shots": 0,
464
+ "hits": 0
465
+ },
466
+ "starting": 0,
467
+ "status": ""
468
+ },
469
+ {
470
+ "info": {
471
+ "id": 6682,
472
+ "firstName": "Jake",
473
+ "lastName": "Bischoff",
474
+ "jerseyNumber": 28,
475
+ "position": "D",
476
+ "birthDate": "1994-07-25"
477
+ },
478
+ "stats": {
479
+ "goals": 0,
480
+ "assists": 0,
481
+ "points": 0,
482
+ "penaltyMinutes": 2,
483
+ "plusMinus": -1,
484
+ "faceoffAttempts": 0,
485
+ "faceoffWins": 0,
486
+ "shots": 1,
487
+ "hits": 0
488
+ },
489
+ "starting": 0,
490
+ "status": ""
491
+ },
492
+ {
493
+ "info": {
494
+ "id": 7268,
495
+ "firstName": "Zach",
496
+ "lastName": "Whitecloud",
497
+ "jerseyNumber": 32,
498
+ "position": "D",
499
+ "birthDate": "1996-11-28"
500
+ },
501
+ "stats": {
502
+ "goals": 0,
503
+ "assists": 2,
504
+ "points": 2,
505
+ "penaltyMinutes": 0,
506
+ "plusMinus": 1,
507
+ "faceoffAttempts": 0,
508
+ "faceoffWins": 0,
509
+ "shots": 2,
510
+ "hits": 0
511
+ },
512
+ "starting": 1,
513
+ "status": ""
514
+ },
515
+ {
516
+ "info": {
517
+ "id": 6141,
518
+ "firstName": "Marc-Olivier",
519
+ "lastName": "Roy",
520
+ "jerseyNumber": 36,
521
+ "position": "C",
522
+ "birthDate": "1994-11-05"
523
+ },
524
+ "stats": {
525
+ "goals": 0,
526
+ "assists": 0,
527
+ "points": 0,
528
+ "penaltyMinutes": 0,
529
+ "plusMinus": 0,
530
+ "faceoffAttempts": 0,
531
+ "faceoffWins": 0,
532
+ "shots": 1,
533
+ "hits": 0
534
+ },
535
+ "starting": 0,
536
+ "status": ""
537
+ },
538
+ {
539
+ "info": {
540
+ "id": 6092,
541
+ "firstName": "Zac",
542
+ "lastName": "Leslie",
543
+ "jerseyNumber": 37,
544
+ "position": "D",
545
+ "birthDate": "1994-01-31"
546
+ },
547
+ "stats": {
548
+ "goals": 0,
549
+ "assists": 0,
550
+ "points": 0,
551
+ "penaltyMinutes": 0,
552
+ "plusMinus": 0,
553
+ "faceoffAttempts": 0,
554
+ "faceoffWins": 0,
555
+ "shots": 1,
556
+ "hits": 0
557
+ },
558
+ "starting": 0,
559
+ "status": ""
560
+ },
561
+ {
562
+ "info": {
563
+ "id": 5368,
564
+ "firstName": "Tomas",
565
+ "lastName": "Hyka",
566
+ "jerseyNumber": 38,
567
+ "position": "RW",
568
+ "birthDate": "1993-03-23"
569
+ },
570
+ "stats": {
571
+ "goals": 0,
572
+ "assists": 1,
573
+ "points": 1,
574
+ "penaltyMinutes": 0,
575
+ "plusMinus": 2,
576
+ "faceoffAttempts": 0,
577
+ "faceoffWins": 0,
578
+ "shots": 0,
579
+ "hits": 0
580
+ },
581
+ "starting": 0,
582
+ "status": ""
583
+ },
584
+ {
585
+ "info": {
586
+ "id": 6728,
587
+ "firstName": "Reid",
588
+ "lastName": "Duke",
589
+ "jerseyNumber": 39,
590
+ "position": "C",
591
+ "birthDate": "1996-01-28"
592
+ },
593
+ "stats": {
594
+ "goals": 0,
595
+ "assists": 0,
596
+ "points": 0,
597
+ "penaltyMinutes": 0,
598
+ "plusMinus": 0,
599
+ "faceoffAttempts": 0,
600
+ "faceoffWins": 0,
601
+ "shots": 1,
602
+ "hits": 0
603
+ },
604
+ "starting": 0,
605
+ "status": ""
606
+ }
607
+ ],
608
+ "goalies": [
609
+ {
610
+ "info": {
611
+ "id": 5717,
612
+ "firstName": "Max",
613
+ "lastName": "Lagace",
614
+ "jerseyNumber": 33,
615
+ "position": "G",
616
+ "birthDate": "1993-01-12"
617
+ },
618
+ "stats": {
619
+ "goals": 0,
620
+ "assists": 0,
621
+ "points": 0,
622
+ "penaltyMinutes": 0,
623
+ "plusMinus": 0,
624
+ "faceoffAttempts": 0,
625
+ "faceoffWins": 0,
626
+ "timeOnIce": "63:39",
627
+ "shotsAgainst": 25,
628
+ "goalsAgainst": 5,
629
+ "saves": 20
630
+ },
631
+ "starting": 1,
632
+ "status": ""
633
+ },
634
+ {
635
+ "info": {
636
+ "id": 5631,
637
+ "firstName": "Oscar",
638
+ "lastName": "Dansk",
639
+ "jerseyNumber": 35,
640
+ "position": "G",
641
+ "birthDate": "1994-02-28"
642
+ },
643
+ "stats": {
644
+ "goals": 0,
645
+ "assists": 0,
646
+ "points": 0,
647
+ "penaltyMinutes": 0,
648
+ "plusMinus": 0,
649
+ "faceoffAttempts": 0,
650
+ "faceoffWins": 0,
651
+ "timeOnIce": null,
652
+ "shotsAgainst": 0,
653
+ "goalsAgainst": 0,
654
+ "saves": 0
655
+ },
656
+ "starting": 0,
657
+ "status": ""
658
+ }
659
+ ],
660
+ "goalieLog": [],
661
+ "seasonStats": []
662
+ },
663
+ "visitingTeam": {
664
+ "info": {
665
+ "id": 372,
666
+ "name": "Rockford IceHogs",
667
+ "city": "Rockford",
668
+ "nickname": "IceHogs",
669
+ "abbreviation": "RFD",
670
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
671
+ "divisionName": "Central Division"
672
+ },
673
+ "stats": {
674
+ "shots": 25,
675
+ "goals": 5,
676
+ "hits": 0,
677
+ "powerPlayGoals": 1,
678
+ "powerPlayOpportunities": 2,
679
+ "goalCount": 5,
680
+ "assistCount": 10,
681
+ "penaltyMinuteCount": 4,
682
+ "infractionCount": 2
683
+ },
684
+ "media": {
685
+ "audioUrl": "https://www.sportsfanrockford.com/hear-the-hogs/",
686
+ "videoUrl": "http://www.theahl.com/AHLTV",
687
+ "webcastUrl": "https://theahl.com/AHLTV"
688
+ },
689
+ "coaches": [
690
+ { "firstName": "Derek", "lastName": "King", "role": "Head Coach" },
691
+ {
692
+ "firstName": "Sheldon",
693
+ "lastName": "Brookbank",
694
+ "role": "Assistant Coach"
695
+ }
696
+ ],
697
+ "skaters": [
698
+ {
699
+ "info": {
700
+ "id": 2507,
701
+ "firstName": "Andrew",
702
+ "lastName": "Campbell",
703
+ "jerseyNumber": 2,
704
+ "position": "D",
705
+ "birthDate": "1988-02-04"
706
+ },
707
+ "stats": {
708
+ "goals": 0,
709
+ "assists": 0,
710
+ "points": 0,
711
+ "penaltyMinutes": 0,
712
+ "plusMinus": 2,
713
+ "faceoffAttempts": 0,
714
+ "faceoffWins": 0,
715
+ "shots": 0,
716
+ "hits": 0
717
+ },
718
+ "starting": 0,
719
+ "status": "A"
720
+ },
721
+ {
722
+ "info": {
723
+ "id": 5692,
724
+ "firstName": "Henrik",
725
+ "lastName": "Samuelsson",
726
+ "jerseyNumber": 5,
727
+ "position": "LW",
728
+ "birthDate": "1994-02-07"
729
+ },
730
+ "stats": {
731
+ "goals": 0,
732
+ "assists": 0,
733
+ "points": 0,
734
+ "penaltyMinutes": 0,
735
+ "plusMinus": 0,
736
+ "faceoffAttempts": 0,
737
+ "faceoffWins": 0,
738
+ "shots": 1,
739
+ "hits": 0
740
+ },
741
+ "starting": 0,
742
+ "status": ""
743
+ },
744
+ {
745
+ "info": {
746
+ "id": 6003,
747
+ "firstName": "Nick",
748
+ "lastName": "Moutrey",
749
+ "jerseyNumber": 7,
750
+ "position": "RW",
751
+ "birthDate": "1995-06-24"
752
+ },
753
+ "stats": {
754
+ "goals": 0,
755
+ "assists": 0,
756
+ "points": 0,
757
+ "penaltyMinutes": 0,
758
+ "plusMinus": 0,
759
+ "faceoffAttempts": 0,
760
+ "faceoffWins": 0,
761
+ "shots": 2,
762
+ "hits": 0
763
+ },
764
+ "starting": 0,
765
+ "status": ""
766
+ },
767
+ {
768
+ "info": {
769
+ "id": 7145,
770
+ "firstName": "Dennis",
771
+ "lastName": "Gilbert",
772
+ "jerseyNumber": 8,
773
+ "position": "D",
774
+ "birthDate": "1996-10-30"
775
+ },
776
+ "stats": {
777
+ "goals": 0,
778
+ "assists": 0,
779
+ "points": 0,
780
+ "penaltyMinutes": 2,
781
+ "plusMinus": -1,
782
+ "faceoffAttempts": 0,
783
+ "faceoffWins": 0,
784
+ "shots": 0,
785
+ "hits": 0
786
+ },
787
+ "starting": 0,
788
+ "status": ""
789
+ },
790
+ {
791
+ "info": {
792
+ "id": 3555,
793
+ "firstName": "Jordan",
794
+ "lastName": "Schroeder",
795
+ "jerseyNumber": 10,
796
+ "position": "RW",
797
+ "birthDate": "1990-09-29"
798
+ },
799
+ "stats": {
800
+ "goals": 0,
801
+ "assists": 2,
802
+ "points": 2,
803
+ "penaltyMinutes": 0,
804
+ "plusMinus": -1,
805
+ "faceoffAttempts": 0,
806
+ "faceoffWins": 0,
807
+ "shots": 2,
808
+ "hits": 0
809
+ },
810
+ "starting": 0,
811
+ "status": "A"
812
+ },
813
+ {
814
+ "info": {
815
+ "id": 6689,
816
+ "firstName": "Will",
817
+ "lastName": "Pelletier",
818
+ "jerseyNumber": 16,
819
+ "position": "LW",
820
+ "birthDate": "1992-12-14"
821
+ },
822
+ "stats": {
823
+ "goals": 0,
824
+ "assists": 1,
825
+ "points": 1,
826
+ "penaltyMinutes": 0,
827
+ "plusMinus": -1,
828
+ "faceoffAttempts": 0,
829
+ "faceoffWins": 0,
830
+ "shots": 2,
831
+ "hits": 0
832
+ },
833
+ "starting": 1,
834
+ "status": ""
835
+ },
836
+ {
837
+ "info": {
838
+ "id": 4452,
839
+ "firstName": "Terry",
840
+ "lastName": "Broadhurst",
841
+ "jerseyNumber": 17,
842
+ "position": "LW",
843
+ "birthDate": "1988-11-30"
844
+ },
845
+ "stats": {
846
+ "goals": 0,
847
+ "assists": 0,
848
+ "points": 0,
849
+ "penaltyMinutes": 0,
850
+ "plusMinus": 0,
851
+ "faceoffAttempts": 0,
852
+ "faceoffWins": 0,
853
+ "shots": 0,
854
+ "hits": 0
855
+ },
856
+ "starting": 0,
857
+ "status": ""
858
+ },
859
+ {
860
+ "info": {
861
+ "id": 6914,
862
+ "firstName": "Nathan",
863
+ "lastName": "Noel",
864
+ "jerseyNumber": 20,
865
+ "position": "LW",
866
+ "birthDate": "1997-06-21"
867
+ },
868
+ "stats": {
869
+ "goals": 0,
870
+ "assists": 1,
871
+ "points": 1,
872
+ "penaltyMinutes": 2,
873
+ "plusMinus": 1,
874
+ "faceoffAttempts": 0,
875
+ "faceoffWins": 0,
876
+ "shots": 1,
877
+ "hits": 0
878
+ },
879
+ "starting": 0,
880
+ "status": ""
881
+ },
882
+ {
883
+ "info": {
884
+ "id": 7430,
885
+ "firstName": "Jacob",
886
+ "lastName": "Nilsson",
887
+ "jerseyNumber": 21,
888
+ "position": "C",
889
+ "birthDate": "1993-10-12"
890
+ },
891
+ "stats": {
892
+ "goals": 1,
893
+ "assists": 2,
894
+ "points": 3,
895
+ "penaltyMinutes": 0,
896
+ "plusMinus": 0,
897
+ "faceoffAttempts": 0,
898
+ "faceoffWins": 0,
899
+ "shots": 2,
900
+ "hits": 0
901
+ },
902
+ "starting": 0,
903
+ "status": ""
904
+ },
905
+ {
906
+ "info": {
907
+ "id": 7433,
908
+ "firstName": "Blake",
909
+ "lastName": "Hillman",
910
+ "jerseyNumber": 22,
911
+ "position": "D",
912
+ "birthDate": "1996-01-26"
913
+ },
914
+ "stats": {
915
+ "goals": 0,
916
+ "assists": 0,
917
+ "points": 0,
918
+ "penaltyMinutes": 0,
919
+ "plusMinus": 0,
920
+ "faceoffAttempts": 0,
921
+ "faceoffWins": 0,
922
+ "shots": 1,
923
+ "hits": 0
924
+ },
925
+ "starting": 0,
926
+ "status": ""
927
+ },
928
+ {
929
+ "info": {
930
+ "id": 7434,
931
+ "firstName": "Lucas",
932
+ "lastName": "Carlsson",
933
+ "jerseyNumber": 23,
934
+ "position": "D",
935
+ "birthDate": "1997-07-05"
936
+ },
937
+ "stats": {
938
+ "goals": 1,
939
+ "assists": 1,
940
+ "points": 2,
941
+ "penaltyMinutes": 0,
942
+ "plusMinus": 1,
943
+ "faceoffAttempts": 0,
944
+ "faceoffWins": 0,
945
+ "shots": 5,
946
+ "hits": 0
947
+ },
948
+ "starting": 1,
949
+ "status": ""
950
+ },
951
+ {
952
+ "info": {
953
+ "id": 6862,
954
+ "firstName": "Darren",
955
+ "lastName": "Raddysh",
956
+ "jerseyNumber": 24,
957
+ "position": "D",
958
+ "birthDate": "1996-02-28"
959
+ },
960
+ "stats": {
961
+ "goals": 1,
962
+ "assists": 0,
963
+ "points": 1,
964
+ "penaltyMinutes": 0,
965
+ "plusMinus": -1,
966
+ "faceoffAttempts": 0,
967
+ "faceoffWins": 0,
968
+ "shots": 1,
969
+ "hits": 0
970
+ },
971
+ "starting": 0,
972
+ "status": ""
973
+ },
974
+ {
975
+ "info": {
976
+ "id": 6863,
977
+ "firstName": "Alexandre",
978
+ "lastName": "Fortin",
979
+ "jerseyNumber": 26,
980
+ "position": "LW",
981
+ "birthDate": "1997-02-25"
982
+ },
983
+ "stats": {
984
+ "goals": 2,
985
+ "assists": 0,
986
+ "points": 2,
987
+ "penaltyMinutes": 0,
988
+ "plusMinus": 1,
989
+ "faceoffAttempts": 0,
990
+ "faceoffWins": 0,
991
+ "shots": 3,
992
+ "hits": 0
993
+ },
994
+ "starting": 1,
995
+ "status": ""
996
+ },
997
+ {
998
+ "info": {
999
+ "id": 5839,
1000
+ "firstName": "Tyler",
1001
+ "lastName": "Sikura",
1002
+ "jerseyNumber": 28,
1003
+ "position": "C",
1004
+ "birthDate": "1992-05-18"
1005
+ },
1006
+ "stats": {
1007
+ "goals": 0,
1008
+ "assists": 0,
1009
+ "points": 0,
1010
+ "penaltyMinutes": 0,
1011
+ "plusMinus": 0,
1012
+ "faceoffAttempts": 0,
1013
+ "faceoffWins": 0,
1014
+ "shots": 1,
1015
+ "hits": 0
1016
+ },
1017
+ "starting": 1,
1018
+ "status": "A"
1019
+ },
1020
+ {
1021
+ "info": {
1022
+ "id": 7055,
1023
+ "firstName": "Joni",
1024
+ "lastName": "Tuulola",
1025
+ "jerseyNumber": 36,
1026
+ "position": "D",
1027
+ "birthDate": "1996-01-01"
1028
+ },
1029
+ "stats": {
1030
+ "goals": 0,
1031
+ "assists": 0,
1032
+ "points": 0,
1033
+ "penaltyMinutes": 0,
1034
+ "plusMinus": -2,
1035
+ "faceoffAttempts": 0,
1036
+ "faceoffWins": 0,
1037
+ "shots": 0,
1038
+ "hits": 0
1039
+ },
1040
+ "starting": 0,
1041
+ "status": ""
1042
+ },
1043
+ {
1044
+ "info": {
1045
+ "id": 7477,
1046
+ "firstName": "Jan",
1047
+ "lastName": "Rutta",
1048
+ "jerseyNumber": 44,
1049
+ "position": "D",
1050
+ "birthDate": "1990-07-29"
1051
+ },
1052
+ "stats": {
1053
+ "goals": 0,
1054
+ "assists": 1,
1055
+ "points": 1,
1056
+ "penaltyMinutes": 0,
1057
+ "plusMinus": 0,
1058
+ "faceoffAttempts": 0,
1059
+ "faceoffWins": 0,
1060
+ "shots": 2,
1061
+ "hits": 0
1062
+ },
1063
+ "starting": 1,
1064
+ "status": ""
1065
+ },
1066
+ {
1067
+ "info": {
1068
+ "id": 6629,
1069
+ "firstName": "Anthony",
1070
+ "lastName": "Louis",
1071
+ "jerseyNumber": 45,
1072
+ "position": "LW",
1073
+ "birthDate": "1995-02-10"
1074
+ },
1075
+ "stats": {
1076
+ "goals": 0,
1077
+ "assists": 1,
1078
+ "points": 1,
1079
+ "penaltyMinutes": 0,
1080
+ "plusMinus": 0,
1081
+ "faceoffAttempts": 0,
1082
+ "faceoffWins": 0,
1083
+ "shots": 2,
1084
+ "hits": 0
1085
+ },
1086
+ "starting": 0,
1087
+ "status": ""
1088
+ },
1089
+ {
1090
+ "info": {
1091
+ "id": 6864,
1092
+ "firstName": "Graham",
1093
+ "lastName": "Knott",
1094
+ "jerseyNumber": 49,
1095
+ "position": "C",
1096
+ "birthDate": "1997-01-13"
1097
+ },
1098
+ "stats": {
1099
+ "goals": 0,
1100
+ "assists": 1,
1101
+ "points": 1,
1102
+ "penaltyMinutes": 0,
1103
+ "plusMinus": -1,
1104
+ "faceoffAttempts": 0,
1105
+ "faceoffWins": 0,
1106
+ "shots": 0,
1107
+ "hits": 0
1108
+ },
1109
+ "starting": 0,
1110
+ "status": ""
1111
+ }
1112
+ ],
1113
+ "goalies": [
1114
+ {
1115
+ "info": {
1116
+ "id": 7431,
1117
+ "firstName": "Kevin",
1118
+ "lastName": "Lankinen",
1119
+ "jerseyNumber": 30,
1120
+ "position": "G",
1121
+ "birthDate": "1995-04-28"
1122
+ },
1123
+ "stats": {
1124
+ "goals": 0,
1125
+ "assists": 0,
1126
+ "points": 0,
1127
+ "penaltyMinutes": 0,
1128
+ "plusMinus": 0,
1129
+ "faceoffAttempts": 0,
1130
+ "faceoffWins": 0,
1131
+ "timeOnIce": null,
1132
+ "shotsAgainst": 0,
1133
+ "goalsAgainst": 0,
1134
+ "saves": 0
1135
+ },
1136
+ "starting": 0,
1137
+ "status": ""
1138
+ },
1139
+ {
1140
+ "info": {
1141
+ "id": 5755,
1142
+ "firstName": "Anton",
1143
+ "lastName": "Forsberg",
1144
+ "jerseyNumber": 31,
1145
+ "position": "G",
1146
+ "birthDate": "1992-11-27"
1147
+ },
1148
+ "stats": {
1149
+ "goals": 0,
1150
+ "assists": 0,
1151
+ "points": 0,
1152
+ "penaltyMinutes": 0,
1153
+ "plusMinus": 0,
1154
+ "faceoffAttempts": 0,
1155
+ "faceoffWins": 0,
1156
+ "timeOnIce": "64:21",
1157
+ "shotsAgainst": 36,
1158
+ "goalsAgainst": 4,
1159
+ "saves": 32
1160
+ },
1161
+ "starting": 1,
1162
+ "status": ""
1163
+ }
1164
+ ],
1165
+ "goalieLog": [],
1166
+ "seasonStats": []
1167
+ },
1168
+ "periods": [
1169
+ {
1170
+ "info": { "id": "1", "shortName": "1", "longName": "1st" },
1171
+ "stats": {
1172
+ "homeGoals": "1",
1173
+ "homeShots": "13",
1174
+ "visitingGoals": "1",
1175
+ "visitingShots": "6"
1176
+ },
1177
+ "goals": [
1178
+ {
1179
+ "game_goal_id": "96321",
1180
+ "team": {
1181
+ "id": 330,
1182
+ "name": "Chicago Wolves",
1183
+ "city": "Chicago",
1184
+ "nickname": "Wolves",
1185
+ "abbreviation": "CHI",
1186
+ "logo": "https://assets.leaguestat.com/ahl/logos/330.jpg",
1187
+ "divisionName": "Central Division"
1188
+ },
1189
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1190
+ "time": "10:40",
1191
+ "scorerGoalNumber": "9",
1192
+ "scoredBy": {
1193
+ "id": 7088,
1194
+ "firstName": "Nic",
1195
+ "lastName": "Hague",
1196
+ "jerseyNumber": 2,
1197
+ "position": "D",
1198
+ "birthDate": ""
1199
+ },
1200
+ "assists": [
1201
+ {
1202
+ "id": 5540,
1203
+ "firstName": "T.J.",
1204
+ "lastName": "Tynan",
1205
+ "jerseyNumber": 18,
1206
+ "position": "C",
1207
+ "birthDate": ""
1208
+ },
1209
+ {
1210
+ "id": 7268,
1211
+ "firstName": "Zach",
1212
+ "lastName": "Whitecloud",
1213
+ "jerseyNumber": 32,
1214
+ "position": "D",
1215
+ "birthDate": ""
1216
+ }
1217
+ ],
1218
+ "assistNumbers": ["23", "9"],
1219
+ "properties": {
1220
+ "isPowerPlay": "0",
1221
+ "isShortHanded": "0",
1222
+ "isEmptyNet": "0",
1223
+ "isPenaltyShot": "0",
1224
+ "isInsuranceGoal": "0",
1225
+ "isGameWinningGoal": "0"
1226
+ },
1227
+ "plus_players": [
1228
+ {
1229
+ "id": 7088,
1230
+ "firstName": "Nic",
1231
+ "lastName": "Hague",
1232
+ "jerseyNumber": 2,
1233
+ "position": "D",
1234
+ "birthDate": ""
1235
+ },
1236
+ {
1237
+ "id": 4883,
1238
+ "firstName": "Curtis",
1239
+ "lastName": "McKenzie",
1240
+ "jerseyNumber": 10,
1241
+ "position": "LW",
1242
+ "birthDate": ""
1243
+ },
1244
+ {
1245
+ "id": 5540,
1246
+ "firstName": "T.J.",
1247
+ "lastName": "Tynan",
1248
+ "jerseyNumber": 18,
1249
+ "position": "C",
1250
+ "birthDate": ""
1251
+ },
1252
+ {
1253
+ "id": 7268,
1254
+ "firstName": "Zach",
1255
+ "lastName": "Whitecloud",
1256
+ "jerseyNumber": 32,
1257
+ "position": "D",
1258
+ "birthDate": ""
1259
+ },
1260
+ {
1261
+ "id": 5368,
1262
+ "firstName": "Tomas",
1263
+ "lastName": "Hyka",
1264
+ "jerseyNumber": 38,
1265
+ "position": "RW",
1266
+ "birthDate": ""
1267
+ }
1268
+ ],
1269
+ "minus_players": [
1270
+ {
1271
+ "id": 6689,
1272
+ "firstName": "Will",
1273
+ "lastName": "Pelletier",
1274
+ "jerseyNumber": 16,
1275
+ "position": "LW",
1276
+ "birthDate": ""
1277
+ },
1278
+ {
1279
+ "id": 6862,
1280
+ "firstName": "Darren",
1281
+ "lastName": "Raddysh",
1282
+ "jerseyNumber": 24,
1283
+ "position": "D",
1284
+ "birthDate": ""
1285
+ },
1286
+ {
1287
+ "id": 6863,
1288
+ "firstName": "Alexandre",
1289
+ "lastName": "Fortin",
1290
+ "jerseyNumber": 26,
1291
+ "position": "LW",
1292
+ "birthDate": ""
1293
+ },
1294
+ {
1295
+ "id": 5839,
1296
+ "firstName": "Tyler",
1297
+ "lastName": "Sikura",
1298
+ "jerseyNumber": 28,
1299
+ "position": "C",
1300
+ "birthDate": ""
1301
+ },
1302
+ {
1303
+ "id": 7055,
1304
+ "firstName": "Joni",
1305
+ "lastName": "Tuulola",
1306
+ "jerseyNumber": 36,
1307
+ "position": "D",
1308
+ "birthDate": ""
1309
+ }
1310
+ ]
1311
+ },
1312
+ {
1313
+ "game_goal_id": "96327",
1314
+ "team": {
1315
+ "id": 372,
1316
+ "name": "Rockford IceHogs",
1317
+ "city": "Rockford",
1318
+ "nickname": "IceHogs",
1319
+ "abbreviation": "RFD",
1320
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
1321
+ "divisionName": "Central Division"
1322
+ },
1323
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1324
+ "time": "12:58",
1325
+ "scorerGoalNumber": "6",
1326
+ "scoredBy": {
1327
+ "id": 7430,
1328
+ "firstName": "Jacob",
1329
+ "lastName": "Nilsson",
1330
+ "jerseyNumber": 21,
1331
+ "position": "C",
1332
+ "birthDate": ""
1333
+ },
1334
+ "assists": [
1335
+ {
1336
+ "id": 3555,
1337
+ "firstName": "Jordan",
1338
+ "lastName": "Schroeder",
1339
+ "jerseyNumber": 10,
1340
+ "position": "RW",
1341
+ "birthDate": ""
1342
+ },
1343
+ {
1344
+ "id": 7477,
1345
+ "firstName": "Jan",
1346
+ "lastName": "Rutta",
1347
+ "jerseyNumber": 44,
1348
+ "position": "D",
1349
+ "birthDate": ""
1350
+ }
1351
+ ],
1352
+ "assistNumbers": ["9", "2"],
1353
+ "properties": {
1354
+ "isPowerPlay": "1",
1355
+ "isShortHanded": "0",
1356
+ "isEmptyNet": "0",
1357
+ "isPenaltyShot": "0",
1358
+ "isInsuranceGoal": "0",
1359
+ "isGameWinningGoal": "0"
1360
+ },
1361
+ "plus_players": [
1362
+ {
1363
+ "id": 3555,
1364
+ "firstName": "Jordan",
1365
+ "lastName": "Schroeder",
1366
+ "jerseyNumber": 10,
1367
+ "position": "RW",
1368
+ "birthDate": ""
1369
+ },
1370
+ {
1371
+ "id": 7430,
1372
+ "firstName": "Jacob",
1373
+ "lastName": "Nilsson",
1374
+ "jerseyNumber": 21,
1375
+ "position": "C",
1376
+ "birthDate": ""
1377
+ },
1378
+ {
1379
+ "id": 7434,
1380
+ "firstName": "Lucas",
1381
+ "lastName": "Carlsson",
1382
+ "jerseyNumber": 23,
1383
+ "position": "D",
1384
+ "birthDate": ""
1385
+ },
1386
+ {
1387
+ "id": 7477,
1388
+ "firstName": "Jan",
1389
+ "lastName": "Rutta",
1390
+ "jerseyNumber": 44,
1391
+ "position": "D",
1392
+ "birthDate": ""
1393
+ },
1394
+ {
1395
+ "id": 6629,
1396
+ "firstName": "Anthony",
1397
+ "lastName": "Louis",
1398
+ "jerseyNumber": 45,
1399
+ "position": "LW",
1400
+ "birthDate": ""
1401
+ }
1402
+ ],
1403
+ "minus_players": [
1404
+ {
1405
+ "id": 5715,
1406
+ "firstName": "Griffin",
1407
+ "lastName": "Reinhart",
1408
+ "jerseyNumber": 6,
1409
+ "position": "D",
1410
+ "birthDate": ""
1411
+ },
1412
+ {
1413
+ "id": 5671,
1414
+ "firstName": "Daniel",
1415
+ "lastName": "Carr",
1416
+ "jerseyNumber": 7,
1417
+ "position": "LW",
1418
+ "birthDate": ""
1419
+ },
1420
+ {
1421
+ "id": 5540,
1422
+ "firstName": "T.J.",
1423
+ "lastName": "Tynan",
1424
+ "jerseyNumber": 18,
1425
+ "position": "C",
1426
+ "birthDate": ""
1427
+ },
1428
+ {
1429
+ "id": 7268,
1430
+ "firstName": "Zach",
1431
+ "lastName": "Whitecloud",
1432
+ "jerseyNumber": 32,
1433
+ "position": "D",
1434
+ "birthDate": ""
1435
+ }
1436
+ ]
1437
+ }
1438
+ ],
1439
+ "penalties": [
1440
+ {
1441
+ "game_penalty_id": 219063,
1442
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1443
+ "time": "11:54",
1444
+ "againstTeam": {
1445
+ "id": 330,
1446
+ "name": "Chicago Wolves",
1447
+ "city": "Chicago",
1448
+ "nickname": "Wolves",
1449
+ "abbreviation": "CHI",
1450
+ "logo": "https://assets.leaguestat.com/ahl/logos/330.jpg",
1451
+ "divisionName": "Central Division"
1452
+ },
1453
+ "minutes": 2,
1454
+ "description": "Holding",
1455
+ "ruleNumber": "",
1456
+ "takenBy": {
1457
+ "id": 6682,
1458
+ "firstName": "Jake",
1459
+ "lastName": "Bischoff",
1460
+ "jerseyNumber": 45,
1461
+ "position": "D",
1462
+ "birthDate": ""
1463
+ },
1464
+ "servedBy": {
1465
+ "id": 6682,
1466
+ "firstName": "Jake",
1467
+ "lastName": "Bischoff",
1468
+ "jerseyNumber": 45,
1469
+ "position": "D",
1470
+ "birthDate": ""
1471
+ },
1472
+ "isPowerPlay": true,
1473
+ "isBench": false
1474
+ },
1475
+ {
1476
+ "game_penalty_id": 219076,
1477
+ "period": { "id": "1", "shortName": "", "longName": "1st" },
1478
+ "time": "16:43",
1479
+ "againstTeam": {
1480
+ "id": 372,
1481
+ "name": "Rockford IceHogs",
1482
+ "city": "Rockford",
1483
+ "nickname": "IceHogs",
1484
+ "abbreviation": "RFD",
1485
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
1486
+ "divisionName": "Central Division"
1487
+ },
1488
+ "minutes": 2,
1489
+ "description": "Kneeing",
1490
+ "ruleNumber": "",
1491
+ "takenBy": {
1492
+ "id": 6914,
1493
+ "firstName": "Nathan",
1494
+ "lastName": "Noel",
1495
+ "jerseyNumber": 20,
1496
+ "position": "LW",
1497
+ "birthDate": ""
1498
+ },
1499
+ "servedBy": {
1500
+ "id": 6914,
1501
+ "firstName": "Nathan",
1502
+ "lastName": "Noel",
1503
+ "jerseyNumber": 20,
1504
+ "position": "LW",
1505
+ "birthDate": ""
1506
+ },
1507
+ "isPowerPlay": true,
1508
+ "isBench": false
1509
+ }
1510
+ ]
1511
+ },
1512
+ {
1513
+ "info": { "id": "2", "shortName": "2", "longName": "2nd" },
1514
+ "stats": {
1515
+ "homeGoals": "2",
1516
+ "homeShots": "6",
1517
+ "visitingGoals": "2",
1518
+ "visitingShots": "8"
1519
+ },
1520
+ "goals": [
1521
+ {
1522
+ "game_goal_id": "96338",
1523
+ "team": {
1524
+ "id": 372,
1525
+ "name": "Rockford IceHogs",
1526
+ "city": "Rockford",
1527
+ "nickname": "IceHogs",
1528
+ "abbreviation": "RFD",
1529
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
1530
+ "divisionName": "Central Division"
1531
+ },
1532
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
1533
+ "time": "0:36",
1534
+ "scorerGoalNumber": "1",
1535
+ "scoredBy": {
1536
+ "id": 6863,
1537
+ "firstName": "Alexandre",
1538
+ "lastName": "Fortin",
1539
+ "jerseyNumber": 26,
1540
+ "position": "LW",
1541
+ "birthDate": "1997-02-25"
1542
+ },
1543
+ "assists": [
1544
+ {
1545
+ "id": 6689,
1546
+ "firstName": "Will",
1547
+ "lastName": "Pelletier",
1548
+ "jerseyNumber": 16,
1549
+ "position": "LW",
1550
+ "birthDate": "1992-12-14"
1551
+ },
1552
+ {
1553
+ "id": 7434,
1554
+ "firstName": "Lucas",
1555
+ "lastName": "Carlsson",
1556
+ "jerseyNumber": 23,
1557
+ "position": "D",
1558
+ "birthDate": "1997-07-05"
1559
+ }
1560
+ ],
1561
+ "assistNumbers": ["2", "10"],
1562
+ "properties": {
1563
+ "isPowerPlay": "0",
1564
+ "isShortHanded": "0",
1565
+ "isEmptyNet": "0",
1566
+ "isPenaltyShot": "0",
1567
+ "isInsuranceGoal": "0",
1568
+ "isGameWinningGoal": "0"
1569
+ },
1570
+ "plus_players": [
1571
+ {
1572
+ "id": 6689,
1573
+ "firstName": "Will",
1574
+ "lastName": "Pelletier",
1575
+ "jerseyNumber": 16,
1576
+ "position": "LW",
1577
+ "birthDate": "1992-12-14"
1578
+ },
1579
+ {
1580
+ "id": 7434,
1581
+ "firstName": "Lucas",
1582
+ "lastName": "Carlsson",
1583
+ "jerseyNumber": 23,
1584
+ "position": "D",
1585
+ "birthDate": "1997-07-05"
1586
+ },
1587
+ {
1588
+ "id": 6863,
1589
+ "firstName": "Alexandre",
1590
+ "lastName": "Fortin",
1591
+ "jerseyNumber": 26,
1592
+ "position": "LW",
1593
+ "birthDate": "1997-02-25"
1594
+ },
1595
+ {
1596
+ "id": 5839,
1597
+ "firstName": "Tyler",
1598
+ "lastName": "Sikura",
1599
+ "jerseyNumber": 28,
1600
+ "position": "C",
1601
+ "birthDate": "1992-05-18"
1602
+ },
1603
+ {
1604
+ "id": 7477,
1605
+ "firstName": "Jan",
1606
+ "lastName": "Rutta",
1607
+ "jerseyNumber": 44,
1608
+ "position": "D",
1609
+ "birthDate": "1990-07-29"
1610
+ }
1611
+ ],
1612
+ "minus_players": [
1613
+ {
1614
+ "id": 7088,
1615
+ "firstName": "Nic",
1616
+ "lastName": "Hague",
1617
+ "jerseyNumber": 2,
1618
+ "position": "D",
1619
+ "birthDate": ""
1620
+ },
1621
+ {
1622
+ "id": 5671,
1623
+ "firstName": "Daniel",
1624
+ "lastName": "Carr",
1625
+ "jerseyNumber": 7,
1626
+ "position": "LW",
1627
+ "birthDate": ""
1628
+ },
1629
+ {
1630
+ "id": 6883,
1631
+ "firstName": "Gage",
1632
+ "lastName": "Quinney",
1633
+ "jerseyNumber": 9,
1634
+ "position": "C",
1635
+ "birthDate": "1995-07-29"
1636
+ },
1637
+ {
1638
+ "id": 7260,
1639
+ "firstName": "Brooks",
1640
+ "lastName": "Macek",
1641
+ "jerseyNumber": 17,
1642
+ "position": "RW",
1643
+ "birthDate": "1992-05-15"
1644
+ },
1645
+ {
1646
+ "id": 7268,
1647
+ "firstName": "Zach",
1648
+ "lastName": "Whitecloud",
1649
+ "jerseyNumber": 32,
1650
+ "position": "D",
1651
+ "birthDate": ""
1652
+ }
1653
+ ]
1654
+ },
1655
+ {
1656
+ "game_goal_id": "96341",
1657
+ "team": {
1658
+ "id": 372,
1659
+ "name": "Rockford IceHogs",
1660
+ "city": "Rockford",
1661
+ "nickname": "IceHogs",
1662
+ "abbreviation": "RFD",
1663
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
1664
+ "divisionName": "Central Division"
1665
+ },
1666
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
1667
+ "time": "4:06",
1668
+ "scorerGoalNumber": "2",
1669
+ "scoredBy": {
1670
+ "id": 6863,
1671
+ "firstName": "Alexandre",
1672
+ "lastName": "Fortin",
1673
+ "jerseyNumber": 26,
1674
+ "position": "LW",
1675
+ "birthDate": "1997-02-25"
1676
+ },
1677
+ "assists": [
1678
+ {
1679
+ "id": 6914,
1680
+ "firstName": "Nathan",
1681
+ "lastName": "Noel",
1682
+ "jerseyNumber": 20,
1683
+ "position": "LW",
1684
+ "birthDate": "1997-06-21"
1685
+ },
1686
+ {
1687
+ "id": 6864,
1688
+ "firstName": "Graham",
1689
+ "lastName": "Knott",
1690
+ "jerseyNumber": 49,
1691
+ "position": "C",
1692
+ "birthDate": "1997-01-13"
1693
+ }
1694
+ ],
1695
+ "assistNumbers": ["4", "5"],
1696
+ "properties": {
1697
+ "isPowerPlay": "0",
1698
+ "isShortHanded": "0",
1699
+ "isEmptyNet": "0",
1700
+ "isPenaltyShot": "0",
1701
+ "isInsuranceGoal": "0",
1702
+ "isGameWinningGoal": "0"
1703
+ },
1704
+ "plus_players": [
1705
+ {
1706
+ "id": 2507,
1707
+ "firstName": "Andrew",
1708
+ "lastName": "Campbell",
1709
+ "jerseyNumber": 2,
1710
+ "position": "D",
1711
+ "birthDate": "1988-02-04"
1712
+ },
1713
+ {
1714
+ "id": 6914,
1715
+ "firstName": "Nathan",
1716
+ "lastName": "Noel",
1717
+ "jerseyNumber": 20,
1718
+ "position": "LW",
1719
+ "birthDate": "1997-06-21"
1720
+ },
1721
+ {
1722
+ "id": 7434,
1723
+ "firstName": "Lucas",
1724
+ "lastName": "Carlsson",
1725
+ "jerseyNumber": 23,
1726
+ "position": "D",
1727
+ "birthDate": "1997-07-05"
1728
+ },
1729
+ {
1730
+ "id": 6863,
1731
+ "firstName": "Alexandre",
1732
+ "lastName": "Fortin",
1733
+ "jerseyNumber": 26,
1734
+ "position": "LW",
1735
+ "birthDate": "1997-02-25"
1736
+ },
1737
+ {
1738
+ "id": 6864,
1739
+ "firstName": "Graham",
1740
+ "lastName": "Knott",
1741
+ "jerseyNumber": 49,
1742
+ "position": "C",
1743
+ "birthDate": "1997-01-13"
1744
+ }
1745
+ ],
1746
+ "minus_players": [
1747
+ {
1748
+ "id": 5715,
1749
+ "firstName": "Griffin",
1750
+ "lastName": "Reinhart",
1751
+ "jerseyNumber": 6,
1752
+ "position": "D",
1753
+ "birthDate": ""
1754
+ },
1755
+ {
1756
+ "id": 5671,
1757
+ "firstName": "Daniel",
1758
+ "lastName": "Carr",
1759
+ "jerseyNumber": 7,
1760
+ "position": "LW",
1761
+ "birthDate": ""
1762
+ },
1763
+ {
1764
+ "id": 6316,
1765
+ "firstName": "Tyler",
1766
+ "lastName": "Wong",
1767
+ "jerseyNumber": 8,
1768
+ "position": "RW",
1769
+ "birthDate": "1996-02-28"
1770
+ },
1771
+ {
1772
+ "id": 7261,
1773
+ "firstName": "Matt",
1774
+ "lastName": "Weis",
1775
+ "jerseyNumber": 14,
1776
+ "position": "C",
1777
+ "birthDate": "1995-05-23"
1778
+ },
1779
+ {
1780
+ "id": 7267,
1781
+ "firstName": "Dylan",
1782
+ "lastName": "Coghlan",
1783
+ "jerseyNumber": 15,
1784
+ "position": "D",
1785
+ "birthDate": "1998-02-19"
1786
+ }
1787
+ ]
1788
+ },
1789
+ {
1790
+ "game_goal_id": "96348",
1791
+ "team": {
1792
+ "id": 330,
1793
+ "name": "Chicago Wolves",
1794
+ "city": "Chicago",
1795
+ "nickname": "Wolves",
1796
+ "abbreviation": "CHI",
1797
+ "logo": "https://assets.leaguestat.com/ahl/logos/330.jpg",
1798
+ "divisionName": "Central Division"
1799
+ },
1800
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
1801
+ "time": "9:11",
1802
+ "scorerGoalNumber": "5",
1803
+ "scoredBy": {
1804
+ "id": 4883,
1805
+ "firstName": "Curtis",
1806
+ "lastName": "McKenzie",
1807
+ "jerseyNumber": 10,
1808
+ "position": "LW",
1809
+ "birthDate": ""
1810
+ },
1811
+ "assists": [
1812
+ {
1813
+ "id": 5368,
1814
+ "firstName": "Tomas",
1815
+ "lastName": "Hyka",
1816
+ "jerseyNumber": 38,
1817
+ "position": "RW",
1818
+ "birthDate": ""
1819
+ },
1820
+ {
1821
+ "id": 7267,
1822
+ "firstName": "Dylan",
1823
+ "lastName": "Coghlan",
1824
+ "jerseyNumber": 15,
1825
+ "position": "D",
1826
+ "birthDate": "1998-02-19"
1827
+ }
1828
+ ],
1829
+ "assistNumbers": ["11", "9"],
1830
+ "properties": {
1831
+ "isPowerPlay": "0",
1832
+ "isShortHanded": "0",
1833
+ "isEmptyNet": "0",
1834
+ "isPenaltyShot": "0",
1835
+ "isInsuranceGoal": "0",
1836
+ "isGameWinningGoal": "0"
1837
+ },
1838
+ "plus_players": [
1839
+ {
1840
+ "id": 5715,
1841
+ "firstName": "Griffin",
1842
+ "lastName": "Reinhart",
1843
+ "jerseyNumber": 6,
1844
+ "position": "D",
1845
+ "birthDate": ""
1846
+ },
1847
+ {
1848
+ "id": 4883,
1849
+ "firstName": "Curtis",
1850
+ "lastName": "McKenzie",
1851
+ "jerseyNumber": 10,
1852
+ "position": "LW",
1853
+ "birthDate": ""
1854
+ },
1855
+ {
1856
+ "id": 7267,
1857
+ "firstName": "Dylan",
1858
+ "lastName": "Coghlan",
1859
+ "jerseyNumber": 15,
1860
+ "position": "D",
1861
+ "birthDate": "1998-02-19"
1862
+ },
1863
+ {
1864
+ "id": 5540,
1865
+ "firstName": "T.J.",
1866
+ "lastName": "Tynan",
1867
+ "jerseyNumber": 18,
1868
+ "position": "C",
1869
+ "birthDate": ""
1870
+ },
1871
+ {
1872
+ "id": 5368,
1873
+ "firstName": "Tomas",
1874
+ "lastName": "Hyka",
1875
+ "jerseyNumber": 38,
1876
+ "position": "RW",
1877
+ "birthDate": ""
1878
+ }
1879
+ ],
1880
+ "minus_players": [
1881
+ {
1882
+ "id": 3555,
1883
+ "firstName": "Jordan",
1884
+ "lastName": "Schroeder",
1885
+ "jerseyNumber": 10,
1886
+ "position": "RW",
1887
+ "birthDate": ""
1888
+ },
1889
+ {
1890
+ "id": 7430,
1891
+ "firstName": "Jacob",
1892
+ "lastName": "Nilsson",
1893
+ "jerseyNumber": 21,
1894
+ "position": "C",
1895
+ "birthDate": ""
1896
+ },
1897
+ {
1898
+ "id": 6862,
1899
+ "firstName": "Darren",
1900
+ "lastName": "Raddysh",
1901
+ "jerseyNumber": 24,
1902
+ "position": "D",
1903
+ "birthDate": ""
1904
+ },
1905
+ {
1906
+ "id": 7055,
1907
+ "firstName": "Joni",
1908
+ "lastName": "Tuulola",
1909
+ "jerseyNumber": 36,
1910
+ "position": "D",
1911
+ "birthDate": ""
1912
+ },
1913
+ {
1914
+ "id": 6629,
1915
+ "firstName": "Anthony",
1916
+ "lastName": "Louis",
1917
+ "jerseyNumber": 45,
1918
+ "position": "LW",
1919
+ "birthDate": "1995-02-10"
1920
+ }
1921
+ ]
1922
+ },
1923
+ {
1924
+ "game_goal_id": "96354",
1925
+ "team": {
1926
+ "id": 330,
1927
+ "name": "Chicago Wolves",
1928
+ "city": "Chicago",
1929
+ "nickname": "Wolves",
1930
+ "abbreviation": "CHI",
1931
+ "logo": "https://assets.leaguestat.com/ahl/logos/330.jpg",
1932
+ "divisionName": "Central Division"
1933
+ },
1934
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
1935
+ "time": "14:10",
1936
+ "scorerGoalNumber": "15",
1937
+ "scoredBy": {
1938
+ "id": 5671,
1939
+ "firstName": "Daniel",
1940
+ "lastName": "Carr",
1941
+ "jerseyNumber": 7,
1942
+ "position": "LW",
1943
+ "birthDate": ""
1944
+ },
1945
+ "assists": [
1946
+ {
1947
+ "id": 7268,
1948
+ "firstName": "Zach",
1949
+ "lastName": "Whitecloud",
1950
+ "jerseyNumber": 32,
1951
+ "position": "D",
1952
+ "birthDate": ""
1953
+ },
1954
+ {
1955
+ "id": 7260,
1956
+ "firstName": "Brooks",
1957
+ "lastName": "Macek",
1958
+ "jerseyNumber": 17,
1959
+ "position": "RW",
1960
+ "birthDate": "1992-05-15"
1961
+ }
1962
+ ],
1963
+ "assistNumbers": ["9", "12"],
1964
+ "properties": {
1965
+ "isPowerPlay": "0",
1966
+ "isShortHanded": "0",
1967
+ "isEmptyNet": "0",
1968
+ "isPenaltyShot": "0",
1969
+ "isInsuranceGoal": "0",
1970
+ "isGameWinningGoal": "0"
1971
+ },
1972
+ "plus_players": [
1973
+ {
1974
+ "id": 7088,
1975
+ "firstName": "Nic",
1976
+ "lastName": "Hague",
1977
+ "jerseyNumber": 2,
1978
+ "position": "D",
1979
+ "birthDate": ""
1980
+ },
1981
+ {
1982
+ "id": 5671,
1983
+ "firstName": "Daniel",
1984
+ "lastName": "Carr",
1985
+ "jerseyNumber": 7,
1986
+ "position": "LW",
1987
+ "birthDate": ""
1988
+ },
1989
+ {
1990
+ "id": 6883,
1991
+ "firstName": "Gage",
1992
+ "lastName": "Quinney",
1993
+ "jerseyNumber": 9,
1994
+ "position": "C",
1995
+ "birthDate": "1995-07-29"
1996
+ },
1997
+ {
1998
+ "id": 7260,
1999
+ "firstName": "Brooks",
2000
+ "lastName": "Macek",
2001
+ "jerseyNumber": 17,
2002
+ "position": "RW",
2003
+ "birthDate": "1992-05-15"
2004
+ },
2005
+ {
2006
+ "id": 7268,
2007
+ "firstName": "Zach",
2008
+ "lastName": "Whitecloud",
2009
+ "jerseyNumber": 32,
2010
+ "position": "D",
2011
+ "birthDate": ""
2012
+ }
2013
+ ],
2014
+ "minus_players": [
2015
+ {
2016
+ "id": 3555,
2017
+ "firstName": "Jordan",
2018
+ "lastName": "Schroeder",
2019
+ "jerseyNumber": 10,
2020
+ "position": "RW",
2021
+ "birthDate": ""
2022
+ },
2023
+ {
2024
+ "id": 7430,
2025
+ "firstName": "Jacob",
2026
+ "lastName": "Nilsson",
2027
+ "jerseyNumber": 21,
2028
+ "position": "C",
2029
+ "birthDate": ""
2030
+ },
2031
+ {
2032
+ "id": 7434,
2033
+ "firstName": "Lucas",
2034
+ "lastName": "Carlsson",
2035
+ "jerseyNumber": 23,
2036
+ "position": "D",
2037
+ "birthDate": "1997-07-05"
2038
+ },
2039
+ {
2040
+ "id": 7477,
2041
+ "firstName": "Jan",
2042
+ "lastName": "Rutta",
2043
+ "jerseyNumber": 44,
2044
+ "position": "D",
2045
+ "birthDate": "1990-07-29"
2046
+ },
2047
+ {
2048
+ "id": 6629,
2049
+ "firstName": "Anthony",
2050
+ "lastName": "Louis",
2051
+ "jerseyNumber": 45,
2052
+ "position": "LW",
2053
+ "birthDate": "1995-02-10"
2054
+ }
2055
+ ]
2056
+ }
2057
+ ],
2058
+ "penalties": [
2059
+ {
2060
+ "game_penalty_id": 774,
2061
+ "period": { "id": "2", "shortName": "", "longName": "2nd" },
2062
+ "time": "17:58",
2063
+ "againstTeam": {
2064
+ "id": 330,
2065
+ "name": "Chicago Wolves",
2066
+ "city": "Chicago",
2067
+ "nickname": "Wolves",
2068
+ "abbreviation": "CHI",
2069
+ "logo": "https://assets.leaguestat.com/ahl/logos/330.jpg",
2070
+ "divisionName": "Central Division"
2071
+ },
2072
+ "minutes": 2,
2073
+ "description": "Boarding",
2074
+ "ruleNumber": "",
2075
+ "takenBy": {
2076
+ "id": 4883,
2077
+ "firstName": "Curtis",
2078
+ "lastName": "McKenzie",
2079
+ "jerseyNumber": 10,
2080
+ "position": "LW",
2081
+ "birthDate": ""
2082
+ },
2083
+ "servedBy": {
2084
+ "id": 4883,
2085
+ "firstName": "Curtis",
2086
+ "lastName": "McKenzie",
2087
+ "jerseyNumber": 10,
2088
+ "position": "LW",
2089
+ "birthDate": ""
2090
+ },
2091
+ "isPowerPlay": true,
2092
+ "isBench": false
2093
+ }
2094
+ ]
2095
+ },
2096
+ {
2097
+ "info": { "id": "3", "shortName": "3", "longName": "3rd" },
2098
+ "stats": {
2099
+ "homeGoals": "1",
2100
+ "homeShots": "12",
2101
+ "visitingGoals": "1",
2102
+ "visitingShots": "8"
2103
+ },
2104
+ "goals": [
2105
+ {
2106
+ "game_goal_id": "96382",
2107
+ "team": {
2108
+ "id": 372,
2109
+ "name": "Rockford IceHogs",
2110
+ "city": "Rockford",
2111
+ "nickname": "IceHogs",
2112
+ "abbreviation": "RFD",
2113
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
2114
+ "divisionName": "Central Division"
2115
+ },
2116
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
2117
+ "time": "16:39",
2118
+ "scorerGoalNumber": "5",
2119
+ "scoredBy": {
2120
+ "id": 7434,
2121
+ "firstName": "Lucas",
2122
+ "lastName": "Carlsson",
2123
+ "jerseyNumber": 23,
2124
+ "position": "D",
2125
+ "birthDate": "1997-07-05"
2126
+ },
2127
+ "assists": [
2128
+ {
2129
+ "id": 7430,
2130
+ "firstName": "Jacob",
2131
+ "lastName": "Nilsson",
2132
+ "jerseyNumber": 21,
2133
+ "position": "C",
2134
+ "birthDate": ""
2135
+ },
2136
+ {
2137
+ "id": 3555,
2138
+ "firstName": "Jordan",
2139
+ "lastName": "Schroeder",
2140
+ "jerseyNumber": 10,
2141
+ "position": "RW",
2142
+ "birthDate": ""
2143
+ }
2144
+ ],
2145
+ "assistNumbers": ["7", "10"],
2146
+ "properties": {
2147
+ "isPowerPlay": "0",
2148
+ "isShortHanded": "0",
2149
+ "isEmptyNet": "0",
2150
+ "isPenaltyShot": "0",
2151
+ "isInsuranceGoal": "0",
2152
+ "isGameWinningGoal": "0"
2153
+ },
2154
+ "plus_players": [
2155
+ {
2156
+ "id": 2507,
2157
+ "firstName": "Andrew",
2158
+ "lastName": "Campbell",
2159
+ "jerseyNumber": 2,
2160
+ "position": "D",
2161
+ "birthDate": "1988-02-04"
2162
+ },
2163
+ {
2164
+ "id": 3555,
2165
+ "firstName": "Jordan",
2166
+ "lastName": "Schroeder",
2167
+ "jerseyNumber": 10,
2168
+ "position": "RW",
2169
+ "birthDate": ""
2170
+ },
2171
+ {
2172
+ "id": 7430,
2173
+ "firstName": "Jacob",
2174
+ "lastName": "Nilsson",
2175
+ "jerseyNumber": 21,
2176
+ "position": "C",
2177
+ "birthDate": ""
2178
+ },
2179
+ {
2180
+ "id": 7434,
2181
+ "firstName": "Lucas",
2182
+ "lastName": "Carlsson",
2183
+ "jerseyNumber": 23,
2184
+ "position": "D",
2185
+ "birthDate": "1997-07-05"
2186
+ },
2187
+ {
2188
+ "id": 6629,
2189
+ "firstName": "Anthony",
2190
+ "lastName": "Louis",
2191
+ "jerseyNumber": 45,
2192
+ "position": "LW",
2193
+ "birthDate": "1995-02-10"
2194
+ }
2195
+ ],
2196
+ "minus_players": [
2197
+ {
2198
+ "id": 5715,
2199
+ "firstName": "Griffin",
2200
+ "lastName": "Reinhart",
2201
+ "jerseyNumber": 6,
2202
+ "position": "D",
2203
+ "birthDate": "1994-01-24"
2204
+ },
2205
+ {
2206
+ "id": 6316,
2207
+ "firstName": "Tyler",
2208
+ "lastName": "Wong",
2209
+ "jerseyNumber": 8,
2210
+ "position": "RW",
2211
+ "birthDate": "1996-02-28"
2212
+ },
2213
+ {
2214
+ "id": 6881,
2215
+ "firstName": "Keegan",
2216
+ "lastName": "Kolesar",
2217
+ "jerseyNumber": 20,
2218
+ "position": "RW",
2219
+ "birthDate": "1997-04-08"
2220
+ },
2221
+ {
2222
+ "id": 5071,
2223
+ "firstName": "Stefan",
2224
+ "lastName": "Matteau",
2225
+ "jerseyNumber": 23,
2226
+ "position": "C",
2227
+ "birthDate": "1994-02-23"
2228
+ },
2229
+ {
2230
+ "id": 6682,
2231
+ "firstName": "Jake",
2232
+ "lastName": "Bischoff",
2233
+ "jerseyNumber": 28,
2234
+ "position": "D",
2235
+ "birthDate": "1994-07-25"
2236
+ }
2237
+ ]
2238
+ },
2239
+ {
2240
+ "game_goal_id": "96383",
2241
+ "team": {
2242
+ "id": 330,
2243
+ "name": "Chicago Wolves",
2244
+ "city": "Chicago",
2245
+ "nickname": "Wolves",
2246
+ "abbreviation": "CHI",
2247
+ "logo": "https://assets.leaguestat.com/ahl/logos/330.jpg",
2248
+ "divisionName": "Central Division"
2249
+ },
2250
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
2251
+ "time": "18:34",
2252
+ "scorerGoalNumber": "8",
2253
+ "scoredBy": {
2254
+ "id": 6883,
2255
+ "firstName": "Gage",
2256
+ "lastName": "Quinney",
2257
+ "jerseyNumber": 9,
2258
+ "position": "C",
2259
+ "birthDate": "1995-07-29"
2260
+ },
2261
+ "assists": [
2262
+ {
2263
+ "id": 5671,
2264
+ "firstName": "Daniel",
2265
+ "lastName": "Carr",
2266
+ "jerseyNumber": 7,
2267
+ "position": "LW",
2268
+ "birthDate": ""
2269
+ },
2270
+ {
2271
+ "id": 7260,
2272
+ "firstName": "Brooks",
2273
+ "lastName": "Macek",
2274
+ "jerseyNumber": 17,
2275
+ "position": "RW",
2276
+ "birthDate": "1992-05-15"
2277
+ }
2278
+ ],
2279
+ "assistNumbers": ["20", "13"],
2280
+ "properties": {
2281
+ "isPowerPlay": "0",
2282
+ "isShortHanded": "0",
2283
+ "isEmptyNet": "0",
2284
+ "isPenaltyShot": "0",
2285
+ "isInsuranceGoal": "0",
2286
+ "isGameWinningGoal": "0"
2287
+ },
2288
+ "plus_players": [
2289
+ {
2290
+ "id": 7088,
2291
+ "firstName": "Nic",
2292
+ "lastName": "Hague",
2293
+ "jerseyNumber": 2,
2294
+ "position": "D",
2295
+ "birthDate": ""
2296
+ },
2297
+ {
2298
+ "id": 5671,
2299
+ "firstName": "Daniel",
2300
+ "lastName": "Carr",
2301
+ "jerseyNumber": 7,
2302
+ "position": "LW",
2303
+ "birthDate": ""
2304
+ },
2305
+ {
2306
+ "id": 6883,
2307
+ "firstName": "Gage",
2308
+ "lastName": "Quinney",
2309
+ "jerseyNumber": 9,
2310
+ "position": "C",
2311
+ "birthDate": "1995-07-29"
2312
+ },
2313
+ {
2314
+ "id": 4883,
2315
+ "firstName": "Curtis",
2316
+ "lastName": "McKenzie",
2317
+ "jerseyNumber": 10,
2318
+ "position": "LW",
2319
+ "birthDate": ""
2320
+ },
2321
+ {
2322
+ "id": 7267,
2323
+ "firstName": "Dylan",
2324
+ "lastName": "Coghlan",
2325
+ "jerseyNumber": 15,
2326
+ "position": "D",
2327
+ "birthDate": "1998-02-19"
2328
+ },
2329
+ {
2330
+ "id": 7260,
2331
+ "firstName": "Brooks",
2332
+ "lastName": "Macek",
2333
+ "jerseyNumber": 17,
2334
+ "position": "RW",
2335
+ "birthDate": "1992-05-15"
2336
+ }
2337
+ ],
2338
+ "minus_players": [
2339
+ {
2340
+ "id": 7145,
2341
+ "firstName": "Dennis",
2342
+ "lastName": "Gilbert",
2343
+ "jerseyNumber": 8,
2344
+ "position": "D",
2345
+ "birthDate": "1996-10-30"
2346
+ },
2347
+ {
2348
+ "id": 6689,
2349
+ "firstName": "Will",
2350
+ "lastName": "Pelletier",
2351
+ "jerseyNumber": 16,
2352
+ "position": "LW",
2353
+ "birthDate": "1992-12-14"
2354
+ },
2355
+ {
2356
+ "id": 7434,
2357
+ "firstName": "Lucas",
2358
+ "lastName": "Carlsson",
2359
+ "jerseyNumber": 23,
2360
+ "position": "D",
2361
+ "birthDate": "1997-07-05"
2362
+ },
2363
+ {
2364
+ "id": 5839,
2365
+ "firstName": "Tyler",
2366
+ "lastName": "Sikura",
2367
+ "jerseyNumber": 28,
2368
+ "position": "C",
2369
+ "birthDate": "1992-05-18"
2370
+ },
2371
+ {
2372
+ "id": 6864,
2373
+ "firstName": "Graham",
2374
+ "lastName": "Knott",
2375
+ "jerseyNumber": 49,
2376
+ "position": "C",
2377
+ "birthDate": "1997-01-13"
2378
+ }
2379
+ ]
2380
+ }
2381
+ ],
2382
+ "penalties": [
2383
+ {
2384
+ "game_penalty_id": 1234,
2385
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
2386
+ "time": "4:19",
2387
+ "againstTeam": {
2388
+ "id": 372,
2389
+ "name": "Rockford IceHogs",
2390
+ "city": "Rockford",
2391
+ "nickname": "IceHogs",
2392
+ "abbreviation": "RFD",
2393
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
2394
+ "divisionName": "Central Division"
2395
+ },
2396
+ "minutes": 2,
2397
+ "description": "Holding the stick",
2398
+ "ruleNumber": "",
2399
+ "takenBy": {
2400
+ "id": 7145,
2401
+ "firstName": "Dennis",
2402
+ "lastName": "Gilbert",
2403
+ "jerseyNumber": 8,
2404
+ "position": "D",
2405
+ "birthDate": "1996-10-30"
2406
+ },
2407
+ "servedBy": {
2408
+ "id": 7145,
2409
+ "firstName": "Dennis",
2410
+ "lastName": "Gilbert",
2411
+ "jerseyNumber": 8,
2412
+ "position": "D",
2413
+ "birthDate": "1996-10-30"
2414
+ },
2415
+ "isPowerPlay": true,
2416
+ "isBench": false
2417
+ }
2418
+ ]
2419
+ },
2420
+ {
2421
+ "info": { "id": "4", "shortName": "OT", "longName": "OT" },
2422
+ "stats": {
2423
+ "homeGoals": "0",
2424
+ "homeShots": "0",
2425
+ "visitingGoals": "1",
2426
+ "visitingShots": "1"
2427
+ },
2428
+ "goals": [
2429
+ {
2430
+ "game_goal_id": "96386",
2431
+ "team": {
2432
+ "id": 372,
2433
+ "name": "Rockford IceHogs",
2434
+ "city": "Rockford",
2435
+ "nickname": "IceHogs",
2436
+ "abbreviation": "RFD",
2437
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
2438
+ "divisionName": "Central Division"
2439
+ },
2440
+ "period": { "id": "3", "shortName": "", "longName": "3rd" },
2441
+ "time": "4:21",
2442
+ "scorerGoalNumber": "7",
2443
+ "scoredBy": {
2444
+ "id": 6862,
2445
+ "firstName": "Darren",
2446
+ "lastName": "Raddysh",
2447
+ "jerseyNumber": 24,
2448
+ "position": "D",
2449
+ "birthDate": "1996-02-28"
2450
+ },
2451
+ "assists": [
2452
+ {
2453
+ "id": 6629,
2454
+ "firstName": "Anthony",
2455
+ "lastName": "Louis",
2456
+ "jerseyNumber": 45,
2457
+ "position": "LW",
2458
+ "birthDate": "1995-02-10"
2459
+ },
2460
+ {
2461
+ "id": 7430,
2462
+ "firstName": "Jacob",
2463
+ "lastName": "Nilsson",
2464
+ "jerseyNumber": 21,
2465
+ "position": "C",
2466
+ "birthDate": ""
2467
+ }
2468
+ ],
2469
+ "assistNumbers": ["11", "8"],
2470
+ "properties": {
2471
+ "isPowerPlay": "0",
2472
+ "isShortHanded": "0",
2473
+ "isEmptyNet": "0",
2474
+ "isPenaltyShot": "0",
2475
+ "isInsuranceGoal": "0",
2476
+ "isGameWinningGoal": "1"
2477
+ },
2478
+ "plus_players": [
2479
+ {
2480
+ "id": 7430,
2481
+ "firstName": "Jacob",
2482
+ "lastName": "Nilsson",
2483
+ "jerseyNumber": 21,
2484
+ "position": "C",
2485
+ "birthDate": ""
2486
+ },
2487
+ {
2488
+ "id": 6862,
2489
+ "firstName": "Darren",
2490
+ "lastName": "Raddysh",
2491
+ "jerseyNumber": 24,
2492
+ "position": "D",
2493
+ "birthDate": "1996-02-28"
2494
+ },
2495
+ {
2496
+ "id": 6629,
2497
+ "firstName": "Anthony",
2498
+ "lastName": "Louis",
2499
+ "jerseyNumber": 45,
2500
+ "position": "LW",
2501
+ "birthDate": "1995-02-10"
2502
+ }
2503
+ ],
2504
+ "minus_players": [
2505
+ {
2506
+ "id": 7088,
2507
+ "firstName": "Nic",
2508
+ "lastName": "Hague",
2509
+ "jerseyNumber": 2,
2510
+ "position": "D",
2511
+ "birthDate": ""
2512
+ },
2513
+ {
2514
+ "id": 6883,
2515
+ "firstName": "Gage",
2516
+ "lastName": "Quinney",
2517
+ "jerseyNumber": 9,
2518
+ "position": "C",
2519
+ "birthDate": "1995-07-29"
2520
+ },
2521
+ {
2522
+ "id": 7260,
2523
+ "firstName": "Brooks",
2524
+ "lastName": "Macek",
2525
+ "jerseyNumber": 17,
2526
+ "position": "RW",
2527
+ "birthDate": "1992-05-15"
2528
+ }
2529
+ ]
2530
+ }
2531
+ ],
2532
+ "penalties": []
2533
+ }
2534
+ ],
2535
+ "penaltyShots": { "homeTeam": [], "visitingTeam": [] },
2536
+ "featuredPlayer": {
2537
+ "team": {
2538
+ "id": 372,
2539
+ "name": "Rockford IceHogs",
2540
+ "city": "Rockford",
2541
+ "nickname": "IceHogs",
2542
+ "abbreviation": "RFD",
2543
+ "logo": "https://assets.leaguestat.com/ahl/logos/372.jpg",
2544
+ "divisionName": "Central Division"
2545
+ },
2546
+ "player": {
2547
+ "info": {
2548
+ "id": 0,
2549
+ "firstName": null,
2550
+ "lastName": null,
2551
+ "jerseyNumber": 0,
2552
+ "position": null,
2553
+ "birthDate": null
2554
+ },
2555
+ "stats": {
2556
+ "goals": 0,
2557
+ "assists": 0,
2558
+ "points": 0,
2559
+ "penaltyMinutes": 0,
2560
+ "plusMinus": 0,
2561
+ "faceoffAttempts": 0,
2562
+ "faceoffWins": 0,
2563
+ "shots": 0,
2564
+ "hits": 0
2565
+ },
2566
+ "starting": 0,
2567
+ "status": null
2568
+ },
2569
+ "isGoalie": false,
2570
+ "playerImage": " ",
2571
+ "sponsor": { "name": null, "image": null }
2572
+ }
2573
+ }