Hi,
there are no built-in methods to read JSON.
How this can be done depends on the formatting of the JSON.
If you have a collection of JSON objects which are separated by newline (and there are no other newlines) you can read the file with env.readTextFile().
This will give you one String per line which can be parsed in a subsequent RichMapFunction. If you do that, you should make sure that the parser is initialized once (in open()) and not for every call of map().
Best, Fabian