Hi@akhtar,
You can load the JSON file in R. But before that, you need to load the library first as shown below.
# Load the package required to read JSON files.
library("rjson")
# Give the input file name to the function.
result <- fromJSON(file = "input.json")