Attaching package: 'jsonlite'
The following objects are masked from 'package:rlang':
flatten, unbox
The following object is masked from 'package:purrr':
flatten
# A JSON array of primitives
json <- '["Mario", "Peach", null, "Bowser"]'
# Simplifies into an atomic vector
fromJSON(json)
[1] "Mario" "Peach" NA "Bowser"