26 lines
563 B
JavaScript
26 lines
563 B
JavaScript
const bullpenSession = {
|
|
pitcherId: 1,
|
|
startedAt: new Date(2025, 3, 22, 16, 5, 13),
|
|
finishedAt: new Date(2025, 3, 22, 16, 23, 45),
|
|
precisionRate: 33,
|
|
strikeRate: 24,
|
|
ballRate: 76,
|
|
fastballRate: 55,
|
|
offSpeedRate: 78,
|
|
pitches: [{
|
|
pitchTypeId: 1,
|
|
pitchTime: new Date(2025, 3, 22, 16, 7, 21),
|
|
aimedArea: 11,
|
|
hitArea: 12
|
|
}, {
|
|
pitchTypeId: 4,
|
|
pitchTime: new Date(2025, 3, 22, 16, 9, 57),
|
|
aimedArea: 6,
|
|
hitArea: 14
|
|
}]
|
|
};
|
|
|
|
module.exports = {
|
|
bullpenSession
|
|
}
|