Skip to contents

MLB Jobs Umpires

Usage

mlb_jobs_umpires(sport_id = NULL, date = NULL)

Arguments

sport_id

Return information for a given sport_id.

date

Return information for a given date.

Value

Returns a tibble with the following columns

col_nametypesdescription
jersey_numbercharacterUmpire jersey number.
jobcharacterJob title (e.g. 'Umpire').
job_codecharacterFour-letter job type code (e.g. 'UMPR').
titlecharacterSpecific role title for the assignment.
person_idintegerMLB person id for the umpire.
person_full_namecharacterFull name of the umpire.
person_linkcharacterAPI relative link to the person.

Examples

# \donttest{
  try(mlb_jobs_umpires(sport_id=1))
#> ── MLB Jobs Umpires data from MLB.com ─────────────── baseballr 2.0.0 ──
#>  Data updated: 2026-06-12 14:09:40 UTC
#> # A tibble: 98 × 7
#>    jersey_number job    job_code title  person_id person_full_name
#>    <chr>         <chr>  <chr>    <chr>      <int> <chr>           
#>  1 67            Umpire UMPR     Umpire    596809 Ryan Additon    
#>  2 12            Umpire UMPR     Umpire    623938 Erich Bacchus   
#>  3 70            Umpire UMPR     Umpire    545402 John Bacon      
#>  4 71            Umpire UMPR     Umpire    490319 Jordan Baker    
#>  5 41            Umpire UMPR     Umpire    665576 Brock Ballou    
#>  6 29            Umpire UMPR     Umpire    503493 Sean Barber     
#>  7 23            Umpire UMPR     Umpire    427013 Lance Barksdale 
#>  8 16            Umpire UMPR     Umpire    483561 Lance Barrett   
#>  9 87            Umpire UMPR     Umpire    482608 Scott Barry     
#> 10 38            Umpire UMPR     Umpire    644760 Adam Beck       
#> # ℹ 88 more rows
#> # ℹ 1 more variable: person_link <chr>
# }