Skip to contents

Returns the ATO's annual Fringe Benefits Tax (FBT) Taxation Statistics: employer counts, gross taxable value, FBT payable, and employee benefit counts by benefit type and industry. Used by Treasury, PBO, and researchers evaluating the FBT concession system (electric vehicles, remote area exemptions, novated leases).

Usage

ato_fbt(year = "latest")

Source

Australian Taxation Office FBT Taxation Statistics on data.gov.au. Licensed CC BY 2.5 AU.

Arguments

year

Income year in "YYYY-YY" form (e.g. "2022-23") or "latest".

Value

An ato_tbl. Monetary values in nominal AUD.

References

Commonwealth of Australia. Fringe Benefits Tax Assessment Act 1986. Substantive FBT law; ATO rulings (TR series) elaborate taxable-value methodology.

Australian Taxation Office (annual). FBT explanatory notes. Definitions of reportable benefits, gross-up factors (Type 1 and Type 2), and otherwise-deductible rule.

Treasury (2022). Electric Car Discount Bill. Explanatory memorandum for the EV FBT exemption introduced 1 July 2022.

Examples

# \donttest{
op <- options(ato.cache_dir = tempdir())
try({
  fbt <- ato_fbt(year = "2022-23")
  head(fbt)
})
#> Error in ato_fbt(year = "2022-23") : 
#>   Could not find a Fringe Benefits Tax package on data.gov.au.
#>  Browse: <https://data.gov.au/data/organization/australiantaxationoffice>
options(op)
# }