It's the first time I've had to manipulate a .json file, I'm unsure how to transform nested objects into columns. See the example.
library(jsonlite)
TEST < - fromJSON(‘C:/FOLDER/FILE.json’) %>% as.data.frame()
The file is imported correctly, however, some columns, according to the print, have variables nested within the same column. I would like to know how it is possible to transform these variables nested in columns within the file (TEST).

TEST %>% unpack(where(is.data.frame))