For the ‘ValueError’, your JSON file is not in the format that the ReadFromJson are expecting. Instead of one object per line, it is reading your JSON file as one big array of JSON objects.
ReadFromJson does not support array type of objects, so the best you can do is to reformat your JSON file to a ‘one object per line’.