When trying to open JSON file, FDM is getting stuck
Check the json file, the format is not valid, as below,
[
{
"a": "value a",
"b": "value b",
...
}
...
]
The [ ] is for array, it should be a value of a json node, change the json file to following format fixes the issue,
{
"data":
[
{
"a": "value a",
"b": "value b",
...
}
...
]
}