cfbd 5.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/cfbd-5.0.0-alpha.0.tgz +0 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +20 -0
- package/dist/schemas.gen.d.ts +4722 -0
- package/dist/schemas.gen.js +4750 -0
- package/dist/services.gen.d.ts +215 -0
- package/dist/services.gen.js +442 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.js +20 -0
- package/dist/src/schemas.gen.d.ts +4722 -0
- package/dist/src/schemas.gen.js +4750 -0
- package/dist/src/services.gen.d.ts +215 -0
- package/dist/src/services.gen.js +442 -0
- package/dist/src/types.gen.d.ts +2323 -0
- package/dist/src/types.gen.js +3 -0
- package/dist/types.gen.d.ts +2323 -0
- package/dist/types.gen.js +3 -0
- package/package.json +17 -0
- package/src/index.ts +4 -0
- package/src/schemas.gen.ts +4830 -0
- package/src/services.gen.ts +430 -0
- package/src/types.gen.ts +2562 -0
- package/tsconfig.json +62 -0
|
@@ -0,0 +1,4722 @@
|
|
|
1
|
+
export declare const $Venue: {
|
|
2
|
+
readonly properties: {
|
|
3
|
+
readonly id: {
|
|
4
|
+
readonly type: "integer";
|
|
5
|
+
readonly format: "int32";
|
|
6
|
+
readonly nullable: true;
|
|
7
|
+
};
|
|
8
|
+
readonly name: {
|
|
9
|
+
readonly type: "string";
|
|
10
|
+
readonly nullable: true;
|
|
11
|
+
};
|
|
12
|
+
readonly city: {
|
|
13
|
+
readonly type: "string";
|
|
14
|
+
readonly nullable: true;
|
|
15
|
+
};
|
|
16
|
+
readonly state: {
|
|
17
|
+
readonly type: "string";
|
|
18
|
+
readonly nullable: true;
|
|
19
|
+
};
|
|
20
|
+
readonly zip: {
|
|
21
|
+
readonly type: "string";
|
|
22
|
+
readonly nullable: true;
|
|
23
|
+
};
|
|
24
|
+
readonly countryCode: {
|
|
25
|
+
readonly type: "string";
|
|
26
|
+
readonly nullable: true;
|
|
27
|
+
};
|
|
28
|
+
readonly timezone: {
|
|
29
|
+
readonly type: "string";
|
|
30
|
+
readonly nullable: true;
|
|
31
|
+
};
|
|
32
|
+
readonly latitude: {
|
|
33
|
+
readonly type: "number";
|
|
34
|
+
readonly format: "double";
|
|
35
|
+
readonly nullable: true;
|
|
36
|
+
};
|
|
37
|
+
readonly longitude: {
|
|
38
|
+
readonly type: "number";
|
|
39
|
+
readonly format: "double";
|
|
40
|
+
readonly nullable: true;
|
|
41
|
+
};
|
|
42
|
+
readonly elevation: {
|
|
43
|
+
readonly type: "string";
|
|
44
|
+
readonly nullable: true;
|
|
45
|
+
};
|
|
46
|
+
readonly capacity: {
|
|
47
|
+
readonly type: "integer";
|
|
48
|
+
readonly format: "int32";
|
|
49
|
+
readonly nullable: true;
|
|
50
|
+
};
|
|
51
|
+
readonly constructionYear: {
|
|
52
|
+
readonly type: "integer";
|
|
53
|
+
readonly format: "int32";
|
|
54
|
+
readonly nullable: true;
|
|
55
|
+
};
|
|
56
|
+
readonly grass: {
|
|
57
|
+
readonly type: "boolean";
|
|
58
|
+
readonly nullable: true;
|
|
59
|
+
};
|
|
60
|
+
readonly dome: {
|
|
61
|
+
readonly type: "boolean";
|
|
62
|
+
readonly nullable: true;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
readonly required: readonly ["id", "name", "city", "state", "zip", "countryCode", "timezone", "latitude", "longitude", "elevation", "capacity", "constructionYear"];
|
|
66
|
+
readonly type: "object";
|
|
67
|
+
readonly additionalProperties: false;
|
|
68
|
+
};
|
|
69
|
+
export declare const $Team: {
|
|
70
|
+
readonly properties: {
|
|
71
|
+
readonly id: {
|
|
72
|
+
readonly type: "integer";
|
|
73
|
+
readonly format: "int32";
|
|
74
|
+
};
|
|
75
|
+
readonly school: {
|
|
76
|
+
readonly type: "string";
|
|
77
|
+
};
|
|
78
|
+
readonly mascot: {
|
|
79
|
+
readonly type: "string";
|
|
80
|
+
readonly nullable: true;
|
|
81
|
+
};
|
|
82
|
+
readonly abbreviation: {
|
|
83
|
+
readonly type: "string";
|
|
84
|
+
readonly nullable: true;
|
|
85
|
+
};
|
|
86
|
+
readonly alternateNames: {
|
|
87
|
+
readonly items: {
|
|
88
|
+
readonly type: "string";
|
|
89
|
+
};
|
|
90
|
+
readonly type: "array";
|
|
91
|
+
readonly nullable: true;
|
|
92
|
+
};
|
|
93
|
+
readonly conference: {
|
|
94
|
+
readonly type: "string";
|
|
95
|
+
readonly nullable: true;
|
|
96
|
+
};
|
|
97
|
+
readonly division: {
|
|
98
|
+
readonly type: "string";
|
|
99
|
+
readonly nullable: true;
|
|
100
|
+
};
|
|
101
|
+
readonly classification: {
|
|
102
|
+
readonly type: "string";
|
|
103
|
+
readonly nullable: true;
|
|
104
|
+
};
|
|
105
|
+
readonly color: {
|
|
106
|
+
readonly type: "string";
|
|
107
|
+
readonly nullable: true;
|
|
108
|
+
};
|
|
109
|
+
readonly alternateColor: {
|
|
110
|
+
readonly type: "string";
|
|
111
|
+
readonly nullable: true;
|
|
112
|
+
};
|
|
113
|
+
readonly logos: {
|
|
114
|
+
readonly items: {
|
|
115
|
+
readonly type: "string";
|
|
116
|
+
};
|
|
117
|
+
readonly type: "array";
|
|
118
|
+
readonly nullable: true;
|
|
119
|
+
};
|
|
120
|
+
readonly twitter: {
|
|
121
|
+
readonly type: "string";
|
|
122
|
+
readonly nullable: true;
|
|
123
|
+
};
|
|
124
|
+
readonly location: {
|
|
125
|
+
readonly allOf: readonly [{
|
|
126
|
+
readonly $ref: "#/components/schemas/Venue";
|
|
127
|
+
}];
|
|
128
|
+
readonly nullable: true;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
readonly required: readonly ["id", "school", "mascot", "abbreviation", "alternateNames", "conference", "division", "classification", "color", "alternateColor", "logos", "twitter", "location"];
|
|
132
|
+
readonly type: "object";
|
|
133
|
+
readonly additionalProperties: false;
|
|
134
|
+
};
|
|
135
|
+
export declare const $MatchupGame: {
|
|
136
|
+
readonly properties: {
|
|
137
|
+
readonly season: {
|
|
138
|
+
readonly type: "integer";
|
|
139
|
+
readonly format: "int32";
|
|
140
|
+
};
|
|
141
|
+
readonly week: {
|
|
142
|
+
readonly type: "integer";
|
|
143
|
+
readonly format: "int32";
|
|
144
|
+
};
|
|
145
|
+
readonly seasonType: {
|
|
146
|
+
readonly type: "string";
|
|
147
|
+
};
|
|
148
|
+
readonly date: {
|
|
149
|
+
readonly type: "string";
|
|
150
|
+
};
|
|
151
|
+
readonly neutralSite: {
|
|
152
|
+
readonly type: "boolean";
|
|
153
|
+
};
|
|
154
|
+
readonly venue: {
|
|
155
|
+
readonly type: "string";
|
|
156
|
+
};
|
|
157
|
+
readonly homeTeam: {
|
|
158
|
+
readonly type: "string";
|
|
159
|
+
};
|
|
160
|
+
readonly homeScore: {
|
|
161
|
+
readonly type: "integer";
|
|
162
|
+
readonly format: "int32";
|
|
163
|
+
};
|
|
164
|
+
readonly awayTeam: {
|
|
165
|
+
readonly type: "string";
|
|
166
|
+
};
|
|
167
|
+
readonly awayScore: {
|
|
168
|
+
readonly type: "integer";
|
|
169
|
+
readonly format: "int32";
|
|
170
|
+
};
|
|
171
|
+
readonly winner: {
|
|
172
|
+
readonly type: "string";
|
|
173
|
+
readonly nullable: true;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
readonly required: readonly ["season", "week", "seasonType", "date", "neutralSite", "venue", "homeTeam", "homeScore", "awayTeam", "awayScore", "winner"];
|
|
177
|
+
readonly type: "object";
|
|
178
|
+
readonly additionalProperties: false;
|
|
179
|
+
};
|
|
180
|
+
export declare const $Matchup: {
|
|
181
|
+
readonly properties: {
|
|
182
|
+
readonly team1: {
|
|
183
|
+
readonly type: "string";
|
|
184
|
+
};
|
|
185
|
+
readonly team2: {
|
|
186
|
+
readonly type: "string";
|
|
187
|
+
};
|
|
188
|
+
readonly startYear: {
|
|
189
|
+
readonly type: "integer";
|
|
190
|
+
readonly format: "int32";
|
|
191
|
+
};
|
|
192
|
+
readonly endYear: {
|
|
193
|
+
readonly type: "integer";
|
|
194
|
+
readonly format: "int32";
|
|
195
|
+
};
|
|
196
|
+
readonly team1Wins: {
|
|
197
|
+
readonly type: "integer";
|
|
198
|
+
readonly format: "int32";
|
|
199
|
+
};
|
|
200
|
+
readonly team2Wins: {
|
|
201
|
+
readonly type: "integer";
|
|
202
|
+
readonly format: "int32";
|
|
203
|
+
};
|
|
204
|
+
readonly ties: {
|
|
205
|
+
readonly type: "integer";
|
|
206
|
+
readonly format: "int32";
|
|
207
|
+
};
|
|
208
|
+
readonly games: {
|
|
209
|
+
readonly items: {
|
|
210
|
+
readonly $ref: "#/components/schemas/MatchupGame";
|
|
211
|
+
};
|
|
212
|
+
readonly type: "array";
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
readonly required: readonly ["team1", "team2", "team1Wins", "team2Wins", "ties", "games"];
|
|
216
|
+
readonly type: "object";
|
|
217
|
+
readonly additionalProperties: false;
|
|
218
|
+
};
|
|
219
|
+
export declare const $RosterPlayer: {
|
|
220
|
+
readonly properties: {
|
|
221
|
+
readonly id: {
|
|
222
|
+
readonly type: "string";
|
|
223
|
+
};
|
|
224
|
+
readonly firstName: {
|
|
225
|
+
readonly type: "string";
|
|
226
|
+
};
|
|
227
|
+
readonly lastName: {
|
|
228
|
+
readonly type: "string";
|
|
229
|
+
};
|
|
230
|
+
readonly team: {
|
|
231
|
+
readonly type: "string";
|
|
232
|
+
};
|
|
233
|
+
readonly height: {
|
|
234
|
+
readonly type: "integer";
|
|
235
|
+
readonly format: "int32";
|
|
236
|
+
readonly nullable: true;
|
|
237
|
+
};
|
|
238
|
+
readonly weight: {
|
|
239
|
+
readonly type: "integer";
|
|
240
|
+
readonly format: "int32";
|
|
241
|
+
readonly nullable: true;
|
|
242
|
+
};
|
|
243
|
+
readonly jersey: {
|
|
244
|
+
readonly type: "integer";
|
|
245
|
+
readonly format: "int32";
|
|
246
|
+
readonly nullable: true;
|
|
247
|
+
};
|
|
248
|
+
readonly year: {
|
|
249
|
+
readonly type: "integer";
|
|
250
|
+
readonly format: "int32";
|
|
251
|
+
};
|
|
252
|
+
readonly position: {
|
|
253
|
+
readonly type: "string";
|
|
254
|
+
readonly nullable: true;
|
|
255
|
+
};
|
|
256
|
+
readonly homeCity: {
|
|
257
|
+
readonly type: "string";
|
|
258
|
+
readonly nullable: true;
|
|
259
|
+
};
|
|
260
|
+
readonly homeState: {
|
|
261
|
+
readonly type: "string";
|
|
262
|
+
readonly nullable: true;
|
|
263
|
+
};
|
|
264
|
+
readonly homeCountry: {
|
|
265
|
+
readonly type: "string";
|
|
266
|
+
readonly nullable: true;
|
|
267
|
+
};
|
|
268
|
+
readonly homeLatitude: {
|
|
269
|
+
readonly type: "number";
|
|
270
|
+
readonly format: "double";
|
|
271
|
+
readonly nullable: true;
|
|
272
|
+
};
|
|
273
|
+
readonly homeLongitude: {
|
|
274
|
+
readonly type: "number";
|
|
275
|
+
readonly format: "double";
|
|
276
|
+
readonly nullable: true;
|
|
277
|
+
};
|
|
278
|
+
readonly homeCountyFIPS: {
|
|
279
|
+
readonly type: "string";
|
|
280
|
+
readonly nullable: true;
|
|
281
|
+
};
|
|
282
|
+
readonly recruitIds: {
|
|
283
|
+
readonly items: {
|
|
284
|
+
readonly type: "string";
|
|
285
|
+
};
|
|
286
|
+
readonly type: "array";
|
|
287
|
+
readonly nullable: true;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
readonly required: readonly ["id", "firstName", "lastName", "team", "height", "weight", "jersey", "year", "position", "homeCity", "homeState", "homeCountry", "homeLatitude", "homeLongitude", "homeCountyFIPS", "recruitIds"];
|
|
291
|
+
readonly type: "object";
|
|
292
|
+
readonly additionalProperties: false;
|
|
293
|
+
};
|
|
294
|
+
export declare const $DivisionClassification: {
|
|
295
|
+
readonly enum: readonly ["fbs", "fcs", "ii", "iii"];
|
|
296
|
+
readonly type: "string";
|
|
297
|
+
};
|
|
298
|
+
export declare const $Conference: {
|
|
299
|
+
readonly properties: {
|
|
300
|
+
readonly id: {
|
|
301
|
+
readonly type: "integer";
|
|
302
|
+
readonly format: "int32";
|
|
303
|
+
};
|
|
304
|
+
readonly name: {
|
|
305
|
+
readonly type: "string";
|
|
306
|
+
};
|
|
307
|
+
readonly shortName: {
|
|
308
|
+
readonly type: "string";
|
|
309
|
+
readonly nullable: true;
|
|
310
|
+
};
|
|
311
|
+
readonly abbreviation: {
|
|
312
|
+
readonly type: "string";
|
|
313
|
+
readonly nullable: true;
|
|
314
|
+
};
|
|
315
|
+
readonly classification: {
|
|
316
|
+
readonly allOf: readonly [{
|
|
317
|
+
readonly $ref: "#/components/schemas/DivisionClassification";
|
|
318
|
+
}];
|
|
319
|
+
readonly nullable: true;
|
|
320
|
+
};
|
|
321
|
+
};
|
|
322
|
+
readonly required: readonly ["id", "name", "shortName", "abbreviation", "classification"];
|
|
323
|
+
readonly type: "object";
|
|
324
|
+
readonly additionalProperties: false;
|
|
325
|
+
};
|
|
326
|
+
export declare const $TeamTalent: {
|
|
327
|
+
readonly properties: {
|
|
328
|
+
readonly year: {
|
|
329
|
+
readonly type: "integer";
|
|
330
|
+
readonly format: "int32";
|
|
331
|
+
};
|
|
332
|
+
readonly team: {
|
|
333
|
+
readonly type: "string";
|
|
334
|
+
};
|
|
335
|
+
readonly talent: {
|
|
336
|
+
readonly type: "number";
|
|
337
|
+
readonly format: "double";
|
|
338
|
+
};
|
|
339
|
+
};
|
|
340
|
+
readonly required: readonly ["year", "team", "talent"];
|
|
341
|
+
readonly type: "object";
|
|
342
|
+
readonly additionalProperties: false;
|
|
343
|
+
};
|
|
344
|
+
export declare const $PlayerStat: {
|
|
345
|
+
readonly properties: {
|
|
346
|
+
readonly season: {
|
|
347
|
+
readonly type: "integer";
|
|
348
|
+
readonly format: "int32";
|
|
349
|
+
};
|
|
350
|
+
readonly playerId: {
|
|
351
|
+
readonly type: "string";
|
|
352
|
+
};
|
|
353
|
+
readonly player: {
|
|
354
|
+
readonly type: "string";
|
|
355
|
+
};
|
|
356
|
+
readonly team: {
|
|
357
|
+
readonly type: "string";
|
|
358
|
+
};
|
|
359
|
+
readonly conference: {
|
|
360
|
+
readonly type: "string";
|
|
361
|
+
};
|
|
362
|
+
readonly category: {
|
|
363
|
+
readonly type: "string";
|
|
364
|
+
};
|
|
365
|
+
readonly statType: {
|
|
366
|
+
readonly type: "string";
|
|
367
|
+
};
|
|
368
|
+
readonly stat: {
|
|
369
|
+
readonly type: "number";
|
|
370
|
+
readonly format: "double";
|
|
371
|
+
};
|
|
372
|
+
};
|
|
373
|
+
readonly required: readonly ["season", "playerId", "player", "team", "conference", "category", "statType", "stat"];
|
|
374
|
+
readonly type: "object";
|
|
375
|
+
readonly additionalProperties: false;
|
|
376
|
+
};
|
|
377
|
+
export declare const $SeasonType: {
|
|
378
|
+
readonly enum: readonly ["regular", "postseason", "both", "allstar", "spring_regular", "spring_postseason"];
|
|
379
|
+
readonly type: "string";
|
|
380
|
+
};
|
|
381
|
+
export declare const $TeamStat: {
|
|
382
|
+
readonly properties: {
|
|
383
|
+
readonly season: {
|
|
384
|
+
readonly type: "integer";
|
|
385
|
+
readonly format: "int32";
|
|
386
|
+
};
|
|
387
|
+
readonly team: {
|
|
388
|
+
readonly type: "string";
|
|
389
|
+
};
|
|
390
|
+
readonly conference: {
|
|
391
|
+
readonly type: "string";
|
|
392
|
+
};
|
|
393
|
+
readonly statName: {
|
|
394
|
+
readonly type: "string";
|
|
395
|
+
};
|
|
396
|
+
readonly statValue: {
|
|
397
|
+
readonly anyOf: readonly [{
|
|
398
|
+
readonly type: "string";
|
|
399
|
+
}, {
|
|
400
|
+
readonly type: "number";
|
|
401
|
+
readonly format: "double";
|
|
402
|
+
}];
|
|
403
|
+
};
|
|
404
|
+
};
|
|
405
|
+
readonly required: readonly ["season", "team", "conference", "statName", "statValue"];
|
|
406
|
+
readonly type: "object";
|
|
407
|
+
readonly additionalProperties: false;
|
|
408
|
+
};
|
|
409
|
+
export declare const $AdvancedSeasonStat: {
|
|
410
|
+
readonly properties: {
|
|
411
|
+
readonly season: {
|
|
412
|
+
readonly type: "integer";
|
|
413
|
+
readonly format: "int32";
|
|
414
|
+
};
|
|
415
|
+
readonly team: {
|
|
416
|
+
readonly type: "string";
|
|
417
|
+
};
|
|
418
|
+
readonly conference: {
|
|
419
|
+
readonly type: "string";
|
|
420
|
+
};
|
|
421
|
+
readonly offense: {
|
|
422
|
+
readonly properties: {
|
|
423
|
+
readonly passingPlays: {
|
|
424
|
+
readonly properties: {
|
|
425
|
+
readonly explosiveness: {
|
|
426
|
+
readonly type: "number";
|
|
427
|
+
readonly format: "double";
|
|
428
|
+
};
|
|
429
|
+
readonly successRate: {
|
|
430
|
+
readonly type: "number";
|
|
431
|
+
readonly format: "double";
|
|
432
|
+
};
|
|
433
|
+
readonly totalPPA: {
|
|
434
|
+
readonly type: "number";
|
|
435
|
+
readonly format: "double";
|
|
436
|
+
};
|
|
437
|
+
readonly ppa: {
|
|
438
|
+
readonly type: "number";
|
|
439
|
+
readonly format: "double";
|
|
440
|
+
};
|
|
441
|
+
readonly rate: {
|
|
442
|
+
readonly type: "number";
|
|
443
|
+
readonly format: "double";
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
readonly required: readonly ["explosiveness", "successRate", "totalPPA", "ppa", "rate"];
|
|
447
|
+
readonly type: "object";
|
|
448
|
+
};
|
|
449
|
+
readonly rushingPlays: {
|
|
450
|
+
readonly properties: {
|
|
451
|
+
readonly explosiveness: {
|
|
452
|
+
readonly type: "number";
|
|
453
|
+
readonly format: "double";
|
|
454
|
+
};
|
|
455
|
+
readonly successRate: {
|
|
456
|
+
readonly type: "number";
|
|
457
|
+
readonly format: "double";
|
|
458
|
+
};
|
|
459
|
+
readonly totalPPA: {
|
|
460
|
+
readonly type: "number";
|
|
461
|
+
readonly format: "double";
|
|
462
|
+
};
|
|
463
|
+
readonly ppa: {
|
|
464
|
+
readonly type: "number";
|
|
465
|
+
readonly format: "double";
|
|
466
|
+
};
|
|
467
|
+
readonly rate: {
|
|
468
|
+
readonly type: "number";
|
|
469
|
+
readonly format: "double";
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
readonly required: readonly ["explosiveness", "successRate", "totalPPA", "ppa", "rate"];
|
|
473
|
+
readonly type: "object";
|
|
474
|
+
};
|
|
475
|
+
readonly passingDowns: {
|
|
476
|
+
readonly properties: {
|
|
477
|
+
readonly explosiveness: {
|
|
478
|
+
readonly type: "number";
|
|
479
|
+
readonly format: "double";
|
|
480
|
+
};
|
|
481
|
+
readonly successRate: {
|
|
482
|
+
readonly type: "number";
|
|
483
|
+
readonly format: "double";
|
|
484
|
+
};
|
|
485
|
+
readonly ppa: {
|
|
486
|
+
readonly type: "number";
|
|
487
|
+
readonly format: "double";
|
|
488
|
+
};
|
|
489
|
+
readonly rate: {
|
|
490
|
+
readonly type: "number";
|
|
491
|
+
readonly format: "double";
|
|
492
|
+
};
|
|
493
|
+
};
|
|
494
|
+
readonly required: readonly ["explosiveness", "successRate", "ppa", "rate"];
|
|
495
|
+
readonly type: "object";
|
|
496
|
+
};
|
|
497
|
+
readonly standardDowns: {
|
|
498
|
+
readonly properties: {
|
|
499
|
+
readonly explosiveness: {
|
|
500
|
+
readonly type: "number";
|
|
501
|
+
readonly format: "double";
|
|
502
|
+
};
|
|
503
|
+
readonly successRate: {
|
|
504
|
+
readonly type: "number";
|
|
505
|
+
readonly format: "double";
|
|
506
|
+
};
|
|
507
|
+
readonly ppa: {
|
|
508
|
+
readonly type: "number";
|
|
509
|
+
readonly format: "double";
|
|
510
|
+
};
|
|
511
|
+
readonly rate: {
|
|
512
|
+
readonly type: "number";
|
|
513
|
+
readonly format: "double";
|
|
514
|
+
};
|
|
515
|
+
};
|
|
516
|
+
readonly required: readonly ["explosiveness", "successRate", "ppa", "rate"];
|
|
517
|
+
readonly type: "object";
|
|
518
|
+
};
|
|
519
|
+
readonly havoc: {
|
|
520
|
+
readonly properties: {
|
|
521
|
+
readonly db: {
|
|
522
|
+
readonly type: "number";
|
|
523
|
+
readonly format: "double";
|
|
524
|
+
readonly nullable: true;
|
|
525
|
+
};
|
|
526
|
+
readonly frontSeven: {
|
|
527
|
+
readonly type: "number";
|
|
528
|
+
readonly format: "double";
|
|
529
|
+
readonly nullable: true;
|
|
530
|
+
};
|
|
531
|
+
readonly total: {
|
|
532
|
+
readonly type: "number";
|
|
533
|
+
readonly format: "double";
|
|
534
|
+
readonly nullable: true;
|
|
535
|
+
};
|
|
536
|
+
};
|
|
537
|
+
readonly required: readonly ["db", "frontSeven", "total"];
|
|
538
|
+
readonly type: "object";
|
|
539
|
+
};
|
|
540
|
+
readonly fieldPosition: {
|
|
541
|
+
readonly properties: {
|
|
542
|
+
readonly averagePredictedPoints: {
|
|
543
|
+
readonly type: "number";
|
|
544
|
+
readonly format: "double";
|
|
545
|
+
readonly nullable: true;
|
|
546
|
+
};
|
|
547
|
+
readonly averageStart: {
|
|
548
|
+
readonly type: "number";
|
|
549
|
+
readonly format: "double";
|
|
550
|
+
readonly nullable: true;
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
readonly required: readonly ["averagePredictedPoints", "averageStart"];
|
|
554
|
+
readonly type: "object";
|
|
555
|
+
};
|
|
556
|
+
readonly pointsPerOpportunity: {
|
|
557
|
+
readonly type: "number";
|
|
558
|
+
readonly format: "double";
|
|
559
|
+
};
|
|
560
|
+
readonly totalOpportunies: {
|
|
561
|
+
readonly type: "integer";
|
|
562
|
+
readonly format: "int32";
|
|
563
|
+
};
|
|
564
|
+
readonly openFieldYardsTotal: {
|
|
565
|
+
readonly type: "integer";
|
|
566
|
+
readonly format: "int32";
|
|
567
|
+
};
|
|
568
|
+
readonly openFieldYards: {
|
|
569
|
+
readonly type: "number";
|
|
570
|
+
readonly format: "double";
|
|
571
|
+
};
|
|
572
|
+
readonly secondLevelYardsTotal: {
|
|
573
|
+
readonly type: "integer";
|
|
574
|
+
readonly format: "int32";
|
|
575
|
+
};
|
|
576
|
+
readonly secondLevelYards: {
|
|
577
|
+
readonly type: "number";
|
|
578
|
+
readonly format: "double";
|
|
579
|
+
};
|
|
580
|
+
readonly lineYardsTotal: {
|
|
581
|
+
readonly type: "integer";
|
|
582
|
+
readonly format: "int32";
|
|
583
|
+
};
|
|
584
|
+
readonly lineYards: {
|
|
585
|
+
readonly type: "number";
|
|
586
|
+
readonly format: "double";
|
|
587
|
+
};
|
|
588
|
+
readonly stuffRate: {
|
|
589
|
+
readonly type: "number";
|
|
590
|
+
readonly format: "double";
|
|
591
|
+
};
|
|
592
|
+
readonly powerSuccess: {
|
|
593
|
+
readonly type: "number";
|
|
594
|
+
readonly format: "double";
|
|
595
|
+
};
|
|
596
|
+
readonly explosiveness: {
|
|
597
|
+
readonly type: "number";
|
|
598
|
+
readonly format: "double";
|
|
599
|
+
};
|
|
600
|
+
readonly successRate: {
|
|
601
|
+
readonly type: "number";
|
|
602
|
+
readonly format: "double";
|
|
603
|
+
};
|
|
604
|
+
readonly totalPPA: {
|
|
605
|
+
readonly type: "number";
|
|
606
|
+
readonly format: "double";
|
|
607
|
+
};
|
|
608
|
+
readonly ppa: {
|
|
609
|
+
readonly type: "number";
|
|
610
|
+
readonly format: "double";
|
|
611
|
+
};
|
|
612
|
+
readonly drives: {
|
|
613
|
+
readonly type: "integer";
|
|
614
|
+
readonly format: "int32";
|
|
615
|
+
};
|
|
616
|
+
readonly plays: {
|
|
617
|
+
readonly type: "integer";
|
|
618
|
+
readonly format: "int32";
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
readonly required: readonly ["passingPlays", "rushingPlays", "passingDowns", "standardDowns", "havoc", "fieldPosition", "pointsPerOpportunity", "totalOpportunies", "openFieldYardsTotal", "openFieldYards", "secondLevelYardsTotal", "secondLevelYards", "lineYardsTotal", "lineYards", "stuffRate", "powerSuccess", "explosiveness", "successRate", "totalPPA", "ppa", "drives", "plays"];
|
|
622
|
+
readonly type: "object";
|
|
623
|
+
};
|
|
624
|
+
readonly defense: {
|
|
625
|
+
readonly properties: {
|
|
626
|
+
readonly passingPlays: {
|
|
627
|
+
readonly properties: {
|
|
628
|
+
readonly explosiveness: {
|
|
629
|
+
readonly type: "number";
|
|
630
|
+
readonly format: "double";
|
|
631
|
+
};
|
|
632
|
+
readonly successRate: {
|
|
633
|
+
readonly type: "number";
|
|
634
|
+
readonly format: "double";
|
|
635
|
+
};
|
|
636
|
+
readonly totalPPA: {
|
|
637
|
+
readonly type: "number";
|
|
638
|
+
readonly format: "double";
|
|
639
|
+
};
|
|
640
|
+
readonly ppa: {
|
|
641
|
+
readonly type: "number";
|
|
642
|
+
readonly format: "double";
|
|
643
|
+
};
|
|
644
|
+
readonly rate: {
|
|
645
|
+
readonly type: "number";
|
|
646
|
+
readonly format: "double";
|
|
647
|
+
};
|
|
648
|
+
};
|
|
649
|
+
readonly required: readonly ["explosiveness", "successRate", "totalPPA", "ppa", "rate"];
|
|
650
|
+
readonly type: "object";
|
|
651
|
+
};
|
|
652
|
+
readonly rushingPlays: {
|
|
653
|
+
readonly properties: {
|
|
654
|
+
readonly explosiveness: {
|
|
655
|
+
readonly type: "number";
|
|
656
|
+
readonly format: "double";
|
|
657
|
+
};
|
|
658
|
+
readonly successRate: {
|
|
659
|
+
readonly type: "number";
|
|
660
|
+
readonly format: "double";
|
|
661
|
+
};
|
|
662
|
+
readonly totalPPA: {
|
|
663
|
+
readonly type: "number";
|
|
664
|
+
readonly format: "double";
|
|
665
|
+
};
|
|
666
|
+
readonly ppa: {
|
|
667
|
+
readonly type: "number";
|
|
668
|
+
readonly format: "double";
|
|
669
|
+
};
|
|
670
|
+
readonly rate: {
|
|
671
|
+
readonly type: "number";
|
|
672
|
+
readonly format: "double";
|
|
673
|
+
};
|
|
674
|
+
};
|
|
675
|
+
readonly required: readonly ["explosiveness", "successRate", "totalPPA", "ppa", "rate"];
|
|
676
|
+
readonly type: "object";
|
|
677
|
+
};
|
|
678
|
+
readonly passingDowns: {
|
|
679
|
+
readonly properties: {
|
|
680
|
+
readonly explosiveness: {
|
|
681
|
+
readonly type: "number";
|
|
682
|
+
readonly format: "double";
|
|
683
|
+
};
|
|
684
|
+
readonly successRate: {
|
|
685
|
+
readonly type: "number";
|
|
686
|
+
readonly format: "double";
|
|
687
|
+
};
|
|
688
|
+
readonly totalPPA: {
|
|
689
|
+
readonly type: "number";
|
|
690
|
+
readonly format: "double";
|
|
691
|
+
};
|
|
692
|
+
readonly ppa: {
|
|
693
|
+
readonly type: "number";
|
|
694
|
+
readonly format: "double";
|
|
695
|
+
};
|
|
696
|
+
readonly rate: {
|
|
697
|
+
readonly type: "number";
|
|
698
|
+
readonly format: "double";
|
|
699
|
+
};
|
|
700
|
+
};
|
|
701
|
+
readonly required: readonly ["explosiveness", "successRate", "totalPPA", "ppa", "rate"];
|
|
702
|
+
readonly type: "object";
|
|
703
|
+
};
|
|
704
|
+
readonly standardDowns: {
|
|
705
|
+
readonly properties: {
|
|
706
|
+
readonly explosiveness: {
|
|
707
|
+
readonly type: "number";
|
|
708
|
+
readonly format: "double";
|
|
709
|
+
};
|
|
710
|
+
readonly successRate: {
|
|
711
|
+
readonly type: "number";
|
|
712
|
+
readonly format: "double";
|
|
713
|
+
};
|
|
714
|
+
readonly ppa: {
|
|
715
|
+
readonly type: "number";
|
|
716
|
+
readonly format: "double";
|
|
717
|
+
};
|
|
718
|
+
readonly rate: {
|
|
719
|
+
readonly type: "number";
|
|
720
|
+
readonly format: "double";
|
|
721
|
+
};
|
|
722
|
+
};
|
|
723
|
+
readonly required: readonly ["explosiveness", "successRate", "ppa", "rate"];
|
|
724
|
+
readonly type: "object";
|
|
725
|
+
};
|
|
726
|
+
readonly havoc: {
|
|
727
|
+
readonly properties: {
|
|
728
|
+
readonly db: {
|
|
729
|
+
readonly type: "number";
|
|
730
|
+
readonly format: "double";
|
|
731
|
+
readonly nullable: true;
|
|
732
|
+
};
|
|
733
|
+
readonly frontSeven: {
|
|
734
|
+
readonly type: "number";
|
|
735
|
+
readonly format: "double";
|
|
736
|
+
readonly nullable: true;
|
|
737
|
+
};
|
|
738
|
+
readonly total: {
|
|
739
|
+
readonly type: "number";
|
|
740
|
+
readonly format: "double";
|
|
741
|
+
readonly nullable: true;
|
|
742
|
+
};
|
|
743
|
+
};
|
|
744
|
+
readonly required: readonly ["db", "frontSeven", "total"];
|
|
745
|
+
readonly type: "object";
|
|
746
|
+
};
|
|
747
|
+
readonly fieldPosition: {
|
|
748
|
+
readonly properties: {
|
|
749
|
+
readonly averagePredictedPoints: {
|
|
750
|
+
readonly type: "number";
|
|
751
|
+
readonly format: "double";
|
|
752
|
+
readonly nullable: true;
|
|
753
|
+
};
|
|
754
|
+
readonly averageStart: {
|
|
755
|
+
readonly type: "number";
|
|
756
|
+
readonly format: "double";
|
|
757
|
+
readonly nullable: true;
|
|
758
|
+
};
|
|
759
|
+
};
|
|
760
|
+
readonly required: readonly ["averagePredictedPoints", "averageStart"];
|
|
761
|
+
readonly type: "object";
|
|
762
|
+
};
|
|
763
|
+
readonly pointsPerOpportunity: {
|
|
764
|
+
readonly type: "number";
|
|
765
|
+
readonly format: "double";
|
|
766
|
+
};
|
|
767
|
+
readonly totalOpportunies: {
|
|
768
|
+
readonly type: "integer";
|
|
769
|
+
readonly format: "int32";
|
|
770
|
+
};
|
|
771
|
+
readonly openFieldYardsTotal: {
|
|
772
|
+
readonly type: "integer";
|
|
773
|
+
readonly format: "int32";
|
|
774
|
+
};
|
|
775
|
+
readonly openFieldYards: {
|
|
776
|
+
readonly type: "number";
|
|
777
|
+
readonly format: "double";
|
|
778
|
+
};
|
|
779
|
+
readonly secondLevelYardsTotal: {
|
|
780
|
+
readonly type: "integer";
|
|
781
|
+
readonly format: "int32";
|
|
782
|
+
};
|
|
783
|
+
readonly secondLevelYards: {
|
|
784
|
+
readonly type: "number";
|
|
785
|
+
readonly format: "double";
|
|
786
|
+
};
|
|
787
|
+
readonly lineYardsTotal: {
|
|
788
|
+
readonly type: "integer";
|
|
789
|
+
readonly format: "int32";
|
|
790
|
+
};
|
|
791
|
+
readonly lineYards: {
|
|
792
|
+
readonly type: "number";
|
|
793
|
+
readonly format: "double";
|
|
794
|
+
};
|
|
795
|
+
readonly stuffRate: {
|
|
796
|
+
readonly type: "number";
|
|
797
|
+
readonly format: "double";
|
|
798
|
+
};
|
|
799
|
+
readonly powerSuccess: {
|
|
800
|
+
readonly type: "number";
|
|
801
|
+
readonly format: "double";
|
|
802
|
+
};
|
|
803
|
+
readonly explosiveness: {
|
|
804
|
+
readonly type: "number";
|
|
805
|
+
readonly format: "double";
|
|
806
|
+
};
|
|
807
|
+
readonly successRate: {
|
|
808
|
+
readonly type: "number";
|
|
809
|
+
readonly format: "double";
|
|
810
|
+
};
|
|
811
|
+
readonly totalPPA: {
|
|
812
|
+
readonly type: "number";
|
|
813
|
+
readonly format: "double";
|
|
814
|
+
};
|
|
815
|
+
readonly ppa: {
|
|
816
|
+
readonly type: "number";
|
|
817
|
+
readonly format: "double";
|
|
818
|
+
};
|
|
819
|
+
readonly drives: {
|
|
820
|
+
readonly type: "integer";
|
|
821
|
+
readonly format: "int32";
|
|
822
|
+
};
|
|
823
|
+
readonly plays: {
|
|
824
|
+
readonly type: "integer";
|
|
825
|
+
readonly format: "int32";
|
|
826
|
+
};
|
|
827
|
+
};
|
|
828
|
+
readonly required: readonly ["passingPlays", "rushingPlays", "passingDowns", "standardDowns", "havoc", "fieldPosition", "pointsPerOpportunity", "totalOpportunies", "openFieldYardsTotal", "openFieldYards", "secondLevelYardsTotal", "secondLevelYards", "lineYardsTotal", "lineYards", "stuffRate", "powerSuccess", "explosiveness", "successRate", "totalPPA", "ppa", "drives", "plays"];
|
|
829
|
+
readonly type: "object";
|
|
830
|
+
};
|
|
831
|
+
};
|
|
832
|
+
readonly required: readonly ["season", "team", "conference", "offense", "defense"];
|
|
833
|
+
readonly type: "object";
|
|
834
|
+
readonly additionalProperties: false;
|
|
835
|
+
};
|
|
836
|
+
export declare const $AdvancedGameStat: {
|
|
837
|
+
readonly properties: {
|
|
838
|
+
readonly gameId: {
|
|
839
|
+
readonly type: "integer";
|
|
840
|
+
readonly format: "int32";
|
|
841
|
+
};
|
|
842
|
+
readonly season: {
|
|
843
|
+
readonly type: "integer";
|
|
844
|
+
readonly format: "int32";
|
|
845
|
+
};
|
|
846
|
+
readonly week: {
|
|
847
|
+
readonly type: "integer";
|
|
848
|
+
readonly format: "int32";
|
|
849
|
+
};
|
|
850
|
+
readonly team: {
|
|
851
|
+
readonly type: "string";
|
|
852
|
+
};
|
|
853
|
+
readonly opponent: {
|
|
854
|
+
readonly type: "string";
|
|
855
|
+
};
|
|
856
|
+
readonly offense: {
|
|
857
|
+
readonly properties: {
|
|
858
|
+
readonly passingPlays: {
|
|
859
|
+
readonly properties: {
|
|
860
|
+
readonly explosiveness: {
|
|
861
|
+
readonly type: "number";
|
|
862
|
+
readonly format: "double";
|
|
863
|
+
};
|
|
864
|
+
readonly successRate: {
|
|
865
|
+
readonly type: "number";
|
|
866
|
+
readonly format: "double";
|
|
867
|
+
};
|
|
868
|
+
readonly totalPPA: {
|
|
869
|
+
readonly type: "number";
|
|
870
|
+
readonly format: "double";
|
|
871
|
+
};
|
|
872
|
+
readonly ppa: {
|
|
873
|
+
readonly type: "number";
|
|
874
|
+
readonly format: "double";
|
|
875
|
+
};
|
|
876
|
+
};
|
|
877
|
+
readonly required: readonly ["explosiveness", "successRate", "totalPPA", "ppa"];
|
|
878
|
+
readonly type: "object";
|
|
879
|
+
};
|
|
880
|
+
readonly rushingPlays: {
|
|
881
|
+
readonly properties: {
|
|
882
|
+
readonly explosiveness: {
|
|
883
|
+
readonly type: "number";
|
|
884
|
+
readonly format: "double";
|
|
885
|
+
};
|
|
886
|
+
readonly successRate: {
|
|
887
|
+
readonly type: "number";
|
|
888
|
+
readonly format: "double";
|
|
889
|
+
};
|
|
890
|
+
readonly totalPPA: {
|
|
891
|
+
readonly type: "number";
|
|
892
|
+
readonly format: "double";
|
|
893
|
+
};
|
|
894
|
+
readonly ppa: {
|
|
895
|
+
readonly type: "number";
|
|
896
|
+
readonly format: "double";
|
|
897
|
+
};
|
|
898
|
+
};
|
|
899
|
+
readonly required: readonly ["explosiveness", "successRate", "totalPPA", "ppa"];
|
|
900
|
+
readonly type: "object";
|
|
901
|
+
};
|
|
902
|
+
readonly passingDowns: {
|
|
903
|
+
readonly properties: {
|
|
904
|
+
readonly explosiveness: {
|
|
905
|
+
readonly type: "number";
|
|
906
|
+
readonly format: "double";
|
|
907
|
+
};
|
|
908
|
+
readonly successRate: {
|
|
909
|
+
readonly type: "number";
|
|
910
|
+
readonly format: "double";
|
|
911
|
+
};
|
|
912
|
+
readonly ppa: {
|
|
913
|
+
readonly type: "number";
|
|
914
|
+
readonly format: "double";
|
|
915
|
+
};
|
|
916
|
+
};
|
|
917
|
+
readonly required: readonly ["explosiveness", "successRate", "ppa"];
|
|
918
|
+
readonly type: "object";
|
|
919
|
+
};
|
|
920
|
+
readonly standardDowns: {
|
|
921
|
+
readonly properties: {
|
|
922
|
+
readonly explosiveness: {
|
|
923
|
+
readonly type: "number";
|
|
924
|
+
readonly format: "double";
|
|
925
|
+
};
|
|
926
|
+
readonly successRate: {
|
|
927
|
+
readonly type: "number";
|
|
928
|
+
readonly format: "double";
|
|
929
|
+
};
|
|
930
|
+
readonly ppa: {
|
|
931
|
+
readonly type: "number";
|
|
932
|
+
readonly format: "double";
|
|
933
|
+
};
|
|
934
|
+
};
|
|
935
|
+
readonly required: readonly ["explosiveness", "successRate", "ppa"];
|
|
936
|
+
readonly type: "object";
|
|
937
|
+
};
|
|
938
|
+
readonly openFieldYardsTotal: {
|
|
939
|
+
readonly type: "integer";
|
|
940
|
+
readonly format: "int32";
|
|
941
|
+
};
|
|
942
|
+
readonly openFieldYards: {
|
|
943
|
+
readonly type: "number";
|
|
944
|
+
readonly format: "double";
|
|
945
|
+
};
|
|
946
|
+
readonly secondLevelYardsTotal: {
|
|
947
|
+
readonly type: "integer";
|
|
948
|
+
readonly format: "int32";
|
|
949
|
+
};
|
|
950
|
+
readonly secondLevelYards: {
|
|
951
|
+
readonly type: "number";
|
|
952
|
+
readonly format: "double";
|
|
953
|
+
};
|
|
954
|
+
readonly lineYardsTotal: {
|
|
955
|
+
readonly type: "integer";
|
|
956
|
+
readonly format: "int32";
|
|
957
|
+
};
|
|
958
|
+
readonly lineYards: {
|
|
959
|
+
readonly type: "number";
|
|
960
|
+
readonly format: "double";
|
|
961
|
+
};
|
|
962
|
+
readonly stuffRate: {
|
|
963
|
+
readonly type: "number";
|
|
964
|
+
readonly format: "double";
|
|
965
|
+
};
|
|
966
|
+
readonly powerSuccess: {
|
|
967
|
+
readonly type: "number";
|
|
968
|
+
readonly format: "double";
|
|
969
|
+
};
|
|
970
|
+
readonly explosiveness: {
|
|
971
|
+
readonly type: "number";
|
|
972
|
+
readonly format: "double";
|
|
973
|
+
};
|
|
974
|
+
readonly successRate: {
|
|
975
|
+
readonly type: "number";
|
|
976
|
+
readonly format: "double";
|
|
977
|
+
};
|
|
978
|
+
readonly totalPPA: {
|
|
979
|
+
readonly type: "number";
|
|
980
|
+
readonly format: "double";
|
|
981
|
+
};
|
|
982
|
+
readonly ppa: {
|
|
983
|
+
readonly type: "number";
|
|
984
|
+
readonly format: "double";
|
|
985
|
+
};
|
|
986
|
+
readonly drives: {
|
|
987
|
+
readonly type: "integer";
|
|
988
|
+
readonly format: "int32";
|
|
989
|
+
};
|
|
990
|
+
readonly plays: {
|
|
991
|
+
readonly type: "integer";
|
|
992
|
+
readonly format: "int32";
|
|
993
|
+
};
|
|
994
|
+
};
|
|
995
|
+
readonly required: readonly ["passingPlays", "rushingPlays", "passingDowns", "standardDowns", "openFieldYardsTotal", "openFieldYards", "secondLevelYardsTotal", "secondLevelYards", "lineYardsTotal", "lineYards", "stuffRate", "powerSuccess", "explosiveness", "successRate", "totalPPA", "ppa", "drives", "plays"];
|
|
996
|
+
readonly type: "object";
|
|
997
|
+
};
|
|
998
|
+
readonly defense: {
|
|
999
|
+
readonly properties: {
|
|
1000
|
+
readonly passingPlays: {
|
|
1001
|
+
readonly properties: {
|
|
1002
|
+
readonly explosiveness: {
|
|
1003
|
+
readonly type: "number";
|
|
1004
|
+
readonly format: "double";
|
|
1005
|
+
};
|
|
1006
|
+
readonly successRate: {
|
|
1007
|
+
readonly type: "number";
|
|
1008
|
+
readonly format: "double";
|
|
1009
|
+
};
|
|
1010
|
+
readonly totalPPA: {
|
|
1011
|
+
readonly type: "number";
|
|
1012
|
+
readonly format: "double";
|
|
1013
|
+
};
|
|
1014
|
+
readonly ppa: {
|
|
1015
|
+
readonly type: "number";
|
|
1016
|
+
readonly format: "double";
|
|
1017
|
+
};
|
|
1018
|
+
};
|
|
1019
|
+
readonly required: readonly ["explosiveness", "successRate", "totalPPA", "ppa"];
|
|
1020
|
+
readonly type: "object";
|
|
1021
|
+
};
|
|
1022
|
+
readonly rushingPlays: {
|
|
1023
|
+
readonly properties: {
|
|
1024
|
+
readonly explosiveness: {
|
|
1025
|
+
readonly type: "number";
|
|
1026
|
+
readonly format: "double";
|
|
1027
|
+
};
|
|
1028
|
+
readonly successRate: {
|
|
1029
|
+
readonly type: "number";
|
|
1030
|
+
readonly format: "double";
|
|
1031
|
+
};
|
|
1032
|
+
readonly totalPPA: {
|
|
1033
|
+
readonly type: "number";
|
|
1034
|
+
readonly format: "double";
|
|
1035
|
+
};
|
|
1036
|
+
readonly ppa: {
|
|
1037
|
+
readonly type: "number";
|
|
1038
|
+
readonly format: "double";
|
|
1039
|
+
};
|
|
1040
|
+
};
|
|
1041
|
+
readonly required: readonly ["explosiveness", "successRate", "totalPPA", "ppa"];
|
|
1042
|
+
readonly type: "object";
|
|
1043
|
+
};
|
|
1044
|
+
readonly passingDowns: {
|
|
1045
|
+
readonly properties: {
|
|
1046
|
+
readonly explosiveness: {
|
|
1047
|
+
readonly type: "number";
|
|
1048
|
+
readonly format: "double";
|
|
1049
|
+
};
|
|
1050
|
+
readonly successRate: {
|
|
1051
|
+
readonly type: "number";
|
|
1052
|
+
readonly format: "double";
|
|
1053
|
+
};
|
|
1054
|
+
readonly ppa: {
|
|
1055
|
+
readonly type: "number";
|
|
1056
|
+
readonly format: "double";
|
|
1057
|
+
};
|
|
1058
|
+
};
|
|
1059
|
+
readonly required: readonly ["explosiveness", "successRate", "ppa"];
|
|
1060
|
+
readonly type: "object";
|
|
1061
|
+
};
|
|
1062
|
+
readonly standardDowns: {
|
|
1063
|
+
readonly properties: {
|
|
1064
|
+
readonly explosiveness: {
|
|
1065
|
+
readonly type: "number";
|
|
1066
|
+
readonly format: "double";
|
|
1067
|
+
};
|
|
1068
|
+
readonly successRate: {
|
|
1069
|
+
readonly type: "number";
|
|
1070
|
+
readonly format: "double";
|
|
1071
|
+
};
|
|
1072
|
+
readonly ppa: {
|
|
1073
|
+
readonly type: "number";
|
|
1074
|
+
readonly format: "double";
|
|
1075
|
+
};
|
|
1076
|
+
};
|
|
1077
|
+
readonly required: readonly ["explosiveness", "successRate", "ppa"];
|
|
1078
|
+
readonly type: "object";
|
|
1079
|
+
};
|
|
1080
|
+
readonly openFieldYardsTotal: {
|
|
1081
|
+
readonly type: "integer";
|
|
1082
|
+
readonly format: "int32";
|
|
1083
|
+
};
|
|
1084
|
+
readonly openFieldYards: {
|
|
1085
|
+
readonly type: "number";
|
|
1086
|
+
readonly format: "double";
|
|
1087
|
+
};
|
|
1088
|
+
readonly secondLevelYardsTotal: {
|
|
1089
|
+
readonly type: "integer";
|
|
1090
|
+
readonly format: "int32";
|
|
1091
|
+
};
|
|
1092
|
+
readonly secondLevelYards: {
|
|
1093
|
+
readonly type: "number";
|
|
1094
|
+
readonly format: "double";
|
|
1095
|
+
};
|
|
1096
|
+
readonly lineYardsTotal: {
|
|
1097
|
+
readonly type: "integer";
|
|
1098
|
+
readonly format: "int32";
|
|
1099
|
+
};
|
|
1100
|
+
readonly lineYards: {
|
|
1101
|
+
readonly type: "number";
|
|
1102
|
+
readonly format: "double";
|
|
1103
|
+
};
|
|
1104
|
+
readonly stuffRate: {
|
|
1105
|
+
readonly type: "number";
|
|
1106
|
+
readonly format: "double";
|
|
1107
|
+
};
|
|
1108
|
+
readonly powerSuccess: {
|
|
1109
|
+
readonly type: "number";
|
|
1110
|
+
readonly format: "double";
|
|
1111
|
+
};
|
|
1112
|
+
readonly explosiveness: {
|
|
1113
|
+
readonly type: "number";
|
|
1114
|
+
readonly format: "double";
|
|
1115
|
+
};
|
|
1116
|
+
readonly successRate: {
|
|
1117
|
+
readonly type: "number";
|
|
1118
|
+
readonly format: "double";
|
|
1119
|
+
};
|
|
1120
|
+
readonly totalPPA: {
|
|
1121
|
+
readonly type: "number";
|
|
1122
|
+
readonly format: "double";
|
|
1123
|
+
};
|
|
1124
|
+
readonly ppa: {
|
|
1125
|
+
readonly type: "number";
|
|
1126
|
+
readonly format: "double";
|
|
1127
|
+
};
|
|
1128
|
+
readonly drives: {
|
|
1129
|
+
readonly type: "integer";
|
|
1130
|
+
readonly format: "int32";
|
|
1131
|
+
};
|
|
1132
|
+
readonly plays: {
|
|
1133
|
+
readonly type: "integer";
|
|
1134
|
+
readonly format: "int32";
|
|
1135
|
+
};
|
|
1136
|
+
};
|
|
1137
|
+
readonly required: readonly ["passingPlays", "rushingPlays", "passingDowns", "standardDowns", "openFieldYardsTotal", "openFieldYards", "secondLevelYardsTotal", "secondLevelYards", "lineYardsTotal", "lineYards", "stuffRate", "powerSuccess", "explosiveness", "successRate", "totalPPA", "ppa", "drives", "plays"];
|
|
1138
|
+
readonly type: "object";
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
readonly required: readonly ["gameId", "season", "week", "team", "opponent", "offense", "defense"];
|
|
1142
|
+
readonly type: "object";
|
|
1143
|
+
readonly additionalProperties: false;
|
|
1144
|
+
};
|
|
1145
|
+
export declare const $RecruitClassification: {
|
|
1146
|
+
readonly enum: readonly ["JUCO", "PrepSchool", "HighSchool"];
|
|
1147
|
+
readonly type: "string";
|
|
1148
|
+
};
|
|
1149
|
+
export declare const $Recruit: {
|
|
1150
|
+
readonly properties: {
|
|
1151
|
+
readonly id: {
|
|
1152
|
+
readonly type: "string";
|
|
1153
|
+
};
|
|
1154
|
+
readonly athleteId: {
|
|
1155
|
+
readonly type: "string";
|
|
1156
|
+
readonly nullable: true;
|
|
1157
|
+
};
|
|
1158
|
+
readonly recruitType: {
|
|
1159
|
+
readonly $ref: "#/components/schemas/RecruitClassification";
|
|
1160
|
+
};
|
|
1161
|
+
readonly year: {
|
|
1162
|
+
readonly type: "integer";
|
|
1163
|
+
readonly format: "int32";
|
|
1164
|
+
};
|
|
1165
|
+
readonly ranking: {
|
|
1166
|
+
readonly type: "integer";
|
|
1167
|
+
readonly format: "int32";
|
|
1168
|
+
readonly nullable: true;
|
|
1169
|
+
};
|
|
1170
|
+
readonly name: {
|
|
1171
|
+
readonly type: "string";
|
|
1172
|
+
};
|
|
1173
|
+
readonly school: {
|
|
1174
|
+
readonly type: "string";
|
|
1175
|
+
readonly nullable: true;
|
|
1176
|
+
};
|
|
1177
|
+
readonly committedTo: {
|
|
1178
|
+
readonly type: "string";
|
|
1179
|
+
readonly nullable: true;
|
|
1180
|
+
};
|
|
1181
|
+
readonly position: {
|
|
1182
|
+
readonly type: "string";
|
|
1183
|
+
readonly nullable: true;
|
|
1184
|
+
};
|
|
1185
|
+
readonly height: {
|
|
1186
|
+
readonly type: "integer";
|
|
1187
|
+
readonly format: "int32";
|
|
1188
|
+
readonly nullable: true;
|
|
1189
|
+
};
|
|
1190
|
+
readonly weight: {
|
|
1191
|
+
readonly type: "integer";
|
|
1192
|
+
readonly format: "int32";
|
|
1193
|
+
readonly nullable: true;
|
|
1194
|
+
};
|
|
1195
|
+
readonly stars: {
|
|
1196
|
+
readonly type: "integer";
|
|
1197
|
+
readonly format: "int32";
|
|
1198
|
+
};
|
|
1199
|
+
readonly rating: {
|
|
1200
|
+
readonly type: "number";
|
|
1201
|
+
readonly format: "double";
|
|
1202
|
+
};
|
|
1203
|
+
readonly city: {
|
|
1204
|
+
readonly type: "string";
|
|
1205
|
+
readonly nullable: true;
|
|
1206
|
+
};
|
|
1207
|
+
readonly stateProvince: {
|
|
1208
|
+
readonly type: "string";
|
|
1209
|
+
readonly nullable: true;
|
|
1210
|
+
};
|
|
1211
|
+
readonly country: {
|
|
1212
|
+
readonly type: "string";
|
|
1213
|
+
readonly nullable: true;
|
|
1214
|
+
};
|
|
1215
|
+
readonly hometownInfo: {
|
|
1216
|
+
readonly properties: {
|
|
1217
|
+
readonly fipsCode: {
|
|
1218
|
+
readonly type: "string";
|
|
1219
|
+
readonly nullable: true;
|
|
1220
|
+
};
|
|
1221
|
+
readonly longitude: {
|
|
1222
|
+
readonly type: "number";
|
|
1223
|
+
readonly format: "double";
|
|
1224
|
+
readonly nullable: true;
|
|
1225
|
+
};
|
|
1226
|
+
readonly latitude: {
|
|
1227
|
+
readonly type: "number";
|
|
1228
|
+
readonly format: "double";
|
|
1229
|
+
readonly nullable: true;
|
|
1230
|
+
};
|
|
1231
|
+
};
|
|
1232
|
+
readonly required: readonly ["fipsCode", "longitude", "latitude"];
|
|
1233
|
+
readonly type: "object";
|
|
1234
|
+
};
|
|
1235
|
+
};
|
|
1236
|
+
readonly required: readonly ["id", "athleteId", "recruitType", "year", "ranking", "name", "school", "committedTo", "position", "height", "weight", "stars", "rating", "city", "stateProvince", "country", "hometownInfo"];
|
|
1237
|
+
readonly type: "object";
|
|
1238
|
+
readonly additionalProperties: false;
|
|
1239
|
+
};
|
|
1240
|
+
export declare const $TeamRecruitingRanking: {
|
|
1241
|
+
readonly properties: {
|
|
1242
|
+
readonly year: {
|
|
1243
|
+
readonly type: "integer";
|
|
1244
|
+
readonly format: "int32";
|
|
1245
|
+
};
|
|
1246
|
+
readonly rank: {
|
|
1247
|
+
readonly type: "integer";
|
|
1248
|
+
readonly format: "int32";
|
|
1249
|
+
};
|
|
1250
|
+
readonly team: {
|
|
1251
|
+
readonly type: "string";
|
|
1252
|
+
};
|
|
1253
|
+
readonly points: {
|
|
1254
|
+
readonly type: "number";
|
|
1255
|
+
readonly format: "double";
|
|
1256
|
+
};
|
|
1257
|
+
};
|
|
1258
|
+
readonly required: readonly ["year", "rank", "team", "points"];
|
|
1259
|
+
readonly type: "object";
|
|
1260
|
+
readonly additionalProperties: false;
|
|
1261
|
+
};
|
|
1262
|
+
export declare const $AggregatedTeamRecruiting: {
|
|
1263
|
+
readonly properties: {
|
|
1264
|
+
readonly team: {
|
|
1265
|
+
readonly type: "string";
|
|
1266
|
+
};
|
|
1267
|
+
readonly conference: {
|
|
1268
|
+
readonly type: "string";
|
|
1269
|
+
};
|
|
1270
|
+
readonly positionGroup: {
|
|
1271
|
+
readonly type: "string";
|
|
1272
|
+
readonly nullable: true;
|
|
1273
|
+
};
|
|
1274
|
+
readonly averageRating: {
|
|
1275
|
+
readonly type: "number";
|
|
1276
|
+
readonly format: "double";
|
|
1277
|
+
};
|
|
1278
|
+
readonly totalRating: {
|
|
1279
|
+
readonly type: "number";
|
|
1280
|
+
readonly format: "double";
|
|
1281
|
+
};
|
|
1282
|
+
readonly commits: {
|
|
1283
|
+
readonly type: "integer";
|
|
1284
|
+
readonly format: "int32";
|
|
1285
|
+
};
|
|
1286
|
+
readonly averageStars: {
|
|
1287
|
+
readonly type: "number";
|
|
1288
|
+
readonly format: "double";
|
|
1289
|
+
};
|
|
1290
|
+
};
|
|
1291
|
+
readonly required: readonly ["team", "conference", "positionGroup", "averageRating", "totalRating", "commits", "averageStars"];
|
|
1292
|
+
readonly type: "object";
|
|
1293
|
+
readonly additionalProperties: false;
|
|
1294
|
+
};
|
|
1295
|
+
export declare const $TeamSP: {
|
|
1296
|
+
readonly properties: {
|
|
1297
|
+
readonly year: {
|
|
1298
|
+
readonly type: "integer";
|
|
1299
|
+
readonly format: "int32";
|
|
1300
|
+
};
|
|
1301
|
+
readonly team: {
|
|
1302
|
+
readonly type: "string";
|
|
1303
|
+
};
|
|
1304
|
+
readonly conference: {
|
|
1305
|
+
readonly type: "string";
|
|
1306
|
+
};
|
|
1307
|
+
readonly rating: {
|
|
1308
|
+
readonly type: "number";
|
|
1309
|
+
readonly format: "double";
|
|
1310
|
+
};
|
|
1311
|
+
readonly ranking: {
|
|
1312
|
+
readonly type: "integer";
|
|
1313
|
+
readonly format: "int32";
|
|
1314
|
+
};
|
|
1315
|
+
readonly secondOrderWins: {
|
|
1316
|
+
readonly type: "number";
|
|
1317
|
+
readonly format: "double";
|
|
1318
|
+
readonly nullable: true;
|
|
1319
|
+
};
|
|
1320
|
+
readonly sos: {
|
|
1321
|
+
readonly type: "number";
|
|
1322
|
+
readonly format: "double";
|
|
1323
|
+
readonly nullable: true;
|
|
1324
|
+
};
|
|
1325
|
+
readonly offense: {
|
|
1326
|
+
readonly properties: {
|
|
1327
|
+
readonly pace: {
|
|
1328
|
+
readonly type: "number";
|
|
1329
|
+
readonly format: "double";
|
|
1330
|
+
readonly nullable: true;
|
|
1331
|
+
};
|
|
1332
|
+
readonly runRate: {
|
|
1333
|
+
readonly type: "number";
|
|
1334
|
+
readonly format: "double";
|
|
1335
|
+
readonly nullable: true;
|
|
1336
|
+
};
|
|
1337
|
+
readonly passingDowns: {
|
|
1338
|
+
readonly type: "number";
|
|
1339
|
+
readonly format: "double";
|
|
1340
|
+
readonly nullable: true;
|
|
1341
|
+
};
|
|
1342
|
+
readonly standardDowns: {
|
|
1343
|
+
readonly type: "number";
|
|
1344
|
+
readonly format: "double";
|
|
1345
|
+
readonly nullable: true;
|
|
1346
|
+
};
|
|
1347
|
+
readonly passing: {
|
|
1348
|
+
readonly type: "number";
|
|
1349
|
+
readonly format: "double";
|
|
1350
|
+
readonly nullable: true;
|
|
1351
|
+
};
|
|
1352
|
+
readonly rushing: {
|
|
1353
|
+
readonly type: "number";
|
|
1354
|
+
readonly format: "double";
|
|
1355
|
+
readonly nullable: true;
|
|
1356
|
+
};
|
|
1357
|
+
readonly explosiveness: {
|
|
1358
|
+
readonly type: "number";
|
|
1359
|
+
readonly format: "double";
|
|
1360
|
+
readonly nullable: true;
|
|
1361
|
+
};
|
|
1362
|
+
readonly success: {
|
|
1363
|
+
readonly type: "number";
|
|
1364
|
+
readonly format: "double";
|
|
1365
|
+
readonly nullable: true;
|
|
1366
|
+
};
|
|
1367
|
+
readonly rating: {
|
|
1368
|
+
readonly type: "number";
|
|
1369
|
+
readonly format: "double";
|
|
1370
|
+
};
|
|
1371
|
+
readonly ranking: {
|
|
1372
|
+
readonly type: "integer";
|
|
1373
|
+
readonly format: "int32";
|
|
1374
|
+
};
|
|
1375
|
+
};
|
|
1376
|
+
readonly required: readonly ["pace", "runRate", "passingDowns", "standardDowns", "passing", "rushing", "explosiveness", "success", "rating", "ranking"];
|
|
1377
|
+
readonly type: "object";
|
|
1378
|
+
};
|
|
1379
|
+
readonly defense: {
|
|
1380
|
+
readonly properties: {
|
|
1381
|
+
readonly havoc: {
|
|
1382
|
+
readonly properties: {
|
|
1383
|
+
readonly db: {
|
|
1384
|
+
readonly type: "number";
|
|
1385
|
+
readonly format: "double";
|
|
1386
|
+
readonly nullable: true;
|
|
1387
|
+
};
|
|
1388
|
+
readonly frontSeven: {
|
|
1389
|
+
readonly type: "number";
|
|
1390
|
+
readonly format: "double";
|
|
1391
|
+
readonly nullable: true;
|
|
1392
|
+
};
|
|
1393
|
+
readonly total: {
|
|
1394
|
+
readonly type: "number";
|
|
1395
|
+
readonly format: "double";
|
|
1396
|
+
readonly nullable: true;
|
|
1397
|
+
};
|
|
1398
|
+
};
|
|
1399
|
+
readonly required: readonly ["db", "frontSeven", "total"];
|
|
1400
|
+
readonly type: "object";
|
|
1401
|
+
};
|
|
1402
|
+
readonly passingDowns: {
|
|
1403
|
+
readonly type: "number";
|
|
1404
|
+
readonly format: "double";
|
|
1405
|
+
readonly nullable: true;
|
|
1406
|
+
};
|
|
1407
|
+
readonly standardDowns: {
|
|
1408
|
+
readonly type: "number";
|
|
1409
|
+
readonly format: "double";
|
|
1410
|
+
readonly nullable: true;
|
|
1411
|
+
};
|
|
1412
|
+
readonly passing: {
|
|
1413
|
+
readonly type: "number";
|
|
1414
|
+
readonly format: "double";
|
|
1415
|
+
readonly nullable: true;
|
|
1416
|
+
};
|
|
1417
|
+
readonly rushing: {
|
|
1418
|
+
readonly type: "number";
|
|
1419
|
+
readonly format: "double";
|
|
1420
|
+
readonly nullable: true;
|
|
1421
|
+
};
|
|
1422
|
+
readonly explosiveness: {
|
|
1423
|
+
readonly type: "number";
|
|
1424
|
+
readonly format: "double";
|
|
1425
|
+
readonly nullable: true;
|
|
1426
|
+
};
|
|
1427
|
+
readonly success: {
|
|
1428
|
+
readonly type: "number";
|
|
1429
|
+
readonly format: "double";
|
|
1430
|
+
readonly nullable: true;
|
|
1431
|
+
};
|
|
1432
|
+
readonly rating: {
|
|
1433
|
+
readonly type: "number";
|
|
1434
|
+
readonly format: "double";
|
|
1435
|
+
};
|
|
1436
|
+
readonly ranking: {
|
|
1437
|
+
readonly type: "integer";
|
|
1438
|
+
readonly format: "int32";
|
|
1439
|
+
};
|
|
1440
|
+
};
|
|
1441
|
+
readonly required: readonly ["havoc", "passingDowns", "standardDowns", "passing", "rushing", "explosiveness", "success", "rating", "ranking"];
|
|
1442
|
+
readonly type: "object";
|
|
1443
|
+
};
|
|
1444
|
+
readonly specialTeams: {
|
|
1445
|
+
readonly properties: {
|
|
1446
|
+
readonly rating: {
|
|
1447
|
+
readonly type: "number";
|
|
1448
|
+
readonly format: "double";
|
|
1449
|
+
readonly nullable: true;
|
|
1450
|
+
};
|
|
1451
|
+
};
|
|
1452
|
+
readonly required: readonly ["rating"];
|
|
1453
|
+
readonly type: "object";
|
|
1454
|
+
};
|
|
1455
|
+
};
|
|
1456
|
+
readonly required: readonly ["year", "team", "conference", "rating", "ranking", "secondOrderWins", "sos", "offense", "defense", "specialTeams"];
|
|
1457
|
+
readonly type: "object";
|
|
1458
|
+
readonly additionalProperties: false;
|
|
1459
|
+
};
|
|
1460
|
+
export declare const $ConferenceSP: {
|
|
1461
|
+
readonly properties: {
|
|
1462
|
+
readonly year: {
|
|
1463
|
+
readonly type: "integer";
|
|
1464
|
+
readonly format: "int32";
|
|
1465
|
+
};
|
|
1466
|
+
readonly conference: {
|
|
1467
|
+
readonly type: "string";
|
|
1468
|
+
};
|
|
1469
|
+
readonly rating: {
|
|
1470
|
+
readonly type: "number";
|
|
1471
|
+
readonly format: "double";
|
|
1472
|
+
};
|
|
1473
|
+
readonly secondOrderWins: {
|
|
1474
|
+
readonly type: "number";
|
|
1475
|
+
readonly format: "double";
|
|
1476
|
+
readonly nullable: true;
|
|
1477
|
+
};
|
|
1478
|
+
readonly sos: {
|
|
1479
|
+
readonly type: "number";
|
|
1480
|
+
readonly format: "double";
|
|
1481
|
+
readonly nullable: true;
|
|
1482
|
+
};
|
|
1483
|
+
readonly offense: {
|
|
1484
|
+
readonly properties: {
|
|
1485
|
+
readonly pace: {
|
|
1486
|
+
readonly type: "number";
|
|
1487
|
+
readonly format: "double";
|
|
1488
|
+
readonly nullable: true;
|
|
1489
|
+
};
|
|
1490
|
+
readonly runRate: {
|
|
1491
|
+
readonly type: "number";
|
|
1492
|
+
readonly format: "double";
|
|
1493
|
+
readonly nullable: true;
|
|
1494
|
+
};
|
|
1495
|
+
readonly passingDowns: {
|
|
1496
|
+
readonly type: "number";
|
|
1497
|
+
readonly format: "double";
|
|
1498
|
+
readonly nullable: true;
|
|
1499
|
+
};
|
|
1500
|
+
readonly standardDowns: {
|
|
1501
|
+
readonly type: "number";
|
|
1502
|
+
readonly format: "double";
|
|
1503
|
+
readonly nullable: true;
|
|
1504
|
+
};
|
|
1505
|
+
readonly passing: {
|
|
1506
|
+
readonly type: "number";
|
|
1507
|
+
readonly format: "double";
|
|
1508
|
+
readonly nullable: true;
|
|
1509
|
+
};
|
|
1510
|
+
readonly rushing: {
|
|
1511
|
+
readonly type: "number";
|
|
1512
|
+
readonly format: "double";
|
|
1513
|
+
readonly nullable: true;
|
|
1514
|
+
};
|
|
1515
|
+
readonly explosiveness: {
|
|
1516
|
+
readonly type: "number";
|
|
1517
|
+
readonly format: "double";
|
|
1518
|
+
readonly nullable: true;
|
|
1519
|
+
};
|
|
1520
|
+
readonly success: {
|
|
1521
|
+
readonly type: "number";
|
|
1522
|
+
readonly format: "double";
|
|
1523
|
+
readonly nullable: true;
|
|
1524
|
+
};
|
|
1525
|
+
readonly rating: {
|
|
1526
|
+
readonly type: "number";
|
|
1527
|
+
readonly format: "double";
|
|
1528
|
+
};
|
|
1529
|
+
};
|
|
1530
|
+
readonly required: readonly ["pace", "runRate", "passingDowns", "standardDowns", "passing", "rushing", "explosiveness", "success", "rating"];
|
|
1531
|
+
readonly type: "object";
|
|
1532
|
+
};
|
|
1533
|
+
readonly defense: {
|
|
1534
|
+
readonly properties: {
|
|
1535
|
+
readonly havoc: {
|
|
1536
|
+
readonly properties: {
|
|
1537
|
+
readonly db: {
|
|
1538
|
+
readonly type: "number";
|
|
1539
|
+
readonly format: "double";
|
|
1540
|
+
readonly nullable: true;
|
|
1541
|
+
};
|
|
1542
|
+
readonly frontSeven: {
|
|
1543
|
+
readonly type: "number";
|
|
1544
|
+
readonly format: "double";
|
|
1545
|
+
readonly nullable: true;
|
|
1546
|
+
};
|
|
1547
|
+
readonly total: {
|
|
1548
|
+
readonly type: "number";
|
|
1549
|
+
readonly format: "double";
|
|
1550
|
+
readonly nullable: true;
|
|
1551
|
+
};
|
|
1552
|
+
};
|
|
1553
|
+
readonly required: readonly ["db", "frontSeven", "total"];
|
|
1554
|
+
readonly type: "object";
|
|
1555
|
+
};
|
|
1556
|
+
readonly passingDowns: {
|
|
1557
|
+
readonly type: "number";
|
|
1558
|
+
readonly format: "double";
|
|
1559
|
+
readonly nullable: true;
|
|
1560
|
+
};
|
|
1561
|
+
readonly standardDowns: {
|
|
1562
|
+
readonly type: "number";
|
|
1563
|
+
readonly format: "double";
|
|
1564
|
+
readonly nullable: true;
|
|
1565
|
+
};
|
|
1566
|
+
readonly passing: {
|
|
1567
|
+
readonly type: "number";
|
|
1568
|
+
readonly format: "double";
|
|
1569
|
+
readonly nullable: true;
|
|
1570
|
+
};
|
|
1571
|
+
readonly rushing: {
|
|
1572
|
+
readonly type: "number";
|
|
1573
|
+
readonly format: "double";
|
|
1574
|
+
readonly nullable: true;
|
|
1575
|
+
};
|
|
1576
|
+
readonly explosiveness: {
|
|
1577
|
+
readonly type: "number";
|
|
1578
|
+
readonly format: "double";
|
|
1579
|
+
readonly nullable: true;
|
|
1580
|
+
};
|
|
1581
|
+
readonly success: {
|
|
1582
|
+
readonly type: "number";
|
|
1583
|
+
readonly format: "double";
|
|
1584
|
+
readonly nullable: true;
|
|
1585
|
+
};
|
|
1586
|
+
readonly rating: {
|
|
1587
|
+
readonly type: "number";
|
|
1588
|
+
readonly format: "double";
|
|
1589
|
+
};
|
|
1590
|
+
};
|
|
1591
|
+
readonly required: readonly ["havoc", "passingDowns", "standardDowns", "passing", "rushing", "explosiveness", "success", "rating"];
|
|
1592
|
+
readonly type: "object";
|
|
1593
|
+
};
|
|
1594
|
+
readonly specialTeams: {
|
|
1595
|
+
readonly properties: {
|
|
1596
|
+
readonly rating: {
|
|
1597
|
+
readonly type: "number";
|
|
1598
|
+
readonly format: "double";
|
|
1599
|
+
readonly nullable: true;
|
|
1600
|
+
};
|
|
1601
|
+
};
|
|
1602
|
+
readonly required: readonly ["rating"];
|
|
1603
|
+
readonly type: "object";
|
|
1604
|
+
};
|
|
1605
|
+
};
|
|
1606
|
+
readonly required: readonly ["year", "conference", "rating", "secondOrderWins", "sos", "offense", "defense", "specialTeams"];
|
|
1607
|
+
readonly type: "object";
|
|
1608
|
+
readonly additionalProperties: false;
|
|
1609
|
+
};
|
|
1610
|
+
export declare const $TeamSRS: {
|
|
1611
|
+
readonly properties: {
|
|
1612
|
+
readonly year: {
|
|
1613
|
+
readonly type: "integer";
|
|
1614
|
+
readonly format: "int32";
|
|
1615
|
+
};
|
|
1616
|
+
readonly team: {
|
|
1617
|
+
readonly type: "string";
|
|
1618
|
+
};
|
|
1619
|
+
readonly conference: {
|
|
1620
|
+
readonly type: "string";
|
|
1621
|
+
readonly nullable: true;
|
|
1622
|
+
};
|
|
1623
|
+
readonly division: {
|
|
1624
|
+
readonly type: "string";
|
|
1625
|
+
readonly nullable: true;
|
|
1626
|
+
};
|
|
1627
|
+
readonly rating: {
|
|
1628
|
+
readonly type: "number";
|
|
1629
|
+
readonly format: "double";
|
|
1630
|
+
};
|
|
1631
|
+
readonly ranking: {
|
|
1632
|
+
readonly type: "integer";
|
|
1633
|
+
readonly format: "int32";
|
|
1634
|
+
};
|
|
1635
|
+
};
|
|
1636
|
+
readonly required: readonly ["year", "team", "conference", "division", "rating", "ranking"];
|
|
1637
|
+
readonly type: "object";
|
|
1638
|
+
readonly additionalProperties: false;
|
|
1639
|
+
};
|
|
1640
|
+
export declare const $TeamElo: {
|
|
1641
|
+
readonly properties: {
|
|
1642
|
+
readonly year: {
|
|
1643
|
+
readonly type: "integer";
|
|
1644
|
+
readonly format: "int32";
|
|
1645
|
+
};
|
|
1646
|
+
readonly team: {
|
|
1647
|
+
readonly type: "string";
|
|
1648
|
+
};
|
|
1649
|
+
readonly conference: {
|
|
1650
|
+
readonly type: "string";
|
|
1651
|
+
};
|
|
1652
|
+
readonly elo: {
|
|
1653
|
+
readonly type: "integer";
|
|
1654
|
+
readonly format: "int32";
|
|
1655
|
+
readonly nullable: true;
|
|
1656
|
+
};
|
|
1657
|
+
};
|
|
1658
|
+
readonly required: readonly ["year", "team", "conference", "elo"];
|
|
1659
|
+
readonly type: "object";
|
|
1660
|
+
readonly additionalProperties: false;
|
|
1661
|
+
};
|
|
1662
|
+
export declare const $TeamFPI: {
|
|
1663
|
+
readonly properties: {
|
|
1664
|
+
readonly year: {
|
|
1665
|
+
readonly type: "integer";
|
|
1666
|
+
readonly format: "int32";
|
|
1667
|
+
};
|
|
1668
|
+
readonly team: {
|
|
1669
|
+
readonly type: "string";
|
|
1670
|
+
};
|
|
1671
|
+
readonly conference: {
|
|
1672
|
+
readonly type: "string";
|
|
1673
|
+
readonly nullable: true;
|
|
1674
|
+
};
|
|
1675
|
+
readonly fpi: {
|
|
1676
|
+
readonly type: "number";
|
|
1677
|
+
readonly format: "double";
|
|
1678
|
+
readonly nullable: true;
|
|
1679
|
+
};
|
|
1680
|
+
readonly resumeRanks: {
|
|
1681
|
+
readonly properties: {
|
|
1682
|
+
readonly gameControl: {
|
|
1683
|
+
readonly type: "integer";
|
|
1684
|
+
readonly format: "int32";
|
|
1685
|
+
readonly nullable: true;
|
|
1686
|
+
};
|
|
1687
|
+
readonly remainingStrengthOfSchedule: {
|
|
1688
|
+
readonly type: "integer";
|
|
1689
|
+
readonly format: "int32";
|
|
1690
|
+
readonly nullable: true;
|
|
1691
|
+
};
|
|
1692
|
+
readonly strengthOfSchedule: {
|
|
1693
|
+
readonly type: "integer";
|
|
1694
|
+
readonly format: "int32";
|
|
1695
|
+
readonly nullable: true;
|
|
1696
|
+
};
|
|
1697
|
+
readonly averageWinProbability: {
|
|
1698
|
+
readonly type: "integer";
|
|
1699
|
+
readonly format: "int32";
|
|
1700
|
+
readonly nullable: true;
|
|
1701
|
+
};
|
|
1702
|
+
readonly fpi: {
|
|
1703
|
+
readonly type: "integer";
|
|
1704
|
+
readonly format: "int32";
|
|
1705
|
+
readonly nullable: true;
|
|
1706
|
+
};
|
|
1707
|
+
readonly strengthOfRecord: {
|
|
1708
|
+
readonly type: "integer";
|
|
1709
|
+
readonly format: "int32";
|
|
1710
|
+
readonly nullable: true;
|
|
1711
|
+
};
|
|
1712
|
+
};
|
|
1713
|
+
readonly required: readonly ["gameControl", "remainingStrengthOfSchedule", "strengthOfSchedule", "averageWinProbability", "fpi", "strengthOfRecord"];
|
|
1714
|
+
readonly type: "object";
|
|
1715
|
+
};
|
|
1716
|
+
readonly efficiencies: {
|
|
1717
|
+
readonly properties: {
|
|
1718
|
+
readonly specialTeams: {
|
|
1719
|
+
readonly type: "number";
|
|
1720
|
+
readonly format: "double";
|
|
1721
|
+
readonly nullable: true;
|
|
1722
|
+
};
|
|
1723
|
+
readonly defense: {
|
|
1724
|
+
readonly type: "number";
|
|
1725
|
+
readonly format: "double";
|
|
1726
|
+
readonly nullable: true;
|
|
1727
|
+
};
|
|
1728
|
+
readonly offense: {
|
|
1729
|
+
readonly type: "number";
|
|
1730
|
+
readonly format: "double";
|
|
1731
|
+
readonly nullable: true;
|
|
1732
|
+
};
|
|
1733
|
+
readonly overall: {
|
|
1734
|
+
readonly type: "number";
|
|
1735
|
+
readonly format: "double";
|
|
1736
|
+
readonly nullable: true;
|
|
1737
|
+
};
|
|
1738
|
+
};
|
|
1739
|
+
readonly required: readonly ["specialTeams", "defense", "offense", "overall"];
|
|
1740
|
+
readonly type: "object";
|
|
1741
|
+
};
|
|
1742
|
+
};
|
|
1743
|
+
readonly required: readonly ["year", "team", "conference", "fpi", "resumeRanks", "efficiencies"];
|
|
1744
|
+
readonly type: "object";
|
|
1745
|
+
readonly additionalProperties: false;
|
|
1746
|
+
};
|
|
1747
|
+
export declare const $PollRank: {
|
|
1748
|
+
readonly properties: {
|
|
1749
|
+
readonly rank: {
|
|
1750
|
+
readonly type: "integer";
|
|
1751
|
+
readonly format: "int32";
|
|
1752
|
+
readonly nullable: true;
|
|
1753
|
+
};
|
|
1754
|
+
readonly school: {
|
|
1755
|
+
readonly type: "string";
|
|
1756
|
+
};
|
|
1757
|
+
readonly conference: {
|
|
1758
|
+
readonly type: "string";
|
|
1759
|
+
readonly nullable: true;
|
|
1760
|
+
};
|
|
1761
|
+
readonly firstPlaceVotes: {
|
|
1762
|
+
readonly type: "integer";
|
|
1763
|
+
readonly format: "int32";
|
|
1764
|
+
readonly nullable: true;
|
|
1765
|
+
};
|
|
1766
|
+
readonly points: {
|
|
1767
|
+
readonly type: "integer";
|
|
1768
|
+
readonly format: "int32";
|
|
1769
|
+
readonly nullable: true;
|
|
1770
|
+
};
|
|
1771
|
+
};
|
|
1772
|
+
readonly required: readonly ["rank", "school", "conference", "firstPlaceVotes", "points"];
|
|
1773
|
+
readonly type: "object";
|
|
1774
|
+
readonly additionalProperties: false;
|
|
1775
|
+
};
|
|
1776
|
+
export declare const $Poll: {
|
|
1777
|
+
readonly properties: {
|
|
1778
|
+
readonly poll: {
|
|
1779
|
+
readonly type: "string";
|
|
1780
|
+
};
|
|
1781
|
+
readonly ranks: {
|
|
1782
|
+
readonly items: {
|
|
1783
|
+
readonly $ref: "#/components/schemas/PollRank";
|
|
1784
|
+
};
|
|
1785
|
+
readonly type: "array";
|
|
1786
|
+
};
|
|
1787
|
+
};
|
|
1788
|
+
readonly required: readonly ["poll", "ranks"];
|
|
1789
|
+
readonly type: "object";
|
|
1790
|
+
readonly additionalProperties: false;
|
|
1791
|
+
};
|
|
1792
|
+
export declare const $PollWeek: {
|
|
1793
|
+
readonly properties: {
|
|
1794
|
+
readonly season: {
|
|
1795
|
+
readonly type: "integer";
|
|
1796
|
+
readonly format: "int32";
|
|
1797
|
+
};
|
|
1798
|
+
readonly seasonType: {
|
|
1799
|
+
readonly $ref: "#/components/schemas/SeasonType";
|
|
1800
|
+
};
|
|
1801
|
+
readonly week: {
|
|
1802
|
+
readonly type: "integer";
|
|
1803
|
+
readonly format: "int32";
|
|
1804
|
+
};
|
|
1805
|
+
readonly polls: {
|
|
1806
|
+
readonly items: {
|
|
1807
|
+
readonly $ref: "#/components/schemas/Poll";
|
|
1808
|
+
};
|
|
1809
|
+
readonly type: "array";
|
|
1810
|
+
};
|
|
1811
|
+
};
|
|
1812
|
+
readonly required: readonly ["season", "seasonType", "week", "polls"];
|
|
1813
|
+
readonly type: "object";
|
|
1814
|
+
readonly additionalProperties: false;
|
|
1815
|
+
};
|
|
1816
|
+
export declare const $Play: {
|
|
1817
|
+
readonly properties: {
|
|
1818
|
+
readonly id: {
|
|
1819
|
+
readonly type: "string";
|
|
1820
|
+
};
|
|
1821
|
+
readonly driveId: {
|
|
1822
|
+
readonly type: "string";
|
|
1823
|
+
};
|
|
1824
|
+
readonly gameId: {
|
|
1825
|
+
readonly type: "integer";
|
|
1826
|
+
readonly format: "int32";
|
|
1827
|
+
};
|
|
1828
|
+
readonly driveNumber: {
|
|
1829
|
+
readonly type: "integer";
|
|
1830
|
+
readonly format: "int32";
|
|
1831
|
+
readonly nullable: true;
|
|
1832
|
+
};
|
|
1833
|
+
readonly playNumber: {
|
|
1834
|
+
readonly type: "integer";
|
|
1835
|
+
readonly format: "int32";
|
|
1836
|
+
readonly nullable: true;
|
|
1837
|
+
};
|
|
1838
|
+
readonly offense: {
|
|
1839
|
+
readonly type: "string";
|
|
1840
|
+
};
|
|
1841
|
+
readonly offenseConference: {
|
|
1842
|
+
readonly type: "string";
|
|
1843
|
+
readonly nullable: true;
|
|
1844
|
+
};
|
|
1845
|
+
readonly offenseScore: {
|
|
1846
|
+
readonly type: "integer";
|
|
1847
|
+
readonly format: "int32";
|
|
1848
|
+
};
|
|
1849
|
+
readonly defense: {
|
|
1850
|
+
readonly type: "string";
|
|
1851
|
+
};
|
|
1852
|
+
readonly home: {
|
|
1853
|
+
readonly type: "string";
|
|
1854
|
+
};
|
|
1855
|
+
readonly away: {
|
|
1856
|
+
readonly type: "string";
|
|
1857
|
+
};
|
|
1858
|
+
readonly defenseConference: {
|
|
1859
|
+
readonly type: "string";
|
|
1860
|
+
readonly nullable: true;
|
|
1861
|
+
};
|
|
1862
|
+
readonly defenseScore: {
|
|
1863
|
+
readonly type: "integer";
|
|
1864
|
+
readonly format: "int32";
|
|
1865
|
+
};
|
|
1866
|
+
readonly period: {
|
|
1867
|
+
readonly type: "integer";
|
|
1868
|
+
readonly format: "int32";
|
|
1869
|
+
};
|
|
1870
|
+
readonly clock: {
|
|
1871
|
+
readonly properties: {
|
|
1872
|
+
readonly seconds: {
|
|
1873
|
+
readonly type: "integer";
|
|
1874
|
+
readonly format: "int32";
|
|
1875
|
+
readonly nullable: true;
|
|
1876
|
+
};
|
|
1877
|
+
readonly minutes: {
|
|
1878
|
+
readonly type: "integer";
|
|
1879
|
+
readonly format: "int32";
|
|
1880
|
+
readonly nullable: true;
|
|
1881
|
+
};
|
|
1882
|
+
};
|
|
1883
|
+
readonly required: readonly ["seconds", "minutes"];
|
|
1884
|
+
readonly type: "object";
|
|
1885
|
+
};
|
|
1886
|
+
readonly offenseTimeouts: {
|
|
1887
|
+
readonly type: "integer";
|
|
1888
|
+
readonly format: "int32";
|
|
1889
|
+
readonly nullable: true;
|
|
1890
|
+
};
|
|
1891
|
+
readonly defenseTimeouts: {
|
|
1892
|
+
readonly type: "integer";
|
|
1893
|
+
readonly format: "int32";
|
|
1894
|
+
readonly nullable: true;
|
|
1895
|
+
};
|
|
1896
|
+
readonly yardline: {
|
|
1897
|
+
readonly type: "integer";
|
|
1898
|
+
readonly format: "int32";
|
|
1899
|
+
};
|
|
1900
|
+
readonly yardsToGoal: {
|
|
1901
|
+
readonly type: "integer";
|
|
1902
|
+
readonly format: "int32";
|
|
1903
|
+
};
|
|
1904
|
+
readonly down: {
|
|
1905
|
+
readonly type: "integer";
|
|
1906
|
+
readonly format: "int32";
|
|
1907
|
+
};
|
|
1908
|
+
readonly distance: {
|
|
1909
|
+
readonly type: "integer";
|
|
1910
|
+
readonly format: "int32";
|
|
1911
|
+
};
|
|
1912
|
+
readonly yardsGained: {
|
|
1913
|
+
readonly type: "integer";
|
|
1914
|
+
readonly format: "int32";
|
|
1915
|
+
};
|
|
1916
|
+
readonly scoring: {
|
|
1917
|
+
readonly type: "boolean";
|
|
1918
|
+
};
|
|
1919
|
+
readonly playType: {
|
|
1920
|
+
readonly type: "string";
|
|
1921
|
+
};
|
|
1922
|
+
readonly playText: {
|
|
1923
|
+
readonly type: "string";
|
|
1924
|
+
readonly nullable: true;
|
|
1925
|
+
};
|
|
1926
|
+
readonly ppa: {
|
|
1927
|
+
readonly type: "number";
|
|
1928
|
+
readonly format: "double";
|
|
1929
|
+
readonly nullable: true;
|
|
1930
|
+
};
|
|
1931
|
+
readonly wallclock: {
|
|
1932
|
+
readonly type: "string";
|
|
1933
|
+
readonly nullable: true;
|
|
1934
|
+
};
|
|
1935
|
+
};
|
|
1936
|
+
readonly required: readonly ["id", "driveId", "gameId", "driveNumber", "playNumber", "offense", "offenseConference", "offenseScore", "defense", "home", "away", "defenseConference", "defenseScore", "period", "clock", "offenseTimeouts", "defenseTimeouts", "yardline", "yardsToGoal", "down", "distance", "yardsGained", "scoring", "playType", "playText", "ppa", "wallclock"];
|
|
1937
|
+
readonly type: "object";
|
|
1938
|
+
readonly additionalProperties: false;
|
|
1939
|
+
};
|
|
1940
|
+
export declare const $PlayType: {
|
|
1941
|
+
readonly properties: {
|
|
1942
|
+
readonly id: {
|
|
1943
|
+
readonly type: "integer";
|
|
1944
|
+
readonly format: "int32";
|
|
1945
|
+
};
|
|
1946
|
+
readonly text: {
|
|
1947
|
+
readonly type: "string";
|
|
1948
|
+
};
|
|
1949
|
+
readonly abbreviation: {
|
|
1950
|
+
readonly type: "string";
|
|
1951
|
+
readonly nullable: true;
|
|
1952
|
+
};
|
|
1953
|
+
};
|
|
1954
|
+
readonly required: readonly ["id", "text", "abbreviation"];
|
|
1955
|
+
readonly type: "object";
|
|
1956
|
+
readonly additionalProperties: false;
|
|
1957
|
+
};
|
|
1958
|
+
export declare const $PlayStat: {
|
|
1959
|
+
readonly properties: {
|
|
1960
|
+
readonly gameId: {
|
|
1961
|
+
readonly type: "number";
|
|
1962
|
+
readonly format: "double";
|
|
1963
|
+
};
|
|
1964
|
+
readonly season: {
|
|
1965
|
+
readonly type: "number";
|
|
1966
|
+
readonly format: "double";
|
|
1967
|
+
};
|
|
1968
|
+
readonly week: {
|
|
1969
|
+
readonly type: "number";
|
|
1970
|
+
readonly format: "double";
|
|
1971
|
+
};
|
|
1972
|
+
readonly team: {
|
|
1973
|
+
readonly type: "string";
|
|
1974
|
+
};
|
|
1975
|
+
readonly conference: {
|
|
1976
|
+
readonly type: "string";
|
|
1977
|
+
};
|
|
1978
|
+
readonly opponent: {
|
|
1979
|
+
readonly type: "string";
|
|
1980
|
+
};
|
|
1981
|
+
readonly teamScore: {
|
|
1982
|
+
readonly type: "number";
|
|
1983
|
+
readonly format: "double";
|
|
1984
|
+
};
|
|
1985
|
+
readonly opponentScore: {
|
|
1986
|
+
readonly type: "number";
|
|
1987
|
+
readonly format: "double";
|
|
1988
|
+
};
|
|
1989
|
+
readonly driveId: {
|
|
1990
|
+
readonly type: "string";
|
|
1991
|
+
};
|
|
1992
|
+
readonly playId: {
|
|
1993
|
+
readonly type: "string";
|
|
1994
|
+
};
|
|
1995
|
+
readonly period: {
|
|
1996
|
+
readonly type: "number";
|
|
1997
|
+
readonly format: "double";
|
|
1998
|
+
};
|
|
1999
|
+
readonly clock: {
|
|
2000
|
+
readonly properties: {
|
|
2001
|
+
readonly seconds: {
|
|
2002
|
+
readonly type: "number";
|
|
2003
|
+
readonly format: "double";
|
|
2004
|
+
readonly nullable: true;
|
|
2005
|
+
};
|
|
2006
|
+
readonly minutes: {
|
|
2007
|
+
readonly type: "number";
|
|
2008
|
+
readonly format: "double";
|
|
2009
|
+
readonly nullable: true;
|
|
2010
|
+
};
|
|
2011
|
+
};
|
|
2012
|
+
readonly required: readonly ["seconds", "minutes"];
|
|
2013
|
+
readonly type: "object";
|
|
2014
|
+
};
|
|
2015
|
+
readonly yardsToGoal: {
|
|
2016
|
+
readonly type: "number";
|
|
2017
|
+
readonly format: "double";
|
|
2018
|
+
};
|
|
2019
|
+
readonly down: {
|
|
2020
|
+
readonly type: "number";
|
|
2021
|
+
readonly format: "double";
|
|
2022
|
+
};
|
|
2023
|
+
readonly distance: {
|
|
2024
|
+
readonly type: "number";
|
|
2025
|
+
readonly format: "double";
|
|
2026
|
+
};
|
|
2027
|
+
readonly athleteId: {
|
|
2028
|
+
readonly type: "string";
|
|
2029
|
+
};
|
|
2030
|
+
readonly athleteName: {
|
|
2031
|
+
readonly type: "string";
|
|
2032
|
+
};
|
|
2033
|
+
readonly statType: {
|
|
2034
|
+
readonly type: "string";
|
|
2035
|
+
};
|
|
2036
|
+
readonly stat: {
|
|
2037
|
+
readonly type: "number";
|
|
2038
|
+
readonly format: "double";
|
|
2039
|
+
};
|
|
2040
|
+
};
|
|
2041
|
+
readonly required: readonly ["gameId", "season", "week", "team", "conference", "opponent", "teamScore", "opponentScore", "driveId", "playId", "period", "clock", "yardsToGoal", "down", "distance", "athleteId", "athleteName", "statType", "stat"];
|
|
2042
|
+
readonly type: "object";
|
|
2043
|
+
readonly additionalProperties: false;
|
|
2044
|
+
};
|
|
2045
|
+
export declare const $PlayStatType: {
|
|
2046
|
+
readonly properties: {
|
|
2047
|
+
readonly id: {
|
|
2048
|
+
readonly type: "integer";
|
|
2049
|
+
readonly format: "int32";
|
|
2050
|
+
};
|
|
2051
|
+
readonly name: {
|
|
2052
|
+
readonly type: "string";
|
|
2053
|
+
};
|
|
2054
|
+
};
|
|
2055
|
+
readonly required: readonly ["id", "name"];
|
|
2056
|
+
readonly type: "object";
|
|
2057
|
+
readonly additionalProperties: false;
|
|
2058
|
+
};
|
|
2059
|
+
export declare const $PlayerSearchResult: {
|
|
2060
|
+
readonly properties: {
|
|
2061
|
+
readonly id: {
|
|
2062
|
+
readonly type: "string";
|
|
2063
|
+
};
|
|
2064
|
+
readonly team: {
|
|
2065
|
+
readonly type: "string";
|
|
2066
|
+
};
|
|
2067
|
+
readonly name: {
|
|
2068
|
+
readonly type: "string";
|
|
2069
|
+
};
|
|
2070
|
+
readonly firstName: {
|
|
2071
|
+
readonly type: "string";
|
|
2072
|
+
readonly nullable: true;
|
|
2073
|
+
};
|
|
2074
|
+
readonly lastName: {
|
|
2075
|
+
readonly type: "string";
|
|
2076
|
+
readonly nullable: true;
|
|
2077
|
+
};
|
|
2078
|
+
readonly weight: {
|
|
2079
|
+
readonly type: "integer";
|
|
2080
|
+
readonly format: "int32";
|
|
2081
|
+
readonly nullable: true;
|
|
2082
|
+
};
|
|
2083
|
+
readonly height: {
|
|
2084
|
+
readonly type: "integer";
|
|
2085
|
+
readonly format: "int32";
|
|
2086
|
+
readonly nullable: true;
|
|
2087
|
+
};
|
|
2088
|
+
readonly jersey: {
|
|
2089
|
+
readonly type: "integer";
|
|
2090
|
+
readonly format: "int32";
|
|
2091
|
+
readonly nullable: true;
|
|
2092
|
+
};
|
|
2093
|
+
readonly position: {
|
|
2094
|
+
readonly type: "string";
|
|
2095
|
+
};
|
|
2096
|
+
readonly hometown: {
|
|
2097
|
+
readonly type: "string";
|
|
2098
|
+
};
|
|
2099
|
+
readonly teamColor: {
|
|
2100
|
+
readonly type: "string";
|
|
2101
|
+
};
|
|
2102
|
+
readonly teamColorSecondary: {
|
|
2103
|
+
readonly type: "string";
|
|
2104
|
+
};
|
|
2105
|
+
};
|
|
2106
|
+
readonly required: readonly ["id", "team", "name", "firstName", "lastName", "weight", "height", "jersey", "position", "hometown", "teamColor", "teamColorSecondary"];
|
|
2107
|
+
readonly type: "object";
|
|
2108
|
+
readonly additionalProperties: false;
|
|
2109
|
+
};
|
|
2110
|
+
export declare const $PlayerPPAChartItem: {
|
|
2111
|
+
readonly properties: {
|
|
2112
|
+
readonly playNumber: {
|
|
2113
|
+
readonly type: "integer";
|
|
2114
|
+
readonly format: "int32";
|
|
2115
|
+
};
|
|
2116
|
+
readonly avgPPA: {
|
|
2117
|
+
readonly type: "number";
|
|
2118
|
+
readonly format: "double";
|
|
2119
|
+
};
|
|
2120
|
+
};
|
|
2121
|
+
readonly required: readonly ["playNumber", "avgPPA"];
|
|
2122
|
+
readonly type: "object";
|
|
2123
|
+
readonly additionalProperties: false;
|
|
2124
|
+
};
|
|
2125
|
+
export declare const $PlayerUsage: {
|
|
2126
|
+
readonly properties: {
|
|
2127
|
+
readonly season: {
|
|
2128
|
+
readonly type: "integer";
|
|
2129
|
+
readonly format: "int32";
|
|
2130
|
+
};
|
|
2131
|
+
readonly id: {
|
|
2132
|
+
readonly type: "string";
|
|
2133
|
+
};
|
|
2134
|
+
readonly name: {
|
|
2135
|
+
readonly type: "string";
|
|
2136
|
+
};
|
|
2137
|
+
readonly position: {
|
|
2138
|
+
readonly type: "string";
|
|
2139
|
+
};
|
|
2140
|
+
readonly team: {
|
|
2141
|
+
readonly type: "string";
|
|
2142
|
+
};
|
|
2143
|
+
readonly conference: {
|
|
2144
|
+
readonly type: "string";
|
|
2145
|
+
};
|
|
2146
|
+
readonly usage: {
|
|
2147
|
+
readonly properties: {
|
|
2148
|
+
readonly passingDowns: {
|
|
2149
|
+
readonly type: "number";
|
|
2150
|
+
readonly format: "double";
|
|
2151
|
+
};
|
|
2152
|
+
readonly standardDowns: {
|
|
2153
|
+
readonly type: "number";
|
|
2154
|
+
readonly format: "double";
|
|
2155
|
+
};
|
|
2156
|
+
readonly thirdDown: {
|
|
2157
|
+
readonly type: "number";
|
|
2158
|
+
readonly format: "double";
|
|
2159
|
+
};
|
|
2160
|
+
readonly secondDown: {
|
|
2161
|
+
readonly type: "number";
|
|
2162
|
+
readonly format: "double";
|
|
2163
|
+
};
|
|
2164
|
+
readonly firstDown: {
|
|
2165
|
+
readonly type: "number";
|
|
2166
|
+
readonly format: "double";
|
|
2167
|
+
};
|
|
2168
|
+
readonly rush: {
|
|
2169
|
+
readonly type: "number";
|
|
2170
|
+
readonly format: "double";
|
|
2171
|
+
};
|
|
2172
|
+
readonly pass: {
|
|
2173
|
+
readonly type: "number";
|
|
2174
|
+
readonly format: "double";
|
|
2175
|
+
};
|
|
2176
|
+
readonly overall: {
|
|
2177
|
+
readonly type: "number";
|
|
2178
|
+
readonly format: "double";
|
|
2179
|
+
};
|
|
2180
|
+
};
|
|
2181
|
+
readonly required: readonly ["passingDowns", "standardDowns", "thirdDown", "secondDown", "firstDown", "rush", "pass", "overall"];
|
|
2182
|
+
readonly type: "object";
|
|
2183
|
+
};
|
|
2184
|
+
};
|
|
2185
|
+
readonly required: readonly ["season", "id", "name", "position", "team", "conference", "usage"];
|
|
2186
|
+
readonly type: "object";
|
|
2187
|
+
readonly additionalProperties: false;
|
|
2188
|
+
};
|
|
2189
|
+
export declare const $ReturningProduction: {
|
|
2190
|
+
readonly properties: {
|
|
2191
|
+
readonly season: {
|
|
2192
|
+
readonly type: "integer";
|
|
2193
|
+
readonly format: "int32";
|
|
2194
|
+
};
|
|
2195
|
+
readonly team: {
|
|
2196
|
+
readonly type: "string";
|
|
2197
|
+
};
|
|
2198
|
+
readonly conference: {
|
|
2199
|
+
readonly type: "string";
|
|
2200
|
+
};
|
|
2201
|
+
readonly totalPPA: {
|
|
2202
|
+
readonly type: "number";
|
|
2203
|
+
readonly format: "double";
|
|
2204
|
+
};
|
|
2205
|
+
readonly totalPassingPPA: {
|
|
2206
|
+
readonly type: "number";
|
|
2207
|
+
readonly format: "double";
|
|
2208
|
+
};
|
|
2209
|
+
readonly totalReceivingPPA: {
|
|
2210
|
+
readonly type: "number";
|
|
2211
|
+
readonly format: "double";
|
|
2212
|
+
};
|
|
2213
|
+
readonly totalRushingPPA: {
|
|
2214
|
+
readonly type: "number";
|
|
2215
|
+
readonly format: "double";
|
|
2216
|
+
};
|
|
2217
|
+
readonly percentPPA: {
|
|
2218
|
+
readonly type: "number";
|
|
2219
|
+
readonly format: "double";
|
|
2220
|
+
};
|
|
2221
|
+
readonly percentPassingPPA: {
|
|
2222
|
+
readonly type: "number";
|
|
2223
|
+
readonly format: "double";
|
|
2224
|
+
};
|
|
2225
|
+
readonly percentReceivingPPA: {
|
|
2226
|
+
readonly type: "number";
|
|
2227
|
+
readonly format: "double";
|
|
2228
|
+
};
|
|
2229
|
+
readonly percentRushingPPA: {
|
|
2230
|
+
readonly type: "number";
|
|
2231
|
+
readonly format: "double";
|
|
2232
|
+
};
|
|
2233
|
+
readonly usage: {
|
|
2234
|
+
readonly type: "number";
|
|
2235
|
+
readonly format: "double";
|
|
2236
|
+
};
|
|
2237
|
+
readonly passingUsage: {
|
|
2238
|
+
readonly type: "number";
|
|
2239
|
+
readonly format: "double";
|
|
2240
|
+
};
|
|
2241
|
+
readonly receivingUsage: {
|
|
2242
|
+
readonly type: "number";
|
|
2243
|
+
readonly format: "double";
|
|
2244
|
+
};
|
|
2245
|
+
readonly rushingUsage: {
|
|
2246
|
+
readonly type: "number";
|
|
2247
|
+
readonly format: "double";
|
|
2248
|
+
};
|
|
2249
|
+
};
|
|
2250
|
+
readonly required: readonly ["season", "team", "conference", "totalPPA", "totalPassingPPA", "totalReceivingPPA", "totalRushingPPA", "percentPPA", "percentPassingPPA", "percentReceivingPPA", "percentRushingPPA", "usage", "passingUsage", "receivingUsage", "rushingUsage"];
|
|
2251
|
+
readonly type: "object";
|
|
2252
|
+
readonly additionalProperties: false;
|
|
2253
|
+
};
|
|
2254
|
+
export declare const $TransferEligibility: {
|
|
2255
|
+
readonly enum: readonly ["Withdrawn", "TBD", "PendingAppeal", "SittingOne", "Immediate"];
|
|
2256
|
+
readonly type: "string";
|
|
2257
|
+
};
|
|
2258
|
+
export declare const $PlayerTransfer: {
|
|
2259
|
+
readonly properties: {
|
|
2260
|
+
readonly season: {
|
|
2261
|
+
readonly type: "integer";
|
|
2262
|
+
readonly format: "int32";
|
|
2263
|
+
};
|
|
2264
|
+
readonly firstName: {
|
|
2265
|
+
readonly type: "string";
|
|
2266
|
+
};
|
|
2267
|
+
readonly lastName: {
|
|
2268
|
+
readonly type: "string";
|
|
2269
|
+
};
|
|
2270
|
+
readonly position: {
|
|
2271
|
+
readonly type: "string";
|
|
2272
|
+
};
|
|
2273
|
+
readonly origin: {
|
|
2274
|
+
readonly type: "string";
|
|
2275
|
+
};
|
|
2276
|
+
readonly destination: {
|
|
2277
|
+
readonly type: "string";
|
|
2278
|
+
readonly nullable: true;
|
|
2279
|
+
};
|
|
2280
|
+
readonly transferDate: {
|
|
2281
|
+
readonly type: "string";
|
|
2282
|
+
readonly format: "date-time";
|
|
2283
|
+
readonly nullable: true;
|
|
2284
|
+
};
|
|
2285
|
+
readonly rating: {
|
|
2286
|
+
readonly type: "number";
|
|
2287
|
+
readonly format: "double";
|
|
2288
|
+
readonly nullable: true;
|
|
2289
|
+
};
|
|
2290
|
+
readonly stars: {
|
|
2291
|
+
readonly type: "integer";
|
|
2292
|
+
readonly format: "int32";
|
|
2293
|
+
readonly nullable: true;
|
|
2294
|
+
};
|
|
2295
|
+
readonly eligibility: {
|
|
2296
|
+
readonly allOf: readonly [{
|
|
2297
|
+
readonly $ref: "#/components/schemas/TransferEligibility";
|
|
2298
|
+
}];
|
|
2299
|
+
readonly nullable: true;
|
|
2300
|
+
};
|
|
2301
|
+
};
|
|
2302
|
+
readonly required: readonly ["season", "firstName", "lastName", "position", "origin", "destination", "transferDate", "rating", "stars", "eligibility"];
|
|
2303
|
+
readonly type: "object";
|
|
2304
|
+
readonly additionalProperties: false;
|
|
2305
|
+
};
|
|
2306
|
+
export declare const $PredictedPointsValue: {
|
|
2307
|
+
readonly properties: {
|
|
2308
|
+
readonly yardLine: {
|
|
2309
|
+
readonly type: "integer";
|
|
2310
|
+
readonly format: "int32";
|
|
2311
|
+
};
|
|
2312
|
+
readonly predictedPoints: {
|
|
2313
|
+
readonly type: "number";
|
|
2314
|
+
readonly format: "double";
|
|
2315
|
+
};
|
|
2316
|
+
};
|
|
2317
|
+
readonly required: readonly ["yardLine", "predictedPoints"];
|
|
2318
|
+
readonly type: "object";
|
|
2319
|
+
readonly additionalProperties: false;
|
|
2320
|
+
};
|
|
2321
|
+
export declare const $TeamSeasonPredictedPointsAdded: {
|
|
2322
|
+
readonly properties: {
|
|
2323
|
+
readonly season: {
|
|
2324
|
+
readonly type: "integer";
|
|
2325
|
+
readonly format: "int32";
|
|
2326
|
+
};
|
|
2327
|
+
readonly conference: {
|
|
2328
|
+
readonly type: "string";
|
|
2329
|
+
};
|
|
2330
|
+
readonly team: {
|
|
2331
|
+
readonly type: "string";
|
|
2332
|
+
};
|
|
2333
|
+
readonly offense: {
|
|
2334
|
+
readonly properties: {
|
|
2335
|
+
readonly cumulative: {
|
|
2336
|
+
readonly properties: {
|
|
2337
|
+
readonly rushing: {
|
|
2338
|
+
readonly type: "number";
|
|
2339
|
+
readonly format: "double";
|
|
2340
|
+
};
|
|
2341
|
+
readonly passing: {
|
|
2342
|
+
readonly type: "number";
|
|
2343
|
+
readonly format: "double";
|
|
2344
|
+
};
|
|
2345
|
+
readonly total: {
|
|
2346
|
+
readonly type: "number";
|
|
2347
|
+
readonly format: "double";
|
|
2348
|
+
};
|
|
2349
|
+
};
|
|
2350
|
+
readonly required: readonly ["rushing", "passing", "total"];
|
|
2351
|
+
readonly type: "object";
|
|
2352
|
+
};
|
|
2353
|
+
readonly thirdDown: {
|
|
2354
|
+
readonly type: "number";
|
|
2355
|
+
readonly format: "double";
|
|
2356
|
+
};
|
|
2357
|
+
readonly secondDown: {
|
|
2358
|
+
readonly type: "number";
|
|
2359
|
+
readonly format: "double";
|
|
2360
|
+
};
|
|
2361
|
+
readonly firstDown: {
|
|
2362
|
+
readonly type: "number";
|
|
2363
|
+
readonly format: "double";
|
|
2364
|
+
};
|
|
2365
|
+
readonly rushing: {
|
|
2366
|
+
readonly type: "number";
|
|
2367
|
+
readonly format: "double";
|
|
2368
|
+
};
|
|
2369
|
+
readonly passing: {
|
|
2370
|
+
readonly type: "number";
|
|
2371
|
+
readonly format: "double";
|
|
2372
|
+
};
|
|
2373
|
+
readonly overall: {
|
|
2374
|
+
readonly type: "number";
|
|
2375
|
+
readonly format: "double";
|
|
2376
|
+
};
|
|
2377
|
+
};
|
|
2378
|
+
readonly required: readonly ["cumulative", "thirdDown", "secondDown", "firstDown", "rushing", "passing", "overall"];
|
|
2379
|
+
readonly type: "object";
|
|
2380
|
+
};
|
|
2381
|
+
readonly defense: {
|
|
2382
|
+
readonly properties: {
|
|
2383
|
+
readonly cumulative: {
|
|
2384
|
+
readonly properties: {
|
|
2385
|
+
readonly rushing: {
|
|
2386
|
+
readonly type: "number";
|
|
2387
|
+
readonly format: "double";
|
|
2388
|
+
};
|
|
2389
|
+
readonly passing: {
|
|
2390
|
+
readonly type: "number";
|
|
2391
|
+
readonly format: "double";
|
|
2392
|
+
};
|
|
2393
|
+
readonly total: {
|
|
2394
|
+
readonly type: "number";
|
|
2395
|
+
readonly format: "double";
|
|
2396
|
+
};
|
|
2397
|
+
};
|
|
2398
|
+
readonly required: readonly ["rushing", "passing", "total"];
|
|
2399
|
+
readonly type: "object";
|
|
2400
|
+
};
|
|
2401
|
+
readonly thirdDown: {
|
|
2402
|
+
readonly type: "number";
|
|
2403
|
+
readonly format: "double";
|
|
2404
|
+
};
|
|
2405
|
+
readonly secondDown: {
|
|
2406
|
+
readonly type: "number";
|
|
2407
|
+
readonly format: "double";
|
|
2408
|
+
};
|
|
2409
|
+
readonly firstDown: {
|
|
2410
|
+
readonly type: "number";
|
|
2411
|
+
readonly format: "double";
|
|
2412
|
+
};
|
|
2413
|
+
readonly rushing: {
|
|
2414
|
+
readonly type: "number";
|
|
2415
|
+
readonly format: "double";
|
|
2416
|
+
};
|
|
2417
|
+
readonly passing: {
|
|
2418
|
+
readonly type: "number";
|
|
2419
|
+
readonly format: "double";
|
|
2420
|
+
};
|
|
2421
|
+
readonly overall: {
|
|
2422
|
+
readonly type: "number";
|
|
2423
|
+
readonly format: "double";
|
|
2424
|
+
};
|
|
2425
|
+
};
|
|
2426
|
+
readonly required: readonly ["cumulative", "thirdDown", "secondDown", "firstDown", "rushing", "passing", "overall"];
|
|
2427
|
+
readonly type: "object";
|
|
2428
|
+
};
|
|
2429
|
+
};
|
|
2430
|
+
readonly required: readonly ["season", "conference", "team", "offense", "defense"];
|
|
2431
|
+
readonly type: "object";
|
|
2432
|
+
readonly additionalProperties: false;
|
|
2433
|
+
};
|
|
2434
|
+
export declare const $TeamGamePredictedPointsAdded: {
|
|
2435
|
+
readonly properties: {
|
|
2436
|
+
readonly gameId: {
|
|
2437
|
+
readonly type: "integer";
|
|
2438
|
+
readonly format: "int32";
|
|
2439
|
+
};
|
|
2440
|
+
readonly season: {
|
|
2441
|
+
readonly type: "integer";
|
|
2442
|
+
readonly format: "int32";
|
|
2443
|
+
};
|
|
2444
|
+
readonly week: {
|
|
2445
|
+
readonly type: "integer";
|
|
2446
|
+
readonly format: "int32";
|
|
2447
|
+
};
|
|
2448
|
+
readonly seasonType: {
|
|
2449
|
+
readonly $ref: "#/components/schemas/SeasonType";
|
|
2450
|
+
};
|
|
2451
|
+
readonly team: {
|
|
2452
|
+
readonly type: "string";
|
|
2453
|
+
};
|
|
2454
|
+
readonly conference: {
|
|
2455
|
+
readonly type: "string";
|
|
2456
|
+
};
|
|
2457
|
+
readonly opponent: {
|
|
2458
|
+
readonly type: "string";
|
|
2459
|
+
};
|
|
2460
|
+
readonly offense: {
|
|
2461
|
+
readonly properties: {
|
|
2462
|
+
readonly thirdDown: {
|
|
2463
|
+
readonly type: "number";
|
|
2464
|
+
readonly format: "double";
|
|
2465
|
+
};
|
|
2466
|
+
readonly secondDown: {
|
|
2467
|
+
readonly type: "number";
|
|
2468
|
+
readonly format: "double";
|
|
2469
|
+
};
|
|
2470
|
+
readonly firstDown: {
|
|
2471
|
+
readonly type: "number";
|
|
2472
|
+
readonly format: "double";
|
|
2473
|
+
};
|
|
2474
|
+
readonly rushing: {
|
|
2475
|
+
readonly type: "number";
|
|
2476
|
+
readonly format: "double";
|
|
2477
|
+
};
|
|
2478
|
+
readonly passing: {
|
|
2479
|
+
readonly type: "number";
|
|
2480
|
+
readonly format: "double";
|
|
2481
|
+
};
|
|
2482
|
+
readonly overall: {
|
|
2483
|
+
readonly type: "number";
|
|
2484
|
+
readonly format: "double";
|
|
2485
|
+
};
|
|
2486
|
+
};
|
|
2487
|
+
readonly required: readonly ["thirdDown", "secondDown", "firstDown", "rushing", "passing", "overall"];
|
|
2488
|
+
readonly type: "object";
|
|
2489
|
+
};
|
|
2490
|
+
readonly defense: {
|
|
2491
|
+
readonly properties: {
|
|
2492
|
+
readonly thirdDown: {
|
|
2493
|
+
readonly type: "number";
|
|
2494
|
+
readonly format: "double";
|
|
2495
|
+
};
|
|
2496
|
+
readonly secondDown: {
|
|
2497
|
+
readonly type: "number";
|
|
2498
|
+
readonly format: "double";
|
|
2499
|
+
};
|
|
2500
|
+
readonly firstDown: {
|
|
2501
|
+
readonly type: "number";
|
|
2502
|
+
readonly format: "double";
|
|
2503
|
+
};
|
|
2504
|
+
readonly rushing: {
|
|
2505
|
+
readonly type: "number";
|
|
2506
|
+
readonly format: "double";
|
|
2507
|
+
};
|
|
2508
|
+
readonly passing: {
|
|
2509
|
+
readonly type: "number";
|
|
2510
|
+
readonly format: "double";
|
|
2511
|
+
};
|
|
2512
|
+
readonly overall: {
|
|
2513
|
+
readonly type: "number";
|
|
2514
|
+
readonly format: "double";
|
|
2515
|
+
};
|
|
2516
|
+
};
|
|
2517
|
+
readonly required: readonly ["thirdDown", "secondDown", "firstDown", "rushing", "passing", "overall"];
|
|
2518
|
+
readonly type: "object";
|
|
2519
|
+
};
|
|
2520
|
+
};
|
|
2521
|
+
readonly required: readonly ["gameId", "season", "week", "seasonType", "team", "conference", "opponent", "offense", "defense"];
|
|
2522
|
+
readonly type: "object";
|
|
2523
|
+
readonly additionalProperties: false;
|
|
2524
|
+
};
|
|
2525
|
+
export declare const $PlayerGamePredictedPointsAdded: {
|
|
2526
|
+
readonly properties: {
|
|
2527
|
+
readonly season: {
|
|
2528
|
+
readonly type: "integer";
|
|
2529
|
+
readonly format: "int32";
|
|
2530
|
+
};
|
|
2531
|
+
readonly week: {
|
|
2532
|
+
readonly type: "integer";
|
|
2533
|
+
readonly format: "int32";
|
|
2534
|
+
};
|
|
2535
|
+
readonly seasonType: {
|
|
2536
|
+
readonly $ref: "#/components/schemas/SeasonType";
|
|
2537
|
+
};
|
|
2538
|
+
readonly id: {
|
|
2539
|
+
readonly type: "string";
|
|
2540
|
+
};
|
|
2541
|
+
readonly name: {
|
|
2542
|
+
readonly type: "string";
|
|
2543
|
+
};
|
|
2544
|
+
readonly position: {
|
|
2545
|
+
readonly type: "string";
|
|
2546
|
+
};
|
|
2547
|
+
readonly team: {
|
|
2548
|
+
readonly type: "string";
|
|
2549
|
+
};
|
|
2550
|
+
readonly opponent: {
|
|
2551
|
+
readonly type: "string";
|
|
2552
|
+
};
|
|
2553
|
+
readonly averagePPA: {
|
|
2554
|
+
readonly properties: {
|
|
2555
|
+
readonly rush: {
|
|
2556
|
+
readonly type: "number";
|
|
2557
|
+
readonly format: "double";
|
|
2558
|
+
};
|
|
2559
|
+
readonly pass: {
|
|
2560
|
+
readonly type: "number";
|
|
2561
|
+
readonly format: "double";
|
|
2562
|
+
};
|
|
2563
|
+
readonly all: {
|
|
2564
|
+
readonly type: "number";
|
|
2565
|
+
readonly format: "double";
|
|
2566
|
+
};
|
|
2567
|
+
};
|
|
2568
|
+
readonly required: readonly ["all"];
|
|
2569
|
+
readonly type: "object";
|
|
2570
|
+
};
|
|
2571
|
+
};
|
|
2572
|
+
readonly required: readonly ["season", "week", "seasonType", "id", "name", "position", "team", "opponent", "averagePPA"];
|
|
2573
|
+
readonly type: "object";
|
|
2574
|
+
readonly additionalProperties: false;
|
|
2575
|
+
};
|
|
2576
|
+
export declare const $PlayerSeasonPredictedPointsAdded: {
|
|
2577
|
+
readonly properties: {
|
|
2578
|
+
readonly season: {
|
|
2579
|
+
readonly type: "integer";
|
|
2580
|
+
readonly format: "int32";
|
|
2581
|
+
};
|
|
2582
|
+
readonly id: {
|
|
2583
|
+
readonly type: "string";
|
|
2584
|
+
};
|
|
2585
|
+
readonly name: {
|
|
2586
|
+
readonly type: "string";
|
|
2587
|
+
};
|
|
2588
|
+
readonly position: {
|
|
2589
|
+
readonly type: "string";
|
|
2590
|
+
};
|
|
2591
|
+
readonly team: {
|
|
2592
|
+
readonly type: "string";
|
|
2593
|
+
};
|
|
2594
|
+
readonly conference: {
|
|
2595
|
+
readonly type: "string";
|
|
2596
|
+
};
|
|
2597
|
+
readonly averagePPA: {
|
|
2598
|
+
readonly properties: {
|
|
2599
|
+
readonly passingDowns: {
|
|
2600
|
+
readonly type: "number";
|
|
2601
|
+
readonly format: "double";
|
|
2602
|
+
};
|
|
2603
|
+
readonly standardDowns: {
|
|
2604
|
+
readonly type: "number";
|
|
2605
|
+
readonly format: "double";
|
|
2606
|
+
};
|
|
2607
|
+
readonly thirdDown: {
|
|
2608
|
+
readonly type: "number";
|
|
2609
|
+
readonly format: "double";
|
|
2610
|
+
};
|
|
2611
|
+
readonly secondDown: {
|
|
2612
|
+
readonly type: "number";
|
|
2613
|
+
readonly format: "double";
|
|
2614
|
+
};
|
|
2615
|
+
readonly firstDown: {
|
|
2616
|
+
readonly type: "number";
|
|
2617
|
+
readonly format: "double";
|
|
2618
|
+
};
|
|
2619
|
+
readonly rush: {
|
|
2620
|
+
readonly type: "number";
|
|
2621
|
+
readonly format: "double";
|
|
2622
|
+
};
|
|
2623
|
+
readonly pass: {
|
|
2624
|
+
readonly type: "number";
|
|
2625
|
+
readonly format: "double";
|
|
2626
|
+
};
|
|
2627
|
+
readonly all: {
|
|
2628
|
+
readonly type: "number";
|
|
2629
|
+
readonly format: "double";
|
|
2630
|
+
};
|
|
2631
|
+
};
|
|
2632
|
+
readonly required: readonly ["all"];
|
|
2633
|
+
readonly type: "object";
|
|
2634
|
+
};
|
|
2635
|
+
readonly totalPPA: {
|
|
2636
|
+
readonly properties: {
|
|
2637
|
+
readonly passingDowns: {
|
|
2638
|
+
readonly type: "number";
|
|
2639
|
+
readonly format: "double";
|
|
2640
|
+
};
|
|
2641
|
+
readonly standardDowns: {
|
|
2642
|
+
readonly type: "number";
|
|
2643
|
+
readonly format: "double";
|
|
2644
|
+
};
|
|
2645
|
+
readonly thirdDown: {
|
|
2646
|
+
readonly type: "number";
|
|
2647
|
+
readonly format: "double";
|
|
2648
|
+
};
|
|
2649
|
+
readonly secondDown: {
|
|
2650
|
+
readonly type: "number";
|
|
2651
|
+
readonly format: "double";
|
|
2652
|
+
};
|
|
2653
|
+
readonly firstDown: {
|
|
2654
|
+
readonly type: "number";
|
|
2655
|
+
readonly format: "double";
|
|
2656
|
+
};
|
|
2657
|
+
readonly rush: {
|
|
2658
|
+
readonly type: "number";
|
|
2659
|
+
readonly format: "double";
|
|
2660
|
+
};
|
|
2661
|
+
readonly pass: {
|
|
2662
|
+
readonly type: "number";
|
|
2663
|
+
readonly format: "double";
|
|
2664
|
+
};
|
|
2665
|
+
readonly all: {
|
|
2666
|
+
readonly type: "number";
|
|
2667
|
+
readonly format: "double";
|
|
2668
|
+
};
|
|
2669
|
+
};
|
|
2670
|
+
readonly required: readonly ["all"];
|
|
2671
|
+
readonly type: "object";
|
|
2672
|
+
};
|
|
2673
|
+
};
|
|
2674
|
+
readonly required: readonly ["season", "id", "name", "position", "team", "conference", "averagePPA", "totalPPA"];
|
|
2675
|
+
readonly type: "object";
|
|
2676
|
+
readonly additionalProperties: false;
|
|
2677
|
+
};
|
|
2678
|
+
export declare const $PlayWinProbability: {
|
|
2679
|
+
readonly properties: {
|
|
2680
|
+
readonly gameId: {
|
|
2681
|
+
readonly type: "integer";
|
|
2682
|
+
readonly format: "int32";
|
|
2683
|
+
};
|
|
2684
|
+
readonly playId: {
|
|
2685
|
+
readonly type: "string";
|
|
2686
|
+
};
|
|
2687
|
+
readonly playText: {
|
|
2688
|
+
readonly type: "string";
|
|
2689
|
+
};
|
|
2690
|
+
readonly homeId: {
|
|
2691
|
+
readonly type: "integer";
|
|
2692
|
+
readonly format: "int32";
|
|
2693
|
+
};
|
|
2694
|
+
readonly home: {
|
|
2695
|
+
readonly type: "string";
|
|
2696
|
+
};
|
|
2697
|
+
readonly awayId: {
|
|
2698
|
+
readonly type: "integer";
|
|
2699
|
+
readonly format: "int32";
|
|
2700
|
+
};
|
|
2701
|
+
readonly away: {
|
|
2702
|
+
readonly type: "string";
|
|
2703
|
+
};
|
|
2704
|
+
readonly spread: {
|
|
2705
|
+
readonly type: "number";
|
|
2706
|
+
readonly format: "double";
|
|
2707
|
+
};
|
|
2708
|
+
readonly homeBall: {
|
|
2709
|
+
readonly type: "boolean";
|
|
2710
|
+
};
|
|
2711
|
+
readonly homeScore: {
|
|
2712
|
+
readonly type: "integer";
|
|
2713
|
+
readonly format: "int32";
|
|
2714
|
+
};
|
|
2715
|
+
readonly awayScore: {
|
|
2716
|
+
readonly type: "integer";
|
|
2717
|
+
readonly format: "int32";
|
|
2718
|
+
};
|
|
2719
|
+
readonly yardLine: {
|
|
2720
|
+
readonly type: "integer";
|
|
2721
|
+
readonly format: "int32";
|
|
2722
|
+
};
|
|
2723
|
+
readonly down: {
|
|
2724
|
+
readonly type: "integer";
|
|
2725
|
+
readonly format: "int32";
|
|
2726
|
+
};
|
|
2727
|
+
readonly distance: {
|
|
2728
|
+
readonly type: "integer";
|
|
2729
|
+
readonly format: "int32";
|
|
2730
|
+
};
|
|
2731
|
+
readonly homeWinProbability: {
|
|
2732
|
+
readonly type: "number";
|
|
2733
|
+
readonly format: "double";
|
|
2734
|
+
};
|
|
2735
|
+
readonly playNumber: {
|
|
2736
|
+
readonly type: "integer";
|
|
2737
|
+
readonly format: "int32";
|
|
2738
|
+
};
|
|
2739
|
+
};
|
|
2740
|
+
readonly required: readonly ["gameId", "playId", "playText", "homeId", "home", "awayId", "away", "spread", "homeBall", "homeScore", "awayScore", "yardLine", "down", "distance", "homeWinProbability", "playNumber"];
|
|
2741
|
+
readonly type: "object";
|
|
2742
|
+
readonly additionalProperties: false;
|
|
2743
|
+
};
|
|
2744
|
+
export declare const $PregameWinProbability: {
|
|
2745
|
+
readonly properties: {
|
|
2746
|
+
readonly season: {
|
|
2747
|
+
readonly type: "integer";
|
|
2748
|
+
readonly format: "int32";
|
|
2749
|
+
};
|
|
2750
|
+
readonly seasonType: {
|
|
2751
|
+
readonly $ref: "#/components/schemas/SeasonType";
|
|
2752
|
+
};
|
|
2753
|
+
readonly week: {
|
|
2754
|
+
readonly type: "integer";
|
|
2755
|
+
readonly format: "int32";
|
|
2756
|
+
};
|
|
2757
|
+
readonly gameId: {
|
|
2758
|
+
readonly type: "integer";
|
|
2759
|
+
readonly format: "int32";
|
|
2760
|
+
};
|
|
2761
|
+
readonly homeTeam: {
|
|
2762
|
+
readonly type: "string";
|
|
2763
|
+
};
|
|
2764
|
+
readonly awayTeam: {
|
|
2765
|
+
readonly type: "string";
|
|
2766
|
+
};
|
|
2767
|
+
readonly spread: {
|
|
2768
|
+
readonly type: "number";
|
|
2769
|
+
readonly format: "double";
|
|
2770
|
+
};
|
|
2771
|
+
readonly homeWinProbability: {
|
|
2772
|
+
readonly type: "number";
|
|
2773
|
+
readonly format: "double";
|
|
2774
|
+
};
|
|
2775
|
+
};
|
|
2776
|
+
readonly required: readonly ["season", "seasonType", "week", "gameId", "homeTeam", "awayTeam", "spread", "homeWinProbability"];
|
|
2777
|
+
readonly type: "object";
|
|
2778
|
+
readonly additionalProperties: false;
|
|
2779
|
+
};
|
|
2780
|
+
export declare const $FieldGoalEP: {
|
|
2781
|
+
readonly properties: {
|
|
2782
|
+
readonly yardsToGoal: {
|
|
2783
|
+
readonly type: "integer";
|
|
2784
|
+
readonly format: "int32";
|
|
2785
|
+
};
|
|
2786
|
+
readonly distance: {
|
|
2787
|
+
readonly type: "integer";
|
|
2788
|
+
readonly format: "int32";
|
|
2789
|
+
};
|
|
2790
|
+
readonly expectedPoints: {
|
|
2791
|
+
readonly type: "number";
|
|
2792
|
+
readonly format: "double";
|
|
2793
|
+
};
|
|
2794
|
+
};
|
|
2795
|
+
readonly required: readonly ["yardsToGoal", "distance", "expectedPoints"];
|
|
2796
|
+
readonly type: "object";
|
|
2797
|
+
readonly additionalProperties: false;
|
|
2798
|
+
};
|
|
2799
|
+
export declare const $LiveGameTeam: {
|
|
2800
|
+
readonly properties: {
|
|
2801
|
+
readonly teamId: {
|
|
2802
|
+
readonly type: "integer";
|
|
2803
|
+
readonly format: "int32";
|
|
2804
|
+
};
|
|
2805
|
+
readonly team: {
|
|
2806
|
+
readonly type: "string";
|
|
2807
|
+
};
|
|
2808
|
+
readonly homeAway: {
|
|
2809
|
+
readonly type: "string";
|
|
2810
|
+
readonly enum: readonly ["home", "away"];
|
|
2811
|
+
};
|
|
2812
|
+
readonly lineScores: {
|
|
2813
|
+
readonly items: {
|
|
2814
|
+
readonly type: "integer";
|
|
2815
|
+
readonly format: "int32";
|
|
2816
|
+
};
|
|
2817
|
+
readonly type: "array";
|
|
2818
|
+
};
|
|
2819
|
+
readonly points: {
|
|
2820
|
+
readonly type: "integer";
|
|
2821
|
+
readonly format: "int32";
|
|
2822
|
+
};
|
|
2823
|
+
readonly drives: {
|
|
2824
|
+
readonly type: "integer";
|
|
2825
|
+
readonly format: "int32";
|
|
2826
|
+
};
|
|
2827
|
+
readonly scoringOpportunities: {
|
|
2828
|
+
readonly type: "integer";
|
|
2829
|
+
readonly format: "int32";
|
|
2830
|
+
};
|
|
2831
|
+
readonly pointsPerOpportunity: {
|
|
2832
|
+
readonly type: "number";
|
|
2833
|
+
readonly format: "double";
|
|
2834
|
+
};
|
|
2835
|
+
readonly plays: {
|
|
2836
|
+
readonly type: "integer";
|
|
2837
|
+
readonly format: "int32";
|
|
2838
|
+
};
|
|
2839
|
+
readonly lineYards: {
|
|
2840
|
+
readonly type: "number";
|
|
2841
|
+
readonly format: "double";
|
|
2842
|
+
};
|
|
2843
|
+
readonly lineYardsPerRush: {
|
|
2844
|
+
readonly type: "number";
|
|
2845
|
+
readonly format: "double";
|
|
2846
|
+
};
|
|
2847
|
+
readonly secondLevelYards: {
|
|
2848
|
+
readonly type: "number";
|
|
2849
|
+
readonly format: "double";
|
|
2850
|
+
};
|
|
2851
|
+
readonly secondLevelYardsPerRush: {
|
|
2852
|
+
readonly type: "number";
|
|
2853
|
+
readonly format: "double";
|
|
2854
|
+
};
|
|
2855
|
+
readonly openFieldYards: {
|
|
2856
|
+
readonly type: "number";
|
|
2857
|
+
readonly format: "double";
|
|
2858
|
+
};
|
|
2859
|
+
readonly openFieldYardsPerRush: {
|
|
2860
|
+
readonly type: "number";
|
|
2861
|
+
readonly format: "double";
|
|
2862
|
+
};
|
|
2863
|
+
readonly epaPerPlay: {
|
|
2864
|
+
readonly type: "number";
|
|
2865
|
+
readonly format: "double";
|
|
2866
|
+
};
|
|
2867
|
+
readonly totalEpa: {
|
|
2868
|
+
readonly type: "number";
|
|
2869
|
+
readonly format: "double";
|
|
2870
|
+
};
|
|
2871
|
+
readonly passingEpa: {
|
|
2872
|
+
readonly type: "number";
|
|
2873
|
+
readonly format: "double";
|
|
2874
|
+
};
|
|
2875
|
+
readonly epaPerPass: {
|
|
2876
|
+
readonly type: "number";
|
|
2877
|
+
readonly format: "double";
|
|
2878
|
+
};
|
|
2879
|
+
readonly rushingEpa: {
|
|
2880
|
+
readonly type: "number";
|
|
2881
|
+
readonly format: "double";
|
|
2882
|
+
};
|
|
2883
|
+
readonly epaPerRush: {
|
|
2884
|
+
readonly type: "number";
|
|
2885
|
+
readonly format: "double";
|
|
2886
|
+
};
|
|
2887
|
+
readonly successRate: {
|
|
2888
|
+
readonly type: "number";
|
|
2889
|
+
readonly format: "double";
|
|
2890
|
+
};
|
|
2891
|
+
readonly standardDownSuccessRate: {
|
|
2892
|
+
readonly type: "number";
|
|
2893
|
+
readonly format: "double";
|
|
2894
|
+
};
|
|
2895
|
+
readonly passingDownSuccessRate: {
|
|
2896
|
+
readonly type: "number";
|
|
2897
|
+
readonly format: "double";
|
|
2898
|
+
};
|
|
2899
|
+
readonly explosiveness: {
|
|
2900
|
+
readonly type: "number";
|
|
2901
|
+
readonly format: "double";
|
|
2902
|
+
};
|
|
2903
|
+
};
|
|
2904
|
+
readonly required: readonly ["teamId", "team", "homeAway", "lineScores", "points", "drives", "scoringOpportunities", "pointsPerOpportunity", "plays", "lineYards", "lineYardsPerRush", "secondLevelYards", "secondLevelYardsPerRush", "openFieldYards", "openFieldYardsPerRush", "epaPerPlay", "totalEpa", "passingEpa", "epaPerPass", "rushingEpa", "epaPerRush", "successRate", "standardDownSuccessRate", "passingDownSuccessRate", "explosiveness"];
|
|
2905
|
+
readonly type: "object";
|
|
2906
|
+
readonly additionalProperties: false;
|
|
2907
|
+
};
|
|
2908
|
+
export declare const $LiveGamePlay: {
|
|
2909
|
+
readonly properties: {
|
|
2910
|
+
readonly id: {
|
|
2911
|
+
readonly type: "string";
|
|
2912
|
+
};
|
|
2913
|
+
readonly homeScore: {
|
|
2914
|
+
readonly type: "integer";
|
|
2915
|
+
readonly format: "int32";
|
|
2916
|
+
};
|
|
2917
|
+
readonly awayScore: {
|
|
2918
|
+
readonly type: "integer";
|
|
2919
|
+
readonly format: "int32";
|
|
2920
|
+
};
|
|
2921
|
+
readonly period: {
|
|
2922
|
+
readonly type: "integer";
|
|
2923
|
+
readonly format: "int32";
|
|
2924
|
+
};
|
|
2925
|
+
readonly clock: {
|
|
2926
|
+
readonly type: "string";
|
|
2927
|
+
};
|
|
2928
|
+
readonly wallClock: {
|
|
2929
|
+
readonly type: "string";
|
|
2930
|
+
readonly format: "date-time";
|
|
2931
|
+
};
|
|
2932
|
+
readonly teamId: {
|
|
2933
|
+
readonly type: "integer";
|
|
2934
|
+
readonly format: "int32";
|
|
2935
|
+
};
|
|
2936
|
+
readonly team: {
|
|
2937
|
+
readonly type: "string";
|
|
2938
|
+
};
|
|
2939
|
+
readonly down: {
|
|
2940
|
+
readonly type: "integer";
|
|
2941
|
+
readonly format: "int32";
|
|
2942
|
+
};
|
|
2943
|
+
readonly distance: {
|
|
2944
|
+
readonly type: "integer";
|
|
2945
|
+
readonly format: "int32";
|
|
2946
|
+
};
|
|
2947
|
+
readonly yardsToGoal: {
|
|
2948
|
+
readonly type: "integer";
|
|
2949
|
+
readonly format: "int32";
|
|
2950
|
+
};
|
|
2951
|
+
readonly yardsGained: {
|
|
2952
|
+
readonly type: "integer";
|
|
2953
|
+
readonly format: "int32";
|
|
2954
|
+
};
|
|
2955
|
+
readonly playTypeId: {
|
|
2956
|
+
readonly type: "integer";
|
|
2957
|
+
readonly format: "int32";
|
|
2958
|
+
};
|
|
2959
|
+
readonly playType: {
|
|
2960
|
+
readonly type: "string";
|
|
2961
|
+
};
|
|
2962
|
+
readonly epa: {
|
|
2963
|
+
readonly type: "number";
|
|
2964
|
+
readonly format: "double";
|
|
2965
|
+
readonly nullable: true;
|
|
2966
|
+
};
|
|
2967
|
+
readonly garbageTime: {
|
|
2968
|
+
readonly type: "boolean";
|
|
2969
|
+
};
|
|
2970
|
+
readonly success: {
|
|
2971
|
+
readonly type: "boolean";
|
|
2972
|
+
};
|
|
2973
|
+
readonly rushPash: {
|
|
2974
|
+
readonly type: "string";
|
|
2975
|
+
readonly enum: readonly ["rush", "pass", "other"];
|
|
2976
|
+
};
|
|
2977
|
+
readonly downType: {
|
|
2978
|
+
readonly type: "string";
|
|
2979
|
+
readonly enum: readonly ["passing", "standard"];
|
|
2980
|
+
};
|
|
2981
|
+
readonly playText: {
|
|
2982
|
+
readonly type: "string";
|
|
2983
|
+
};
|
|
2984
|
+
};
|
|
2985
|
+
readonly required: readonly ["id", "homeScore", "awayScore", "period", "clock", "wallClock", "teamId", "team", "down", "distance", "yardsToGoal", "yardsGained", "playTypeId", "playType", "epa", "garbageTime", "success", "rushPash", "downType", "playText"];
|
|
2986
|
+
readonly type: "object";
|
|
2987
|
+
readonly additionalProperties: false;
|
|
2988
|
+
};
|
|
2989
|
+
export declare const $LiveGameDrive: {
|
|
2990
|
+
readonly properties: {
|
|
2991
|
+
readonly id: {
|
|
2992
|
+
readonly type: "string";
|
|
2993
|
+
};
|
|
2994
|
+
readonly offenseId: {
|
|
2995
|
+
readonly type: "integer";
|
|
2996
|
+
readonly format: "int32";
|
|
2997
|
+
};
|
|
2998
|
+
readonly offense: {
|
|
2999
|
+
readonly type: "string";
|
|
3000
|
+
};
|
|
3001
|
+
readonly defenseId: {
|
|
3002
|
+
readonly type: "integer";
|
|
3003
|
+
readonly format: "int32";
|
|
3004
|
+
};
|
|
3005
|
+
readonly defense: {
|
|
3006
|
+
readonly type: "string";
|
|
3007
|
+
};
|
|
3008
|
+
readonly playCount: {
|
|
3009
|
+
readonly type: "integer";
|
|
3010
|
+
readonly format: "int32";
|
|
3011
|
+
};
|
|
3012
|
+
readonly yards: {
|
|
3013
|
+
readonly type: "integer";
|
|
3014
|
+
readonly format: "int32";
|
|
3015
|
+
};
|
|
3016
|
+
readonly startPeriod: {
|
|
3017
|
+
readonly type: "integer";
|
|
3018
|
+
readonly format: "int32";
|
|
3019
|
+
};
|
|
3020
|
+
readonly startClock: {
|
|
3021
|
+
readonly type: "string";
|
|
3022
|
+
readonly nullable: true;
|
|
3023
|
+
};
|
|
3024
|
+
readonly startYardsToGoal: {
|
|
3025
|
+
readonly type: "integer";
|
|
3026
|
+
readonly format: "int32";
|
|
3027
|
+
};
|
|
3028
|
+
readonly endPeriod: {
|
|
3029
|
+
readonly type: "integer";
|
|
3030
|
+
readonly format: "int32";
|
|
3031
|
+
readonly nullable: true;
|
|
3032
|
+
};
|
|
3033
|
+
readonly endClock: {
|
|
3034
|
+
readonly type: "string";
|
|
3035
|
+
readonly nullable: true;
|
|
3036
|
+
};
|
|
3037
|
+
readonly endYardsToGoal: {
|
|
3038
|
+
readonly type: "integer";
|
|
3039
|
+
readonly format: "int32";
|
|
3040
|
+
readonly nullable: true;
|
|
3041
|
+
};
|
|
3042
|
+
readonly duration: {
|
|
3043
|
+
readonly type: "string";
|
|
3044
|
+
readonly nullable: true;
|
|
3045
|
+
};
|
|
3046
|
+
readonly scoringOpportunity: {
|
|
3047
|
+
readonly type: "boolean";
|
|
3048
|
+
};
|
|
3049
|
+
readonly result: {
|
|
3050
|
+
readonly type: "string";
|
|
3051
|
+
};
|
|
3052
|
+
readonly pointsGained: {
|
|
3053
|
+
readonly type: "integer";
|
|
3054
|
+
readonly format: "int32";
|
|
3055
|
+
};
|
|
3056
|
+
readonly plays: {
|
|
3057
|
+
readonly items: {
|
|
3058
|
+
readonly $ref: "#/components/schemas/LiveGamePlay";
|
|
3059
|
+
};
|
|
3060
|
+
readonly type: "array";
|
|
3061
|
+
};
|
|
3062
|
+
};
|
|
3063
|
+
readonly required: readonly ["id", "offenseId", "offense", "defenseId", "defense", "playCount", "yards", "startPeriod", "startClock", "startYardsToGoal", "endPeriod", "endClock", "endYardsToGoal", "duration", "scoringOpportunity", "result", "pointsGained", "plays"];
|
|
3064
|
+
readonly type: "object";
|
|
3065
|
+
readonly additionalProperties: false;
|
|
3066
|
+
};
|
|
3067
|
+
export declare const $LiveGame: {
|
|
3068
|
+
readonly properties: {
|
|
3069
|
+
readonly id: {
|
|
3070
|
+
readonly type: "integer";
|
|
3071
|
+
readonly format: "int32";
|
|
3072
|
+
};
|
|
3073
|
+
readonly status: {
|
|
3074
|
+
readonly type: "string";
|
|
3075
|
+
};
|
|
3076
|
+
readonly period: {
|
|
3077
|
+
readonly type: "integer";
|
|
3078
|
+
readonly format: "int32";
|
|
3079
|
+
readonly nullable: true;
|
|
3080
|
+
};
|
|
3081
|
+
readonly clock: {
|
|
3082
|
+
readonly type: "string";
|
|
3083
|
+
};
|
|
3084
|
+
readonly possession: {
|
|
3085
|
+
readonly type: "string";
|
|
3086
|
+
};
|
|
3087
|
+
readonly down: {
|
|
3088
|
+
readonly type: "integer";
|
|
3089
|
+
readonly format: "int32";
|
|
3090
|
+
readonly nullable: true;
|
|
3091
|
+
};
|
|
3092
|
+
readonly distance: {
|
|
3093
|
+
readonly type: "integer";
|
|
3094
|
+
readonly format: "int32";
|
|
3095
|
+
readonly nullable: true;
|
|
3096
|
+
};
|
|
3097
|
+
readonly yardsToGoal: {
|
|
3098
|
+
readonly type: "integer";
|
|
3099
|
+
readonly format: "int32";
|
|
3100
|
+
readonly nullable: true;
|
|
3101
|
+
};
|
|
3102
|
+
readonly teams: {
|
|
3103
|
+
readonly items: {
|
|
3104
|
+
readonly $ref: "#/components/schemas/LiveGameTeam";
|
|
3105
|
+
};
|
|
3106
|
+
readonly type: "array";
|
|
3107
|
+
};
|
|
3108
|
+
readonly drives: {
|
|
3109
|
+
readonly items: {
|
|
3110
|
+
readonly $ref: "#/components/schemas/LiveGameDrive";
|
|
3111
|
+
};
|
|
3112
|
+
readonly type: "array";
|
|
3113
|
+
};
|
|
3114
|
+
};
|
|
3115
|
+
readonly required: readonly ["id", "status", "period", "clock", "possession", "down", "distance", "yardsToGoal", "teams", "drives"];
|
|
3116
|
+
readonly type: "object";
|
|
3117
|
+
readonly additionalProperties: false;
|
|
3118
|
+
};
|
|
3119
|
+
export declare const $GameLine: {
|
|
3120
|
+
readonly properties: {
|
|
3121
|
+
readonly provider: {
|
|
3122
|
+
readonly type: "string";
|
|
3123
|
+
};
|
|
3124
|
+
readonly spread: {
|
|
3125
|
+
readonly type: "number";
|
|
3126
|
+
readonly format: "double";
|
|
3127
|
+
readonly nullable: true;
|
|
3128
|
+
};
|
|
3129
|
+
readonly formattedSpread: {
|
|
3130
|
+
readonly type: "string";
|
|
3131
|
+
};
|
|
3132
|
+
readonly spreadOpen: {
|
|
3133
|
+
readonly type: "number";
|
|
3134
|
+
readonly format: "double";
|
|
3135
|
+
readonly nullable: true;
|
|
3136
|
+
};
|
|
3137
|
+
readonly overUnder: {
|
|
3138
|
+
readonly type: "number";
|
|
3139
|
+
readonly format: "double";
|
|
3140
|
+
readonly nullable: true;
|
|
3141
|
+
};
|
|
3142
|
+
readonly overUnderOpen: {
|
|
3143
|
+
readonly type: "number";
|
|
3144
|
+
readonly format: "double";
|
|
3145
|
+
readonly nullable: true;
|
|
3146
|
+
};
|
|
3147
|
+
readonly homeMoneyline: {
|
|
3148
|
+
readonly type: "number";
|
|
3149
|
+
readonly format: "double";
|
|
3150
|
+
readonly nullable: true;
|
|
3151
|
+
};
|
|
3152
|
+
readonly awayMoneyline: {
|
|
3153
|
+
readonly type: "number";
|
|
3154
|
+
readonly format: "double";
|
|
3155
|
+
readonly nullable: true;
|
|
3156
|
+
};
|
|
3157
|
+
};
|
|
3158
|
+
readonly required: readonly ["provider", "spread", "formattedSpread", "spreadOpen", "overUnder", "overUnderOpen", "homeMoneyline", "awayMoneyline"];
|
|
3159
|
+
readonly type: "object";
|
|
3160
|
+
readonly additionalProperties: false;
|
|
3161
|
+
};
|
|
3162
|
+
export declare const $BettingGame: {
|
|
3163
|
+
readonly properties: {
|
|
3164
|
+
readonly id: {
|
|
3165
|
+
readonly type: "integer";
|
|
3166
|
+
readonly format: "int32";
|
|
3167
|
+
};
|
|
3168
|
+
readonly season: {
|
|
3169
|
+
readonly type: "integer";
|
|
3170
|
+
readonly format: "int32";
|
|
3171
|
+
};
|
|
3172
|
+
readonly seasonType: {
|
|
3173
|
+
readonly $ref: "#/components/schemas/SeasonType";
|
|
3174
|
+
};
|
|
3175
|
+
readonly week: {
|
|
3176
|
+
readonly type: "integer";
|
|
3177
|
+
readonly format: "int32";
|
|
3178
|
+
};
|
|
3179
|
+
readonly startDate: {
|
|
3180
|
+
readonly type: "string";
|
|
3181
|
+
readonly format: "date-time";
|
|
3182
|
+
};
|
|
3183
|
+
readonly homeTeam: {
|
|
3184
|
+
readonly type: "string";
|
|
3185
|
+
};
|
|
3186
|
+
readonly homeConference: {
|
|
3187
|
+
readonly type: "string";
|
|
3188
|
+
readonly nullable: true;
|
|
3189
|
+
};
|
|
3190
|
+
readonly homeClassification: {
|
|
3191
|
+
readonly allOf: readonly [{
|
|
3192
|
+
readonly $ref: "#/components/schemas/DivisionClassification";
|
|
3193
|
+
}];
|
|
3194
|
+
readonly nullable: true;
|
|
3195
|
+
};
|
|
3196
|
+
readonly homeScore: {
|
|
3197
|
+
readonly type: "integer";
|
|
3198
|
+
readonly format: "int32";
|
|
3199
|
+
readonly nullable: true;
|
|
3200
|
+
};
|
|
3201
|
+
readonly awayTeam: {
|
|
3202
|
+
readonly type: "string";
|
|
3203
|
+
};
|
|
3204
|
+
readonly awayConference: {
|
|
3205
|
+
readonly type: "string";
|
|
3206
|
+
readonly nullable: true;
|
|
3207
|
+
};
|
|
3208
|
+
readonly awayClassification: {
|
|
3209
|
+
readonly allOf: readonly [{
|
|
3210
|
+
readonly $ref: "#/components/schemas/DivisionClassification";
|
|
3211
|
+
}];
|
|
3212
|
+
readonly nullable: true;
|
|
3213
|
+
};
|
|
3214
|
+
readonly awayScore: {
|
|
3215
|
+
readonly type: "integer";
|
|
3216
|
+
readonly format: "int32";
|
|
3217
|
+
readonly nullable: true;
|
|
3218
|
+
};
|
|
3219
|
+
readonly lines: {
|
|
3220
|
+
readonly items: {
|
|
3221
|
+
readonly $ref: "#/components/schemas/GameLine";
|
|
3222
|
+
};
|
|
3223
|
+
readonly type: "array";
|
|
3224
|
+
};
|
|
3225
|
+
};
|
|
3226
|
+
readonly required: readonly ["id", "season", "seasonType", "week", "startDate", "homeTeam", "homeConference", "homeClassification", "homeScore", "awayTeam", "awayConference", "awayClassification", "awayScore", "lines"];
|
|
3227
|
+
readonly type: "object";
|
|
3228
|
+
readonly additionalProperties: false;
|
|
3229
|
+
};
|
|
3230
|
+
export declare const $Game: {
|
|
3231
|
+
readonly properties: {
|
|
3232
|
+
readonly id: {
|
|
3233
|
+
readonly type: "integer";
|
|
3234
|
+
readonly format: "int32";
|
|
3235
|
+
};
|
|
3236
|
+
readonly season: {
|
|
3237
|
+
readonly type: "integer";
|
|
3238
|
+
readonly format: "int32";
|
|
3239
|
+
};
|
|
3240
|
+
readonly week: {
|
|
3241
|
+
readonly type: "integer";
|
|
3242
|
+
readonly format: "int32";
|
|
3243
|
+
};
|
|
3244
|
+
readonly seasonType: {
|
|
3245
|
+
readonly $ref: "#/components/schemas/SeasonType";
|
|
3246
|
+
};
|
|
3247
|
+
readonly startDate: {
|
|
3248
|
+
readonly type: "string";
|
|
3249
|
+
readonly format: "date-time";
|
|
3250
|
+
};
|
|
3251
|
+
readonly startTimeTBD: {
|
|
3252
|
+
readonly type: "boolean";
|
|
3253
|
+
};
|
|
3254
|
+
readonly completed: {
|
|
3255
|
+
readonly type: "boolean";
|
|
3256
|
+
};
|
|
3257
|
+
readonly neutralSite: {
|
|
3258
|
+
readonly type: "boolean";
|
|
3259
|
+
};
|
|
3260
|
+
readonly conferenceGame: {
|
|
3261
|
+
readonly type: "boolean";
|
|
3262
|
+
};
|
|
3263
|
+
readonly attendance: {
|
|
3264
|
+
readonly type: "integer";
|
|
3265
|
+
readonly format: "int32";
|
|
3266
|
+
readonly nullable: true;
|
|
3267
|
+
};
|
|
3268
|
+
readonly venueId: {
|
|
3269
|
+
readonly type: "integer";
|
|
3270
|
+
readonly format: "int32";
|
|
3271
|
+
readonly nullable: true;
|
|
3272
|
+
};
|
|
3273
|
+
readonly venue: {
|
|
3274
|
+
readonly type: "string";
|
|
3275
|
+
readonly nullable: true;
|
|
3276
|
+
};
|
|
3277
|
+
readonly homeId: {
|
|
3278
|
+
readonly type: "integer";
|
|
3279
|
+
readonly format: "int32";
|
|
3280
|
+
};
|
|
3281
|
+
readonly homeTeam: {
|
|
3282
|
+
readonly type: "string";
|
|
3283
|
+
};
|
|
3284
|
+
readonly homeConference: {
|
|
3285
|
+
readonly type: "string";
|
|
3286
|
+
readonly nullable: true;
|
|
3287
|
+
};
|
|
3288
|
+
readonly homeClassification: {
|
|
3289
|
+
readonly allOf: readonly [{
|
|
3290
|
+
readonly $ref: "#/components/schemas/DivisionClassification";
|
|
3291
|
+
}];
|
|
3292
|
+
readonly nullable: true;
|
|
3293
|
+
};
|
|
3294
|
+
readonly homePoints: {
|
|
3295
|
+
readonly type: "integer";
|
|
3296
|
+
readonly format: "int32";
|
|
3297
|
+
readonly nullable: true;
|
|
3298
|
+
};
|
|
3299
|
+
readonly homeLineScores: {
|
|
3300
|
+
readonly items: {
|
|
3301
|
+
readonly type: "number";
|
|
3302
|
+
readonly format: "double";
|
|
3303
|
+
};
|
|
3304
|
+
readonly type: "array";
|
|
3305
|
+
readonly nullable: true;
|
|
3306
|
+
readonly minItems: 4;
|
|
3307
|
+
};
|
|
3308
|
+
readonly homePostgameWinProbability: {
|
|
3309
|
+
readonly type: "number";
|
|
3310
|
+
readonly format: "double";
|
|
3311
|
+
readonly nullable: true;
|
|
3312
|
+
};
|
|
3313
|
+
readonly homePregameElo: {
|
|
3314
|
+
readonly type: "integer";
|
|
3315
|
+
readonly format: "int32";
|
|
3316
|
+
readonly nullable: true;
|
|
3317
|
+
};
|
|
3318
|
+
readonly homePostgameElo: {
|
|
3319
|
+
readonly type: "integer";
|
|
3320
|
+
readonly format: "int32";
|
|
3321
|
+
readonly nullable: true;
|
|
3322
|
+
};
|
|
3323
|
+
readonly awayId: {
|
|
3324
|
+
readonly type: "integer";
|
|
3325
|
+
readonly format: "int32";
|
|
3326
|
+
};
|
|
3327
|
+
readonly awayTeam: {
|
|
3328
|
+
readonly type: "string";
|
|
3329
|
+
};
|
|
3330
|
+
readonly awayConference: {
|
|
3331
|
+
readonly type: "string";
|
|
3332
|
+
readonly nullable: true;
|
|
3333
|
+
};
|
|
3334
|
+
readonly awayClassification: {
|
|
3335
|
+
readonly allOf: readonly [{
|
|
3336
|
+
readonly $ref: "#/components/schemas/DivisionClassification";
|
|
3337
|
+
}];
|
|
3338
|
+
readonly nullable: true;
|
|
3339
|
+
};
|
|
3340
|
+
readonly awayPoints: {
|
|
3341
|
+
readonly type: "integer";
|
|
3342
|
+
readonly format: "int32";
|
|
3343
|
+
readonly nullable: true;
|
|
3344
|
+
};
|
|
3345
|
+
readonly awayLineScores: {
|
|
3346
|
+
readonly items: {
|
|
3347
|
+
readonly type: "number";
|
|
3348
|
+
readonly format: "double";
|
|
3349
|
+
};
|
|
3350
|
+
readonly type: "array";
|
|
3351
|
+
readonly nullable: true;
|
|
3352
|
+
readonly minItems: 4;
|
|
3353
|
+
};
|
|
3354
|
+
readonly awayPostgameWinProbability: {
|
|
3355
|
+
readonly type: "number";
|
|
3356
|
+
readonly format: "double";
|
|
3357
|
+
readonly nullable: true;
|
|
3358
|
+
};
|
|
3359
|
+
readonly awayPregameElo: {
|
|
3360
|
+
readonly type: "integer";
|
|
3361
|
+
readonly format: "int32";
|
|
3362
|
+
readonly nullable: true;
|
|
3363
|
+
};
|
|
3364
|
+
readonly awayPostgameElo: {
|
|
3365
|
+
readonly type: "integer";
|
|
3366
|
+
readonly format: "int32";
|
|
3367
|
+
readonly nullable: true;
|
|
3368
|
+
};
|
|
3369
|
+
readonly excitementIndex: {
|
|
3370
|
+
readonly type: "number";
|
|
3371
|
+
readonly format: "double";
|
|
3372
|
+
readonly nullable: true;
|
|
3373
|
+
};
|
|
3374
|
+
readonly highlights: {
|
|
3375
|
+
readonly type: "string";
|
|
3376
|
+
readonly nullable: true;
|
|
3377
|
+
};
|
|
3378
|
+
readonly notes: {
|
|
3379
|
+
readonly type: "string";
|
|
3380
|
+
readonly nullable: true;
|
|
3381
|
+
};
|
|
3382
|
+
};
|
|
3383
|
+
readonly required: readonly ["id", "season", "week", "seasonType", "startDate", "startTimeTBD", "completed", "neutralSite", "conferenceGame", "attendance", "venueId", "venue", "homeId", "homeTeam", "homeConference", "homeClassification", "homePoints", "homeLineScores", "homePostgameWinProbability", "homePregameElo", "homePostgameElo", "awayId", "awayTeam", "awayConference", "awayClassification", "awayPoints", "awayLineScores", "awayPostgameWinProbability", "awayPregameElo", "awayPostgameElo", "excitementIndex", "highlights", "notes"];
|
|
3384
|
+
readonly type: "object";
|
|
3385
|
+
readonly additionalProperties: false;
|
|
3386
|
+
};
|
|
3387
|
+
export declare const $GameTeamStatsTeamStat: {
|
|
3388
|
+
readonly properties: {
|
|
3389
|
+
readonly category: {
|
|
3390
|
+
readonly type: "string";
|
|
3391
|
+
};
|
|
3392
|
+
readonly stat: {
|
|
3393
|
+
readonly type: "string";
|
|
3394
|
+
};
|
|
3395
|
+
};
|
|
3396
|
+
readonly required: readonly ["category", "stat"];
|
|
3397
|
+
readonly type: "object";
|
|
3398
|
+
readonly additionalProperties: false;
|
|
3399
|
+
};
|
|
3400
|
+
export declare const $GameTeamStatsTeam: {
|
|
3401
|
+
readonly properties: {
|
|
3402
|
+
readonly teamId: {
|
|
3403
|
+
readonly type: "integer";
|
|
3404
|
+
readonly format: "int32";
|
|
3405
|
+
};
|
|
3406
|
+
readonly team: {
|
|
3407
|
+
readonly type: "string";
|
|
3408
|
+
};
|
|
3409
|
+
readonly conference: {
|
|
3410
|
+
readonly type: "string";
|
|
3411
|
+
readonly nullable: true;
|
|
3412
|
+
};
|
|
3413
|
+
readonly homeAway: {
|
|
3414
|
+
readonly type: "string";
|
|
3415
|
+
readonly enum: readonly ["home", "away"];
|
|
3416
|
+
};
|
|
3417
|
+
readonly points: {
|
|
3418
|
+
readonly type: "integer";
|
|
3419
|
+
readonly format: "int32";
|
|
3420
|
+
readonly nullable: true;
|
|
3421
|
+
};
|
|
3422
|
+
readonly stats: {
|
|
3423
|
+
readonly items: {
|
|
3424
|
+
readonly $ref: "#/components/schemas/GameTeamStatsTeamStat";
|
|
3425
|
+
};
|
|
3426
|
+
readonly type: "array";
|
|
3427
|
+
};
|
|
3428
|
+
};
|
|
3429
|
+
readonly required: readonly ["teamId", "team", "conference", "homeAway", "points", "stats"];
|
|
3430
|
+
readonly type: "object";
|
|
3431
|
+
readonly additionalProperties: false;
|
|
3432
|
+
};
|
|
3433
|
+
export declare const $GameTeamStats: {
|
|
3434
|
+
readonly properties: {
|
|
3435
|
+
readonly id: {
|
|
3436
|
+
readonly type: "integer";
|
|
3437
|
+
readonly format: "int32";
|
|
3438
|
+
};
|
|
3439
|
+
readonly teams: {
|
|
3440
|
+
readonly items: {
|
|
3441
|
+
readonly $ref: "#/components/schemas/GameTeamStatsTeam";
|
|
3442
|
+
};
|
|
3443
|
+
readonly type: "array";
|
|
3444
|
+
};
|
|
3445
|
+
};
|
|
3446
|
+
readonly required: readonly ["id", "teams"];
|
|
3447
|
+
readonly type: "object";
|
|
3448
|
+
readonly additionalProperties: false;
|
|
3449
|
+
};
|
|
3450
|
+
export declare const $GamePlayerStatPlayer: {
|
|
3451
|
+
readonly properties: {
|
|
3452
|
+
readonly id: {
|
|
3453
|
+
readonly type: "string";
|
|
3454
|
+
};
|
|
3455
|
+
readonly name: {
|
|
3456
|
+
readonly type: "string";
|
|
3457
|
+
};
|
|
3458
|
+
readonly stat: {
|
|
3459
|
+
readonly type: "string";
|
|
3460
|
+
};
|
|
3461
|
+
};
|
|
3462
|
+
readonly required: readonly ["id", "name", "stat"];
|
|
3463
|
+
readonly type: "object";
|
|
3464
|
+
readonly additionalProperties: false;
|
|
3465
|
+
};
|
|
3466
|
+
export declare const $GamePlayerStatTypes: {
|
|
3467
|
+
readonly properties: {
|
|
3468
|
+
readonly name: {
|
|
3469
|
+
readonly type: "string";
|
|
3470
|
+
};
|
|
3471
|
+
readonly athletes: {
|
|
3472
|
+
readonly items: {
|
|
3473
|
+
readonly $ref: "#/components/schemas/GamePlayerStatPlayer";
|
|
3474
|
+
};
|
|
3475
|
+
readonly type: "array";
|
|
3476
|
+
};
|
|
3477
|
+
};
|
|
3478
|
+
readonly required: readonly ["name", "athletes"];
|
|
3479
|
+
readonly type: "object";
|
|
3480
|
+
readonly additionalProperties: false;
|
|
3481
|
+
};
|
|
3482
|
+
export declare const $GamePlayerStatCategories: {
|
|
3483
|
+
readonly properties: {
|
|
3484
|
+
readonly name: {
|
|
3485
|
+
readonly type: "string";
|
|
3486
|
+
};
|
|
3487
|
+
readonly types: {
|
|
3488
|
+
readonly items: {
|
|
3489
|
+
readonly $ref: "#/components/schemas/GamePlayerStatTypes";
|
|
3490
|
+
};
|
|
3491
|
+
readonly type: "array";
|
|
3492
|
+
};
|
|
3493
|
+
};
|
|
3494
|
+
readonly required: readonly ["name", "types"];
|
|
3495
|
+
readonly type: "object";
|
|
3496
|
+
readonly additionalProperties: false;
|
|
3497
|
+
};
|
|
3498
|
+
export declare const $GamePlayerStatsTeam: {
|
|
3499
|
+
readonly properties: {
|
|
3500
|
+
readonly team: {
|
|
3501
|
+
readonly type: "string";
|
|
3502
|
+
};
|
|
3503
|
+
readonly conference: {
|
|
3504
|
+
readonly type: "string";
|
|
3505
|
+
readonly nullable: true;
|
|
3506
|
+
};
|
|
3507
|
+
readonly homeAway: {
|
|
3508
|
+
readonly type: "string";
|
|
3509
|
+
readonly enum: readonly ["home", "away"];
|
|
3510
|
+
};
|
|
3511
|
+
readonly points: {
|
|
3512
|
+
readonly type: "integer";
|
|
3513
|
+
readonly format: "int32";
|
|
3514
|
+
readonly nullable: true;
|
|
3515
|
+
};
|
|
3516
|
+
readonly categories: {
|
|
3517
|
+
readonly items: {
|
|
3518
|
+
readonly $ref: "#/components/schemas/GamePlayerStatCategories";
|
|
3519
|
+
};
|
|
3520
|
+
readonly type: "array";
|
|
3521
|
+
};
|
|
3522
|
+
};
|
|
3523
|
+
readonly required: readonly ["team", "conference", "homeAway", "points", "categories"];
|
|
3524
|
+
readonly type: "object";
|
|
3525
|
+
readonly additionalProperties: false;
|
|
3526
|
+
};
|
|
3527
|
+
export declare const $GamePlayerStats: {
|
|
3528
|
+
readonly properties: {
|
|
3529
|
+
readonly id: {
|
|
3530
|
+
readonly type: "integer";
|
|
3531
|
+
readonly format: "int32";
|
|
3532
|
+
};
|
|
3533
|
+
readonly teams: {
|
|
3534
|
+
readonly items: {
|
|
3535
|
+
readonly $ref: "#/components/schemas/GamePlayerStatsTeam";
|
|
3536
|
+
};
|
|
3537
|
+
readonly type: "array";
|
|
3538
|
+
};
|
|
3539
|
+
};
|
|
3540
|
+
readonly required: readonly ["id", "teams"];
|
|
3541
|
+
readonly type: "object";
|
|
3542
|
+
readonly additionalProperties: false;
|
|
3543
|
+
};
|
|
3544
|
+
export declare const $MediaType: {
|
|
3545
|
+
readonly enum: readonly ["tv", "radio", "web", "ppv", "mobile"];
|
|
3546
|
+
readonly type: "string";
|
|
3547
|
+
};
|
|
3548
|
+
export declare const $GameMedia: {
|
|
3549
|
+
readonly properties: {
|
|
3550
|
+
readonly id: {
|
|
3551
|
+
readonly type: "integer";
|
|
3552
|
+
readonly format: "int32";
|
|
3553
|
+
};
|
|
3554
|
+
readonly season: {
|
|
3555
|
+
readonly type: "integer";
|
|
3556
|
+
readonly format: "int32";
|
|
3557
|
+
};
|
|
3558
|
+
readonly week: {
|
|
3559
|
+
readonly type: "integer";
|
|
3560
|
+
readonly format: "int32";
|
|
3561
|
+
};
|
|
3562
|
+
readonly seasonType: {
|
|
3563
|
+
readonly $ref: "#/components/schemas/SeasonType";
|
|
3564
|
+
};
|
|
3565
|
+
readonly startTime: {
|
|
3566
|
+
readonly type: "string";
|
|
3567
|
+
readonly format: "date-time";
|
|
3568
|
+
};
|
|
3569
|
+
readonly isStartTimeTBD: {
|
|
3570
|
+
readonly type: "boolean";
|
|
3571
|
+
};
|
|
3572
|
+
readonly homeTeam: {
|
|
3573
|
+
readonly type: "string";
|
|
3574
|
+
};
|
|
3575
|
+
readonly homeConference: {
|
|
3576
|
+
readonly type: "string";
|
|
3577
|
+
readonly nullable: true;
|
|
3578
|
+
};
|
|
3579
|
+
readonly awayTeam: {
|
|
3580
|
+
readonly type: "string";
|
|
3581
|
+
};
|
|
3582
|
+
readonly awayConference: {
|
|
3583
|
+
readonly type: "string";
|
|
3584
|
+
readonly nullable: true;
|
|
3585
|
+
};
|
|
3586
|
+
readonly mediaType: {
|
|
3587
|
+
readonly $ref: "#/components/schemas/MediaType";
|
|
3588
|
+
};
|
|
3589
|
+
readonly outlet: {
|
|
3590
|
+
readonly type: "string";
|
|
3591
|
+
};
|
|
3592
|
+
};
|
|
3593
|
+
readonly required: readonly ["id", "season", "week", "seasonType", "startTime", "isStartTimeTBD", "homeTeam", "homeConference", "awayTeam", "awayConference", "mediaType", "outlet"];
|
|
3594
|
+
readonly type: "object";
|
|
3595
|
+
readonly additionalProperties: false;
|
|
3596
|
+
};
|
|
3597
|
+
export declare const $GameWeather: {
|
|
3598
|
+
readonly properties: {
|
|
3599
|
+
readonly id: {
|
|
3600
|
+
readonly type: "integer";
|
|
3601
|
+
readonly format: "int32";
|
|
3602
|
+
};
|
|
3603
|
+
readonly season: {
|
|
3604
|
+
readonly type: "integer";
|
|
3605
|
+
readonly format: "int32";
|
|
3606
|
+
};
|
|
3607
|
+
readonly week: {
|
|
3608
|
+
readonly type: "integer";
|
|
3609
|
+
readonly format: "int32";
|
|
3610
|
+
};
|
|
3611
|
+
readonly seasonType: {
|
|
3612
|
+
readonly $ref: "#/components/schemas/SeasonType";
|
|
3613
|
+
};
|
|
3614
|
+
readonly startTime: {
|
|
3615
|
+
readonly type: "string";
|
|
3616
|
+
readonly format: "date-time";
|
|
3617
|
+
};
|
|
3618
|
+
readonly gameIndoors: {
|
|
3619
|
+
readonly type: "boolean";
|
|
3620
|
+
};
|
|
3621
|
+
readonly homeTeam: {
|
|
3622
|
+
readonly type: "string";
|
|
3623
|
+
};
|
|
3624
|
+
readonly homeConference: {
|
|
3625
|
+
readonly type: "string";
|
|
3626
|
+
readonly nullable: true;
|
|
3627
|
+
};
|
|
3628
|
+
readonly awayTeam: {
|
|
3629
|
+
readonly type: "string";
|
|
3630
|
+
};
|
|
3631
|
+
readonly awayConference: {
|
|
3632
|
+
readonly type: "string";
|
|
3633
|
+
readonly nullable: true;
|
|
3634
|
+
};
|
|
3635
|
+
readonly venueId: {
|
|
3636
|
+
readonly type: "integer";
|
|
3637
|
+
readonly format: "int32";
|
|
3638
|
+
};
|
|
3639
|
+
readonly venue: {
|
|
3640
|
+
readonly type: "string";
|
|
3641
|
+
};
|
|
3642
|
+
readonly temperature: {
|
|
3643
|
+
readonly type: "number";
|
|
3644
|
+
readonly format: "double";
|
|
3645
|
+
readonly nullable: true;
|
|
3646
|
+
};
|
|
3647
|
+
readonly dewPoint: {
|
|
3648
|
+
readonly type: "number";
|
|
3649
|
+
readonly format: "double";
|
|
3650
|
+
readonly nullable: true;
|
|
3651
|
+
};
|
|
3652
|
+
readonly humidity: {
|
|
3653
|
+
readonly type: "number";
|
|
3654
|
+
readonly format: "double";
|
|
3655
|
+
readonly nullable: true;
|
|
3656
|
+
};
|
|
3657
|
+
readonly precipitation: {
|
|
3658
|
+
readonly type: "number";
|
|
3659
|
+
readonly format: "double";
|
|
3660
|
+
readonly nullable: true;
|
|
3661
|
+
};
|
|
3662
|
+
readonly snowfall: {
|
|
3663
|
+
readonly type: "number";
|
|
3664
|
+
readonly format: "double";
|
|
3665
|
+
readonly nullable: true;
|
|
3666
|
+
};
|
|
3667
|
+
readonly windDirection: {
|
|
3668
|
+
readonly type: "number";
|
|
3669
|
+
readonly format: "double";
|
|
3670
|
+
readonly nullable: true;
|
|
3671
|
+
};
|
|
3672
|
+
readonly windSpeed: {
|
|
3673
|
+
readonly type: "number";
|
|
3674
|
+
readonly format: "double";
|
|
3675
|
+
readonly nullable: true;
|
|
3676
|
+
};
|
|
3677
|
+
readonly pressure: {
|
|
3678
|
+
readonly type: "number";
|
|
3679
|
+
readonly format: "double";
|
|
3680
|
+
readonly nullable: true;
|
|
3681
|
+
};
|
|
3682
|
+
readonly weatherConditionCode: {
|
|
3683
|
+
readonly type: "number";
|
|
3684
|
+
readonly format: "double";
|
|
3685
|
+
readonly nullable: true;
|
|
3686
|
+
};
|
|
3687
|
+
readonly weatherCondition: {
|
|
3688
|
+
readonly type: "string";
|
|
3689
|
+
readonly nullable: true;
|
|
3690
|
+
};
|
|
3691
|
+
};
|
|
3692
|
+
readonly required: readonly ["id", "season", "week", "seasonType", "startTime", "gameIndoors", "homeTeam", "homeConference", "awayTeam", "awayConference", "venueId", "venue", "temperature", "dewPoint", "humidity", "precipitation", "snowfall", "windDirection", "windSpeed", "pressure", "weatherConditionCode", "weatherCondition"];
|
|
3693
|
+
readonly type: "object";
|
|
3694
|
+
readonly additionalProperties: false;
|
|
3695
|
+
};
|
|
3696
|
+
export declare const $TeamRecord: {
|
|
3697
|
+
readonly properties: {
|
|
3698
|
+
readonly games: {
|
|
3699
|
+
readonly type: "integer";
|
|
3700
|
+
readonly format: "int32";
|
|
3701
|
+
};
|
|
3702
|
+
readonly wins: {
|
|
3703
|
+
readonly type: "integer";
|
|
3704
|
+
readonly format: "int32";
|
|
3705
|
+
};
|
|
3706
|
+
readonly losses: {
|
|
3707
|
+
readonly type: "integer";
|
|
3708
|
+
readonly format: "int32";
|
|
3709
|
+
};
|
|
3710
|
+
readonly ties: {
|
|
3711
|
+
readonly type: "integer";
|
|
3712
|
+
readonly format: "int32";
|
|
3713
|
+
};
|
|
3714
|
+
};
|
|
3715
|
+
readonly required: readonly ["games", "wins", "losses", "ties"];
|
|
3716
|
+
readonly type: "object";
|
|
3717
|
+
readonly additionalProperties: false;
|
|
3718
|
+
};
|
|
3719
|
+
export declare const $TeamRecords: {
|
|
3720
|
+
readonly properties: {
|
|
3721
|
+
readonly year: {
|
|
3722
|
+
readonly type: "integer";
|
|
3723
|
+
readonly format: "int32";
|
|
3724
|
+
};
|
|
3725
|
+
readonly teamId: {
|
|
3726
|
+
readonly type: "integer";
|
|
3727
|
+
readonly format: "int32";
|
|
3728
|
+
};
|
|
3729
|
+
readonly team: {
|
|
3730
|
+
readonly type: "string";
|
|
3731
|
+
};
|
|
3732
|
+
readonly classification: {
|
|
3733
|
+
readonly allOf: readonly [{
|
|
3734
|
+
readonly $ref: "#/components/schemas/DivisionClassification";
|
|
3735
|
+
}];
|
|
3736
|
+
readonly nullable: true;
|
|
3737
|
+
};
|
|
3738
|
+
readonly conference: {
|
|
3739
|
+
readonly type: "string";
|
|
3740
|
+
};
|
|
3741
|
+
readonly division: {
|
|
3742
|
+
readonly type: "string";
|
|
3743
|
+
};
|
|
3744
|
+
readonly expectedWins: {
|
|
3745
|
+
readonly type: "number";
|
|
3746
|
+
readonly format: "double";
|
|
3747
|
+
};
|
|
3748
|
+
readonly total: {
|
|
3749
|
+
readonly $ref: "#/components/schemas/TeamRecord";
|
|
3750
|
+
};
|
|
3751
|
+
readonly conferenceGames: {
|
|
3752
|
+
readonly $ref: "#/components/schemas/TeamRecord";
|
|
3753
|
+
};
|
|
3754
|
+
readonly homeGames: {
|
|
3755
|
+
readonly $ref: "#/components/schemas/TeamRecord";
|
|
3756
|
+
};
|
|
3757
|
+
readonly awayGames: {
|
|
3758
|
+
readonly $ref: "#/components/schemas/TeamRecord";
|
|
3759
|
+
};
|
|
3760
|
+
readonly neutralSiteGames: {
|
|
3761
|
+
readonly $ref: "#/components/schemas/TeamRecord";
|
|
3762
|
+
};
|
|
3763
|
+
};
|
|
3764
|
+
readonly required: readonly ["year", "teamId", "team", "classification", "conference", "division", "expectedWins", "total", "conferenceGames", "homeGames", "awayGames", "neutralSiteGames"];
|
|
3765
|
+
readonly type: "object";
|
|
3766
|
+
readonly additionalProperties: false;
|
|
3767
|
+
};
|
|
3768
|
+
export declare const $CalendarWeek: {
|
|
3769
|
+
readonly properties: {
|
|
3770
|
+
readonly season: {
|
|
3771
|
+
readonly type: "integer";
|
|
3772
|
+
readonly format: "int32";
|
|
3773
|
+
};
|
|
3774
|
+
readonly week: {
|
|
3775
|
+
readonly type: "integer";
|
|
3776
|
+
readonly format: "int32";
|
|
3777
|
+
};
|
|
3778
|
+
readonly seasonType: {
|
|
3779
|
+
readonly $ref: "#/components/schemas/SeasonType";
|
|
3780
|
+
};
|
|
3781
|
+
readonly firstGameStart: {
|
|
3782
|
+
readonly type: "string";
|
|
3783
|
+
readonly format: "date-time";
|
|
3784
|
+
};
|
|
3785
|
+
readonly lastGameStart: {
|
|
3786
|
+
readonly type: "string";
|
|
3787
|
+
readonly format: "date-time";
|
|
3788
|
+
};
|
|
3789
|
+
};
|
|
3790
|
+
readonly required: readonly ["season", "week", "seasonType", "firstGameStart", "lastGameStart"];
|
|
3791
|
+
readonly type: "object";
|
|
3792
|
+
readonly additionalProperties: false;
|
|
3793
|
+
};
|
|
3794
|
+
export declare const $GameStatus: {
|
|
3795
|
+
readonly enum: readonly ["scheduled", "in_progress", "completed"];
|
|
3796
|
+
readonly type: "string";
|
|
3797
|
+
};
|
|
3798
|
+
export declare const $ScoreboardGame: {
|
|
3799
|
+
readonly properties: {
|
|
3800
|
+
readonly id: {
|
|
3801
|
+
readonly type: "integer";
|
|
3802
|
+
readonly format: "int32";
|
|
3803
|
+
};
|
|
3804
|
+
readonly startDate: {
|
|
3805
|
+
readonly type: "string";
|
|
3806
|
+
readonly format: "date-time";
|
|
3807
|
+
};
|
|
3808
|
+
readonly startTimeTBD: {
|
|
3809
|
+
readonly type: "boolean";
|
|
3810
|
+
};
|
|
3811
|
+
readonly tv: {
|
|
3812
|
+
readonly type: "string";
|
|
3813
|
+
readonly nullable: true;
|
|
3814
|
+
};
|
|
3815
|
+
readonly neutralSite: {
|
|
3816
|
+
readonly type: "boolean";
|
|
3817
|
+
};
|
|
3818
|
+
readonly conferenceGame: {
|
|
3819
|
+
readonly type: "boolean";
|
|
3820
|
+
};
|
|
3821
|
+
readonly status: {
|
|
3822
|
+
readonly $ref: "#/components/schemas/GameStatus";
|
|
3823
|
+
};
|
|
3824
|
+
readonly period: {
|
|
3825
|
+
readonly type: "integer";
|
|
3826
|
+
readonly format: "int32";
|
|
3827
|
+
readonly nullable: true;
|
|
3828
|
+
};
|
|
3829
|
+
readonly clock: {
|
|
3830
|
+
readonly type: "string";
|
|
3831
|
+
readonly nullable: true;
|
|
3832
|
+
};
|
|
3833
|
+
readonly situation: {
|
|
3834
|
+
readonly type: "string";
|
|
3835
|
+
readonly nullable: true;
|
|
3836
|
+
};
|
|
3837
|
+
readonly possession: {
|
|
3838
|
+
readonly type: "string";
|
|
3839
|
+
readonly nullable: true;
|
|
3840
|
+
};
|
|
3841
|
+
readonly venue: {
|
|
3842
|
+
readonly properties: {
|
|
3843
|
+
readonly state: {
|
|
3844
|
+
readonly type: "string";
|
|
3845
|
+
readonly nullable: true;
|
|
3846
|
+
};
|
|
3847
|
+
readonly city: {
|
|
3848
|
+
readonly type: "string";
|
|
3849
|
+
readonly nullable: true;
|
|
3850
|
+
};
|
|
3851
|
+
readonly name: {
|
|
3852
|
+
readonly type: "string";
|
|
3853
|
+
};
|
|
3854
|
+
};
|
|
3855
|
+
readonly required: readonly ["state", "city", "name"];
|
|
3856
|
+
readonly type: "object";
|
|
3857
|
+
};
|
|
3858
|
+
readonly homeTeam: {
|
|
3859
|
+
readonly properties: {
|
|
3860
|
+
readonly points: {
|
|
3861
|
+
readonly type: "integer";
|
|
3862
|
+
readonly format: "int32";
|
|
3863
|
+
readonly nullable: true;
|
|
3864
|
+
};
|
|
3865
|
+
readonly classification: {
|
|
3866
|
+
readonly allOf: readonly [{
|
|
3867
|
+
readonly $ref: "#/components/schemas/DivisionClassification";
|
|
3868
|
+
}];
|
|
3869
|
+
readonly nullable: true;
|
|
3870
|
+
};
|
|
3871
|
+
readonly conference: {
|
|
3872
|
+
readonly type: "string";
|
|
3873
|
+
readonly nullable: true;
|
|
3874
|
+
};
|
|
3875
|
+
readonly name: {
|
|
3876
|
+
readonly type: "string";
|
|
3877
|
+
};
|
|
3878
|
+
readonly id: {
|
|
3879
|
+
readonly type: "integer";
|
|
3880
|
+
readonly format: "int32";
|
|
3881
|
+
};
|
|
3882
|
+
};
|
|
3883
|
+
readonly required: readonly ["points", "classification", "conference", "name", "id"];
|
|
3884
|
+
readonly type: "object";
|
|
3885
|
+
};
|
|
3886
|
+
readonly awayTeam: {
|
|
3887
|
+
readonly properties: {
|
|
3888
|
+
readonly points: {
|
|
3889
|
+
readonly type: "integer";
|
|
3890
|
+
readonly format: "int32";
|
|
3891
|
+
readonly nullable: true;
|
|
3892
|
+
};
|
|
3893
|
+
readonly classification: {
|
|
3894
|
+
readonly allOf: readonly [{
|
|
3895
|
+
readonly $ref: "#/components/schemas/DivisionClassification";
|
|
3896
|
+
}];
|
|
3897
|
+
readonly nullable: true;
|
|
3898
|
+
};
|
|
3899
|
+
readonly conference: {
|
|
3900
|
+
readonly type: "string";
|
|
3901
|
+
readonly nullable: true;
|
|
3902
|
+
};
|
|
3903
|
+
readonly name: {
|
|
3904
|
+
readonly type: "string";
|
|
3905
|
+
};
|
|
3906
|
+
readonly id: {
|
|
3907
|
+
readonly type: "integer";
|
|
3908
|
+
readonly format: "int32";
|
|
3909
|
+
};
|
|
3910
|
+
};
|
|
3911
|
+
readonly required: readonly ["points", "classification", "conference", "name", "id"];
|
|
3912
|
+
readonly type: "object";
|
|
3913
|
+
};
|
|
3914
|
+
readonly weather: {
|
|
3915
|
+
readonly properties: {
|
|
3916
|
+
readonly windDirection: {
|
|
3917
|
+
readonly type: "number";
|
|
3918
|
+
readonly format: "double";
|
|
3919
|
+
readonly nullable: true;
|
|
3920
|
+
};
|
|
3921
|
+
readonly windSpeed: {
|
|
3922
|
+
readonly type: "number";
|
|
3923
|
+
readonly format: "double";
|
|
3924
|
+
readonly nullable: true;
|
|
3925
|
+
};
|
|
3926
|
+
readonly description: {
|
|
3927
|
+
readonly type: "string";
|
|
3928
|
+
readonly nullable: true;
|
|
3929
|
+
};
|
|
3930
|
+
readonly temperature: {
|
|
3931
|
+
readonly type: "number";
|
|
3932
|
+
readonly format: "double";
|
|
3933
|
+
readonly nullable: true;
|
|
3934
|
+
};
|
|
3935
|
+
};
|
|
3936
|
+
readonly required: readonly ["windDirection", "windSpeed", "description", "temperature"];
|
|
3937
|
+
readonly type: "object";
|
|
3938
|
+
};
|
|
3939
|
+
readonly betting: {
|
|
3940
|
+
readonly properties: {
|
|
3941
|
+
readonly awayMoneyline: {
|
|
3942
|
+
readonly type: "number";
|
|
3943
|
+
readonly format: "double";
|
|
3944
|
+
readonly nullable: true;
|
|
3945
|
+
};
|
|
3946
|
+
readonly homeMoneyline: {
|
|
3947
|
+
readonly type: "number";
|
|
3948
|
+
readonly format: "double";
|
|
3949
|
+
readonly nullable: true;
|
|
3950
|
+
};
|
|
3951
|
+
readonly overUnder: {
|
|
3952
|
+
readonly type: "number";
|
|
3953
|
+
readonly format: "double";
|
|
3954
|
+
readonly nullable: true;
|
|
3955
|
+
};
|
|
3956
|
+
readonly spread: {
|
|
3957
|
+
readonly type: "number";
|
|
3958
|
+
readonly format: "double";
|
|
3959
|
+
readonly nullable: true;
|
|
3960
|
+
};
|
|
3961
|
+
};
|
|
3962
|
+
readonly required: readonly ["awayMoneyline", "homeMoneyline", "overUnder", "spread"];
|
|
3963
|
+
readonly type: "object";
|
|
3964
|
+
};
|
|
3965
|
+
};
|
|
3966
|
+
readonly required: readonly ["id", "startDate", "startTimeTBD", "tv", "neutralSite", "conferenceGame", "status", "period", "clock", "situation", "possession", "venue", "homeTeam", "awayTeam", "weather", "betting"];
|
|
3967
|
+
readonly type: "object";
|
|
3968
|
+
readonly additionalProperties: false;
|
|
3969
|
+
};
|
|
3970
|
+
export declare const $Drive: {
|
|
3971
|
+
readonly properties: {
|
|
3972
|
+
readonly offense: {
|
|
3973
|
+
readonly type: "string";
|
|
3974
|
+
};
|
|
3975
|
+
readonly offenseConference: {
|
|
3976
|
+
readonly type: "string";
|
|
3977
|
+
readonly nullable: true;
|
|
3978
|
+
};
|
|
3979
|
+
readonly defense: {
|
|
3980
|
+
readonly type: "string";
|
|
3981
|
+
};
|
|
3982
|
+
readonly defenseConference: {
|
|
3983
|
+
readonly type: "string";
|
|
3984
|
+
readonly nullable: true;
|
|
3985
|
+
};
|
|
3986
|
+
readonly gameId: {
|
|
3987
|
+
readonly type: "integer";
|
|
3988
|
+
readonly format: "int32";
|
|
3989
|
+
};
|
|
3990
|
+
readonly id: {
|
|
3991
|
+
readonly type: "string";
|
|
3992
|
+
};
|
|
3993
|
+
readonly driveNumber: {
|
|
3994
|
+
readonly type: "integer";
|
|
3995
|
+
readonly format: "int32";
|
|
3996
|
+
readonly nullable: true;
|
|
3997
|
+
};
|
|
3998
|
+
readonly scoring: {
|
|
3999
|
+
readonly type: "boolean";
|
|
4000
|
+
};
|
|
4001
|
+
readonly startPeriod: {
|
|
4002
|
+
readonly type: "integer";
|
|
4003
|
+
readonly format: "int32";
|
|
4004
|
+
};
|
|
4005
|
+
readonly startYardline: {
|
|
4006
|
+
readonly type: "integer";
|
|
4007
|
+
readonly format: "int32";
|
|
4008
|
+
};
|
|
4009
|
+
readonly startYardsToGoal: {
|
|
4010
|
+
readonly type: "integer";
|
|
4011
|
+
readonly format: "int32";
|
|
4012
|
+
};
|
|
4013
|
+
readonly startTime: {
|
|
4014
|
+
readonly properties: {
|
|
4015
|
+
readonly seconds: {
|
|
4016
|
+
readonly type: "integer";
|
|
4017
|
+
readonly format: "int32";
|
|
4018
|
+
readonly nullable: true;
|
|
4019
|
+
};
|
|
4020
|
+
readonly minutes: {
|
|
4021
|
+
readonly type: "integer";
|
|
4022
|
+
readonly format: "int32";
|
|
4023
|
+
readonly nullable: true;
|
|
4024
|
+
};
|
|
4025
|
+
};
|
|
4026
|
+
readonly required: readonly ["seconds", "minutes"];
|
|
4027
|
+
readonly type: "object";
|
|
4028
|
+
};
|
|
4029
|
+
readonly endPeriod: {
|
|
4030
|
+
readonly type: "integer";
|
|
4031
|
+
readonly format: "int32";
|
|
4032
|
+
};
|
|
4033
|
+
readonly endYardline: {
|
|
4034
|
+
readonly type: "integer";
|
|
4035
|
+
readonly format: "int32";
|
|
4036
|
+
};
|
|
4037
|
+
readonly endYardsToGoal: {
|
|
4038
|
+
readonly type: "integer";
|
|
4039
|
+
readonly format: "int32";
|
|
4040
|
+
};
|
|
4041
|
+
readonly endTime: {
|
|
4042
|
+
readonly properties: {
|
|
4043
|
+
readonly seconds: {
|
|
4044
|
+
readonly type: "integer";
|
|
4045
|
+
readonly format: "int32";
|
|
4046
|
+
readonly nullable: true;
|
|
4047
|
+
};
|
|
4048
|
+
readonly minutes: {
|
|
4049
|
+
readonly type: "integer";
|
|
4050
|
+
readonly format: "int32";
|
|
4051
|
+
readonly nullable: true;
|
|
4052
|
+
};
|
|
4053
|
+
};
|
|
4054
|
+
readonly required: readonly ["seconds", "minutes"];
|
|
4055
|
+
readonly type: "object";
|
|
4056
|
+
};
|
|
4057
|
+
readonly plays: {
|
|
4058
|
+
readonly type: "integer";
|
|
4059
|
+
readonly format: "int32";
|
|
4060
|
+
};
|
|
4061
|
+
readonly yards: {
|
|
4062
|
+
readonly type: "integer";
|
|
4063
|
+
readonly format: "int32";
|
|
4064
|
+
};
|
|
4065
|
+
readonly driveResult: {
|
|
4066
|
+
readonly type: "string";
|
|
4067
|
+
};
|
|
4068
|
+
readonly isHomeOffense: {
|
|
4069
|
+
readonly type: "boolean";
|
|
4070
|
+
};
|
|
4071
|
+
readonly startOffenseScore: {
|
|
4072
|
+
readonly type: "integer";
|
|
4073
|
+
readonly format: "int32";
|
|
4074
|
+
};
|
|
4075
|
+
readonly startDefenseScore: {
|
|
4076
|
+
readonly type: "integer";
|
|
4077
|
+
readonly format: "int32";
|
|
4078
|
+
};
|
|
4079
|
+
readonly endOffenseScore: {
|
|
4080
|
+
readonly type: "integer";
|
|
4081
|
+
readonly format: "int32";
|
|
4082
|
+
};
|
|
4083
|
+
readonly endDefenseScore: {
|
|
4084
|
+
readonly type: "integer";
|
|
4085
|
+
readonly format: "int32";
|
|
4086
|
+
};
|
|
4087
|
+
};
|
|
4088
|
+
readonly required: readonly ["offense", "offenseConference", "defense", "defenseConference", "gameId", "id", "driveNumber", "scoring", "startPeriod", "startYardline", "startYardsToGoal", "startTime", "endPeriod", "endYardline", "endYardsToGoal", "endTime", "plays", "yards", "driveResult", "isHomeOffense", "startOffenseScore", "startDefenseScore", "endOffenseScore", "endDefenseScore"];
|
|
4089
|
+
readonly type: "object";
|
|
4090
|
+
readonly additionalProperties: false;
|
|
4091
|
+
};
|
|
4092
|
+
export declare const $DraftTeam: {
|
|
4093
|
+
readonly properties: {
|
|
4094
|
+
readonly location: {
|
|
4095
|
+
readonly type: "string";
|
|
4096
|
+
};
|
|
4097
|
+
readonly nickname: {
|
|
4098
|
+
readonly type: "string";
|
|
4099
|
+
readonly nullable: true;
|
|
4100
|
+
};
|
|
4101
|
+
readonly displayName: {
|
|
4102
|
+
readonly type: "string";
|
|
4103
|
+
readonly nullable: true;
|
|
4104
|
+
};
|
|
4105
|
+
readonly logo: {
|
|
4106
|
+
readonly type: "string";
|
|
4107
|
+
readonly nullable: true;
|
|
4108
|
+
};
|
|
4109
|
+
};
|
|
4110
|
+
readonly required: readonly ["location", "nickname", "displayName", "logo"];
|
|
4111
|
+
readonly type: "object";
|
|
4112
|
+
readonly additionalProperties: false;
|
|
4113
|
+
};
|
|
4114
|
+
export declare const $DraftPosition: {
|
|
4115
|
+
readonly properties: {
|
|
4116
|
+
readonly name: {
|
|
4117
|
+
readonly type: "string";
|
|
4118
|
+
};
|
|
4119
|
+
readonly abbreviation: {
|
|
4120
|
+
readonly type: "string";
|
|
4121
|
+
};
|
|
4122
|
+
};
|
|
4123
|
+
readonly required: readonly ["name", "abbreviation"];
|
|
4124
|
+
readonly type: "object";
|
|
4125
|
+
readonly additionalProperties: false;
|
|
4126
|
+
};
|
|
4127
|
+
export declare const $DraftPick: {
|
|
4128
|
+
readonly properties: {
|
|
4129
|
+
readonly collegeAthleteId: {
|
|
4130
|
+
readonly type: "integer";
|
|
4131
|
+
readonly format: "int32";
|
|
4132
|
+
readonly nullable: true;
|
|
4133
|
+
};
|
|
4134
|
+
readonly nflAthleteId: {
|
|
4135
|
+
readonly type: "integer";
|
|
4136
|
+
readonly format: "int32";
|
|
4137
|
+
};
|
|
4138
|
+
readonly collegeId: {
|
|
4139
|
+
readonly type: "integer";
|
|
4140
|
+
readonly format: "int32";
|
|
4141
|
+
};
|
|
4142
|
+
readonly collegeTeam: {
|
|
4143
|
+
readonly type: "string";
|
|
4144
|
+
};
|
|
4145
|
+
readonly collegeConference: {
|
|
4146
|
+
readonly type: "string";
|
|
4147
|
+
readonly nullable: true;
|
|
4148
|
+
};
|
|
4149
|
+
readonly nflTeamId: {
|
|
4150
|
+
readonly type: "integer";
|
|
4151
|
+
readonly format: "int32";
|
|
4152
|
+
};
|
|
4153
|
+
readonly nflTeam: {
|
|
4154
|
+
readonly type: "string";
|
|
4155
|
+
};
|
|
4156
|
+
readonly year: {
|
|
4157
|
+
readonly type: "integer";
|
|
4158
|
+
readonly format: "int32";
|
|
4159
|
+
};
|
|
4160
|
+
readonly overall: {
|
|
4161
|
+
readonly type: "integer";
|
|
4162
|
+
readonly format: "int32";
|
|
4163
|
+
};
|
|
4164
|
+
readonly round: {
|
|
4165
|
+
readonly type: "integer";
|
|
4166
|
+
readonly format: "int32";
|
|
4167
|
+
};
|
|
4168
|
+
readonly pick: {
|
|
4169
|
+
readonly type: "integer";
|
|
4170
|
+
readonly format: "int32";
|
|
4171
|
+
};
|
|
4172
|
+
readonly name: {
|
|
4173
|
+
readonly type: "string";
|
|
4174
|
+
};
|
|
4175
|
+
readonly position: {
|
|
4176
|
+
readonly type: "string";
|
|
4177
|
+
};
|
|
4178
|
+
readonly height: {
|
|
4179
|
+
readonly type: "integer";
|
|
4180
|
+
readonly format: "int32";
|
|
4181
|
+
readonly nullable: true;
|
|
4182
|
+
};
|
|
4183
|
+
readonly weight: {
|
|
4184
|
+
readonly type: "integer";
|
|
4185
|
+
readonly format: "int32";
|
|
4186
|
+
readonly nullable: true;
|
|
4187
|
+
};
|
|
4188
|
+
readonly preDraftRanking: {
|
|
4189
|
+
readonly type: "integer";
|
|
4190
|
+
readonly format: "int32";
|
|
4191
|
+
readonly nullable: true;
|
|
4192
|
+
};
|
|
4193
|
+
readonly preDraftPositionRanking: {
|
|
4194
|
+
readonly type: "integer";
|
|
4195
|
+
readonly format: "int32";
|
|
4196
|
+
readonly nullable: true;
|
|
4197
|
+
};
|
|
4198
|
+
readonly preDraftGrade: {
|
|
4199
|
+
readonly type: "integer";
|
|
4200
|
+
readonly format: "int32";
|
|
4201
|
+
readonly nullable: true;
|
|
4202
|
+
};
|
|
4203
|
+
readonly hometownInfo: {
|
|
4204
|
+
readonly properties: {
|
|
4205
|
+
readonly countyFips: {
|
|
4206
|
+
readonly type: "string";
|
|
4207
|
+
readonly nullable: true;
|
|
4208
|
+
};
|
|
4209
|
+
readonly longitude: {
|
|
4210
|
+
readonly type: "string";
|
|
4211
|
+
readonly nullable: true;
|
|
4212
|
+
};
|
|
4213
|
+
readonly latitude: {
|
|
4214
|
+
readonly type: "string";
|
|
4215
|
+
readonly nullable: true;
|
|
4216
|
+
};
|
|
4217
|
+
readonly country: {
|
|
4218
|
+
readonly type: "string";
|
|
4219
|
+
readonly nullable: true;
|
|
4220
|
+
};
|
|
4221
|
+
readonly state: {
|
|
4222
|
+
readonly type: "string";
|
|
4223
|
+
readonly nullable: true;
|
|
4224
|
+
};
|
|
4225
|
+
readonly city: {
|
|
4226
|
+
readonly type: "string";
|
|
4227
|
+
readonly nullable: true;
|
|
4228
|
+
};
|
|
4229
|
+
};
|
|
4230
|
+
readonly required: readonly ["countyFips", "longitude", "latitude", "country", "state", "city"];
|
|
4231
|
+
readonly type: "object";
|
|
4232
|
+
};
|
|
4233
|
+
};
|
|
4234
|
+
readonly required: readonly ["collegeAthleteId", "nflAthleteId", "collegeId", "collegeTeam", "collegeConference", "nflTeamId", "nflTeam", "year", "overall", "round", "pick", "name", "position", "height", "weight", "preDraftRanking", "preDraftPositionRanking", "preDraftGrade", "hometownInfo"];
|
|
4235
|
+
readonly type: "object";
|
|
4236
|
+
readonly additionalProperties: false;
|
|
4237
|
+
};
|
|
4238
|
+
export declare const $CoachSeason: {
|
|
4239
|
+
readonly properties: {
|
|
4240
|
+
readonly school: {
|
|
4241
|
+
readonly type: "string";
|
|
4242
|
+
};
|
|
4243
|
+
readonly year: {
|
|
4244
|
+
readonly type: "integer";
|
|
4245
|
+
readonly format: "int32";
|
|
4246
|
+
};
|
|
4247
|
+
readonly games: {
|
|
4248
|
+
readonly type: "integer";
|
|
4249
|
+
readonly format: "int32";
|
|
4250
|
+
};
|
|
4251
|
+
readonly wins: {
|
|
4252
|
+
readonly type: "integer";
|
|
4253
|
+
readonly format: "int32";
|
|
4254
|
+
};
|
|
4255
|
+
readonly losses: {
|
|
4256
|
+
readonly type: "integer";
|
|
4257
|
+
readonly format: "int32";
|
|
4258
|
+
};
|
|
4259
|
+
readonly ties: {
|
|
4260
|
+
readonly type: "integer";
|
|
4261
|
+
readonly format: "int32";
|
|
4262
|
+
};
|
|
4263
|
+
readonly preseasonRank: {
|
|
4264
|
+
readonly type: "integer";
|
|
4265
|
+
readonly format: "int32";
|
|
4266
|
+
readonly nullable: true;
|
|
4267
|
+
};
|
|
4268
|
+
readonly postseasonRank: {
|
|
4269
|
+
readonly type: "integer";
|
|
4270
|
+
readonly format: "int32";
|
|
4271
|
+
readonly nullable: true;
|
|
4272
|
+
};
|
|
4273
|
+
readonly srs: {
|
|
4274
|
+
readonly type: "number";
|
|
4275
|
+
readonly format: "double";
|
|
4276
|
+
readonly nullable: true;
|
|
4277
|
+
};
|
|
4278
|
+
readonly spOverall: {
|
|
4279
|
+
readonly type: "number";
|
|
4280
|
+
readonly format: "double";
|
|
4281
|
+
readonly nullable: true;
|
|
4282
|
+
};
|
|
4283
|
+
readonly spOffense: {
|
|
4284
|
+
readonly type: "number";
|
|
4285
|
+
readonly format: "double";
|
|
4286
|
+
readonly nullable: true;
|
|
4287
|
+
};
|
|
4288
|
+
readonly spDefense: {
|
|
4289
|
+
readonly type: "number";
|
|
4290
|
+
readonly format: "double";
|
|
4291
|
+
readonly nullable: true;
|
|
4292
|
+
};
|
|
4293
|
+
};
|
|
4294
|
+
readonly required: readonly ["school", "year", "games", "wins", "losses", "ties", "preseasonRank", "postseasonRank", "srs", "spOverall", "spOffense", "spDefense"];
|
|
4295
|
+
readonly type: "object";
|
|
4296
|
+
readonly additionalProperties: false;
|
|
4297
|
+
};
|
|
4298
|
+
export declare const $Coach: {
|
|
4299
|
+
readonly properties: {
|
|
4300
|
+
readonly firstName: {
|
|
4301
|
+
readonly type: "string";
|
|
4302
|
+
};
|
|
4303
|
+
readonly lastName: {
|
|
4304
|
+
readonly type: "string";
|
|
4305
|
+
};
|
|
4306
|
+
readonly hireDate: {
|
|
4307
|
+
readonly type: "string";
|
|
4308
|
+
readonly format: "date";
|
|
4309
|
+
readonly nullable: true;
|
|
4310
|
+
};
|
|
4311
|
+
readonly seasons: {
|
|
4312
|
+
readonly items: {
|
|
4313
|
+
readonly $ref: "#/components/schemas/CoachSeason";
|
|
4314
|
+
};
|
|
4315
|
+
readonly type: "array";
|
|
4316
|
+
};
|
|
4317
|
+
};
|
|
4318
|
+
readonly required: readonly ["firstName", "lastName", "hireDate", "seasons"];
|
|
4319
|
+
readonly type: "object";
|
|
4320
|
+
readonly additionalProperties: false;
|
|
4321
|
+
};
|
|
4322
|
+
export declare const $StatsByQuarter: {
|
|
4323
|
+
readonly properties: {
|
|
4324
|
+
readonly total: {
|
|
4325
|
+
readonly type: "number";
|
|
4326
|
+
readonly format: "double";
|
|
4327
|
+
};
|
|
4328
|
+
readonly quarter1: {
|
|
4329
|
+
readonly type: "number";
|
|
4330
|
+
readonly format: "double";
|
|
4331
|
+
};
|
|
4332
|
+
readonly quarter2: {
|
|
4333
|
+
readonly type: "number";
|
|
4334
|
+
readonly format: "double";
|
|
4335
|
+
};
|
|
4336
|
+
readonly quarter3: {
|
|
4337
|
+
readonly type: "number";
|
|
4338
|
+
readonly format: "double";
|
|
4339
|
+
};
|
|
4340
|
+
readonly quarter4: {
|
|
4341
|
+
readonly type: "number";
|
|
4342
|
+
readonly format: "double";
|
|
4343
|
+
};
|
|
4344
|
+
};
|
|
4345
|
+
readonly required: readonly ["total", "quarter1", "quarter2", "quarter3", "quarter4"];
|
|
4346
|
+
readonly type: "object";
|
|
4347
|
+
readonly additionalProperties: false;
|
|
4348
|
+
};
|
|
4349
|
+
export declare const $TeamPPA: {
|
|
4350
|
+
readonly properties: {
|
|
4351
|
+
readonly team: {
|
|
4352
|
+
readonly type: "string";
|
|
4353
|
+
};
|
|
4354
|
+
readonly plays: {
|
|
4355
|
+
readonly type: "integer";
|
|
4356
|
+
readonly format: "int32";
|
|
4357
|
+
};
|
|
4358
|
+
readonly overall: {
|
|
4359
|
+
readonly $ref: "#/components/schemas/StatsByQuarter";
|
|
4360
|
+
};
|
|
4361
|
+
readonly passing: {
|
|
4362
|
+
readonly $ref: "#/components/schemas/StatsByQuarter";
|
|
4363
|
+
};
|
|
4364
|
+
readonly rushing: {
|
|
4365
|
+
readonly $ref: "#/components/schemas/StatsByQuarter";
|
|
4366
|
+
};
|
|
4367
|
+
};
|
|
4368
|
+
readonly required: readonly ["team", "plays", "overall", "passing", "rushing"];
|
|
4369
|
+
readonly type: "object";
|
|
4370
|
+
readonly additionalProperties: false;
|
|
4371
|
+
};
|
|
4372
|
+
export declare const $TeamSuccessRates: {
|
|
4373
|
+
readonly properties: {
|
|
4374
|
+
readonly team: {
|
|
4375
|
+
readonly type: "string";
|
|
4376
|
+
};
|
|
4377
|
+
readonly overall: {
|
|
4378
|
+
readonly $ref: "#/components/schemas/StatsByQuarter";
|
|
4379
|
+
};
|
|
4380
|
+
readonly standardDowns: {
|
|
4381
|
+
readonly $ref: "#/components/schemas/StatsByQuarter";
|
|
4382
|
+
};
|
|
4383
|
+
readonly passingDowns: {
|
|
4384
|
+
readonly $ref: "#/components/schemas/StatsByQuarter";
|
|
4385
|
+
};
|
|
4386
|
+
};
|
|
4387
|
+
readonly required: readonly ["team", "overall", "standardDowns", "passingDowns"];
|
|
4388
|
+
readonly type: "object";
|
|
4389
|
+
readonly additionalProperties: false;
|
|
4390
|
+
};
|
|
4391
|
+
export declare const $TeamExplosiveness: {
|
|
4392
|
+
readonly properties: {
|
|
4393
|
+
readonly team: {
|
|
4394
|
+
readonly type: "string";
|
|
4395
|
+
};
|
|
4396
|
+
readonly overall: {
|
|
4397
|
+
readonly $ref: "#/components/schemas/StatsByQuarter";
|
|
4398
|
+
};
|
|
4399
|
+
};
|
|
4400
|
+
readonly required: readonly ["team", "overall"];
|
|
4401
|
+
readonly type: "object";
|
|
4402
|
+
readonly additionalProperties: false;
|
|
4403
|
+
};
|
|
4404
|
+
export declare const $TeamRushingStats: {
|
|
4405
|
+
readonly properties: {
|
|
4406
|
+
readonly team: {
|
|
4407
|
+
readonly type: "string";
|
|
4408
|
+
};
|
|
4409
|
+
readonly powerSuccess: {
|
|
4410
|
+
readonly type: "number";
|
|
4411
|
+
readonly format: "double";
|
|
4412
|
+
};
|
|
4413
|
+
readonly stuffRate: {
|
|
4414
|
+
readonly type: "number";
|
|
4415
|
+
readonly format: "double";
|
|
4416
|
+
};
|
|
4417
|
+
readonly lineYards: {
|
|
4418
|
+
readonly type: "number";
|
|
4419
|
+
readonly format: "double";
|
|
4420
|
+
};
|
|
4421
|
+
readonly lineYardsAverage: {
|
|
4422
|
+
readonly type: "number";
|
|
4423
|
+
readonly format: "double";
|
|
4424
|
+
};
|
|
4425
|
+
readonly secondLevelYards: {
|
|
4426
|
+
readonly type: "number";
|
|
4427
|
+
readonly format: "double";
|
|
4428
|
+
};
|
|
4429
|
+
readonly secondLevelYardsAverage: {
|
|
4430
|
+
readonly type: "number";
|
|
4431
|
+
readonly format: "double";
|
|
4432
|
+
};
|
|
4433
|
+
readonly openFieldYards: {
|
|
4434
|
+
readonly type: "number";
|
|
4435
|
+
readonly format: "double";
|
|
4436
|
+
};
|
|
4437
|
+
readonly openFieldYardsAverage: {
|
|
4438
|
+
readonly type: "number";
|
|
4439
|
+
readonly format: "double";
|
|
4440
|
+
};
|
|
4441
|
+
};
|
|
4442
|
+
readonly required: readonly ["team", "powerSuccess", "stuffRate", "lineYards", "lineYardsAverage", "secondLevelYards", "secondLevelYardsAverage", "openFieldYards", "openFieldYardsAverage"];
|
|
4443
|
+
readonly type: "object";
|
|
4444
|
+
readonly additionalProperties: false;
|
|
4445
|
+
};
|
|
4446
|
+
export declare const $TeamHavoc: {
|
|
4447
|
+
readonly properties: {
|
|
4448
|
+
readonly team: {
|
|
4449
|
+
readonly type: "string";
|
|
4450
|
+
};
|
|
4451
|
+
readonly total: {
|
|
4452
|
+
readonly type: "number";
|
|
4453
|
+
readonly format: "double";
|
|
4454
|
+
};
|
|
4455
|
+
readonly frontSeven: {
|
|
4456
|
+
readonly type: "number";
|
|
4457
|
+
readonly format: "double";
|
|
4458
|
+
};
|
|
4459
|
+
readonly db: {
|
|
4460
|
+
readonly type: "number";
|
|
4461
|
+
readonly format: "double";
|
|
4462
|
+
};
|
|
4463
|
+
};
|
|
4464
|
+
readonly required: readonly ["team", "total", "frontSeven", "db"];
|
|
4465
|
+
readonly type: "object";
|
|
4466
|
+
readonly additionalProperties: false;
|
|
4467
|
+
};
|
|
4468
|
+
export declare const $TeamScoringOpportunities: {
|
|
4469
|
+
readonly properties: {
|
|
4470
|
+
readonly team: {
|
|
4471
|
+
readonly type: "string";
|
|
4472
|
+
};
|
|
4473
|
+
readonly opportunities: {
|
|
4474
|
+
readonly type: "integer";
|
|
4475
|
+
readonly format: "int32";
|
|
4476
|
+
};
|
|
4477
|
+
readonly points: {
|
|
4478
|
+
readonly type: "integer";
|
|
4479
|
+
readonly format: "int32";
|
|
4480
|
+
};
|
|
4481
|
+
readonly pointsPerOpportunity: {
|
|
4482
|
+
readonly type: "number";
|
|
4483
|
+
readonly format: "double";
|
|
4484
|
+
};
|
|
4485
|
+
};
|
|
4486
|
+
readonly required: readonly ["team", "opportunities", "points", "pointsPerOpportunity"];
|
|
4487
|
+
readonly type: "object";
|
|
4488
|
+
readonly additionalProperties: false;
|
|
4489
|
+
};
|
|
4490
|
+
export declare const $TeamFieldPosition: {
|
|
4491
|
+
readonly properties: {
|
|
4492
|
+
readonly team: {
|
|
4493
|
+
readonly type: "string";
|
|
4494
|
+
};
|
|
4495
|
+
readonly averageStart: {
|
|
4496
|
+
readonly type: "number";
|
|
4497
|
+
readonly format: "double";
|
|
4498
|
+
};
|
|
4499
|
+
readonly averageStartingPredictedPoints: {
|
|
4500
|
+
readonly type: "number";
|
|
4501
|
+
readonly format: "double";
|
|
4502
|
+
};
|
|
4503
|
+
};
|
|
4504
|
+
readonly required: readonly ["team", "averageStart", "averageStartingPredictedPoints"];
|
|
4505
|
+
readonly type: "object";
|
|
4506
|
+
readonly additionalProperties: false;
|
|
4507
|
+
};
|
|
4508
|
+
export declare const $PlayerGameUsage: {
|
|
4509
|
+
readonly properties: {
|
|
4510
|
+
readonly total: {
|
|
4511
|
+
readonly type: "number";
|
|
4512
|
+
readonly format: "double";
|
|
4513
|
+
};
|
|
4514
|
+
readonly quarter1: {
|
|
4515
|
+
readonly type: "number";
|
|
4516
|
+
readonly format: "double";
|
|
4517
|
+
};
|
|
4518
|
+
readonly quarter2: {
|
|
4519
|
+
readonly type: "number";
|
|
4520
|
+
readonly format: "double";
|
|
4521
|
+
};
|
|
4522
|
+
readonly quarter3: {
|
|
4523
|
+
readonly type: "number";
|
|
4524
|
+
readonly format: "double";
|
|
4525
|
+
};
|
|
4526
|
+
readonly quarter4: {
|
|
4527
|
+
readonly type: "number";
|
|
4528
|
+
readonly format: "double";
|
|
4529
|
+
};
|
|
4530
|
+
readonly rushing: {
|
|
4531
|
+
readonly type: "number";
|
|
4532
|
+
readonly format: "double";
|
|
4533
|
+
};
|
|
4534
|
+
readonly passing: {
|
|
4535
|
+
readonly type: "number";
|
|
4536
|
+
readonly format: "double";
|
|
4537
|
+
};
|
|
4538
|
+
readonly player: {
|
|
4539
|
+
readonly type: "string";
|
|
4540
|
+
};
|
|
4541
|
+
readonly team: {
|
|
4542
|
+
readonly type: "string";
|
|
4543
|
+
};
|
|
4544
|
+
readonly position: {
|
|
4545
|
+
readonly type: "string";
|
|
4546
|
+
};
|
|
4547
|
+
};
|
|
4548
|
+
readonly required: readonly ["total", "quarter1", "quarter2", "quarter3", "quarter4", "rushing", "passing", "player", "team", "position"];
|
|
4549
|
+
readonly type: "object";
|
|
4550
|
+
readonly additionalProperties: false;
|
|
4551
|
+
};
|
|
4552
|
+
export declare const $PlayerStatsByQuarter: {
|
|
4553
|
+
readonly properties: {
|
|
4554
|
+
readonly total: {
|
|
4555
|
+
readonly type: "number";
|
|
4556
|
+
readonly format: "double";
|
|
4557
|
+
};
|
|
4558
|
+
readonly quarter1: {
|
|
4559
|
+
readonly type: "number";
|
|
4560
|
+
readonly format: "double";
|
|
4561
|
+
};
|
|
4562
|
+
readonly quarter2: {
|
|
4563
|
+
readonly type: "number";
|
|
4564
|
+
readonly format: "double";
|
|
4565
|
+
};
|
|
4566
|
+
readonly quarter3: {
|
|
4567
|
+
readonly type: "number";
|
|
4568
|
+
readonly format: "double";
|
|
4569
|
+
};
|
|
4570
|
+
readonly quarter4: {
|
|
4571
|
+
readonly type: "number";
|
|
4572
|
+
readonly format: "double";
|
|
4573
|
+
};
|
|
4574
|
+
readonly rushing: {
|
|
4575
|
+
readonly type: "number";
|
|
4576
|
+
readonly format: "double";
|
|
4577
|
+
};
|
|
4578
|
+
readonly passing: {
|
|
4579
|
+
readonly type: "number";
|
|
4580
|
+
readonly format: "double";
|
|
4581
|
+
};
|
|
4582
|
+
};
|
|
4583
|
+
readonly required: readonly ["total", "quarter1", "quarter2", "quarter3", "quarter4", "rushing", "passing"];
|
|
4584
|
+
readonly type: "object";
|
|
4585
|
+
readonly additionalProperties: false;
|
|
4586
|
+
};
|
|
4587
|
+
export declare const $PlayerPPA: {
|
|
4588
|
+
readonly properties: {
|
|
4589
|
+
readonly player: {
|
|
4590
|
+
readonly type: "string";
|
|
4591
|
+
};
|
|
4592
|
+
readonly team: {
|
|
4593
|
+
readonly type: "string";
|
|
4594
|
+
};
|
|
4595
|
+
readonly position: {
|
|
4596
|
+
readonly type: "string";
|
|
4597
|
+
};
|
|
4598
|
+
readonly average: {
|
|
4599
|
+
readonly $ref: "#/components/schemas/PlayerStatsByQuarter";
|
|
4600
|
+
};
|
|
4601
|
+
readonly cumulative: {
|
|
4602
|
+
readonly $ref: "#/components/schemas/PlayerStatsByQuarter";
|
|
4603
|
+
};
|
|
4604
|
+
};
|
|
4605
|
+
readonly required: readonly ["player", "team", "position", "average", "cumulative"];
|
|
4606
|
+
readonly type: "object";
|
|
4607
|
+
readonly additionalProperties: false;
|
|
4608
|
+
};
|
|
4609
|
+
export declare const $AdvancedBoxScore: {
|
|
4610
|
+
readonly properties: {
|
|
4611
|
+
readonly gameInfo: {
|
|
4612
|
+
readonly properties: {
|
|
4613
|
+
readonly excitement: {
|
|
4614
|
+
readonly type: "number";
|
|
4615
|
+
readonly format: "double";
|
|
4616
|
+
};
|
|
4617
|
+
readonly homeWinner: {
|
|
4618
|
+
readonly type: "boolean";
|
|
4619
|
+
};
|
|
4620
|
+
readonly awayWinProb: {
|
|
4621
|
+
readonly type: "number";
|
|
4622
|
+
readonly format: "double";
|
|
4623
|
+
};
|
|
4624
|
+
readonly awayPoints: {
|
|
4625
|
+
readonly type: "integer";
|
|
4626
|
+
readonly format: "int32";
|
|
4627
|
+
};
|
|
4628
|
+
readonly awayTeam: {
|
|
4629
|
+
readonly type: "string";
|
|
4630
|
+
};
|
|
4631
|
+
readonly homeWinProb: {
|
|
4632
|
+
readonly type: "number";
|
|
4633
|
+
readonly format: "double";
|
|
4634
|
+
};
|
|
4635
|
+
readonly homePoints: {
|
|
4636
|
+
readonly type: "integer";
|
|
4637
|
+
readonly format: "int32";
|
|
4638
|
+
};
|
|
4639
|
+
readonly homeTeam: {
|
|
4640
|
+
readonly type: "string";
|
|
4641
|
+
};
|
|
4642
|
+
};
|
|
4643
|
+
readonly required: readonly ["excitement", "homeWinner", "awayWinProb", "awayPoints", "awayTeam", "homeWinProb", "homePoints", "homeTeam"];
|
|
4644
|
+
readonly type: "object";
|
|
4645
|
+
};
|
|
4646
|
+
readonly teams: {
|
|
4647
|
+
readonly properties: {
|
|
4648
|
+
readonly fieldPosition: {
|
|
4649
|
+
readonly items: {
|
|
4650
|
+
readonly $ref: "#/components/schemas/TeamFieldPosition";
|
|
4651
|
+
};
|
|
4652
|
+
readonly type: "array";
|
|
4653
|
+
};
|
|
4654
|
+
readonly scoringOpportunities: {
|
|
4655
|
+
readonly items: {
|
|
4656
|
+
readonly $ref: "#/components/schemas/TeamScoringOpportunities";
|
|
4657
|
+
};
|
|
4658
|
+
readonly type: "array";
|
|
4659
|
+
};
|
|
4660
|
+
readonly havoc: {
|
|
4661
|
+
readonly items: {
|
|
4662
|
+
readonly $ref: "#/components/schemas/TeamHavoc";
|
|
4663
|
+
};
|
|
4664
|
+
readonly type: "array";
|
|
4665
|
+
};
|
|
4666
|
+
readonly rushing: {
|
|
4667
|
+
readonly items: {
|
|
4668
|
+
readonly $ref: "#/components/schemas/TeamRushingStats";
|
|
4669
|
+
};
|
|
4670
|
+
readonly type: "array";
|
|
4671
|
+
};
|
|
4672
|
+
readonly explosiveness: {
|
|
4673
|
+
readonly items: {
|
|
4674
|
+
readonly $ref: "#/components/schemas/TeamExplosiveness";
|
|
4675
|
+
};
|
|
4676
|
+
readonly type: "array";
|
|
4677
|
+
};
|
|
4678
|
+
readonly successRates: {
|
|
4679
|
+
readonly items: {
|
|
4680
|
+
readonly $ref: "#/components/schemas/TeamSuccessRates";
|
|
4681
|
+
};
|
|
4682
|
+
readonly type: "array";
|
|
4683
|
+
};
|
|
4684
|
+
readonly cumulativePpa: {
|
|
4685
|
+
readonly items: {
|
|
4686
|
+
readonly $ref: "#/components/schemas/TeamPPA";
|
|
4687
|
+
};
|
|
4688
|
+
readonly type: "array";
|
|
4689
|
+
};
|
|
4690
|
+
readonly ppa: {
|
|
4691
|
+
readonly items: {
|
|
4692
|
+
readonly $ref: "#/components/schemas/TeamPPA";
|
|
4693
|
+
};
|
|
4694
|
+
readonly type: "array";
|
|
4695
|
+
};
|
|
4696
|
+
};
|
|
4697
|
+
readonly required: readonly ["fieldPosition", "scoringOpportunities", "havoc", "rushing", "explosiveness", "successRates", "cumulativePpa", "ppa"];
|
|
4698
|
+
readonly type: "object";
|
|
4699
|
+
};
|
|
4700
|
+
readonly players: {
|
|
4701
|
+
readonly properties: {
|
|
4702
|
+
readonly ppa: {
|
|
4703
|
+
readonly items: {
|
|
4704
|
+
readonly $ref: "#/components/schemas/PlayerPPA";
|
|
4705
|
+
};
|
|
4706
|
+
readonly type: "array";
|
|
4707
|
+
};
|
|
4708
|
+
readonly usage: {
|
|
4709
|
+
readonly items: {
|
|
4710
|
+
readonly $ref: "#/components/schemas/PlayerGameUsage";
|
|
4711
|
+
};
|
|
4712
|
+
readonly type: "array";
|
|
4713
|
+
};
|
|
4714
|
+
};
|
|
4715
|
+
readonly required: readonly ["ppa", "usage"];
|
|
4716
|
+
readonly type: "object";
|
|
4717
|
+
};
|
|
4718
|
+
};
|
|
4719
|
+
readonly required: readonly ["gameInfo", "teams", "players"];
|
|
4720
|
+
readonly type: "object";
|
|
4721
|
+
readonly additionalProperties: false;
|
|
4722
|
+
};
|