We recently were in contact with Microsoft on this and it turns out the selection between JSON%20Files.-,JSON,-.json) (which is in fact JSONL) and MultiJson was NOT removed, but hidden behind an utterly misnamed toggle button called "ignore format errors". The product team actually agreed with us on this misnamer.
The idea is that users should not enable this button as it would require you to provide valid JSONL format, which looks like this:
{"name": "First Object"}
{"name": "Second Object"}
Whereas leaving it disabled allows you to provide properly formatted MultiJSON like:
[
{
"name": "First Object"
},
{
"name": "Second Object"
}
]