The Read and Parse of Local JSON

Can I read the content of a Json file which is stored locally, i.e. “data/info.json”, unlike the one in the example that is retrieved using a url.

Yes, you can try something like this:

var bundleFile = import BundleFile("data/info.json");
var json = bundleFile.ReadAllText();

JsonReader reader = JsonReader.Parse(json);

Hope this is helpful.