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