I am trying to use the "Unflatten from JSON" function (fwiw, I have also been working with the i3 LV JSON library too, and have the same problem.).
I am interfacing an API where the JSON for a particular text field is coming back as 'null' (no quotes).
So when there is valid text, it parses fine (the text is in quotes). When the field is null, the parser throws an exception.
I have tried replacing :null in the JSON with :"" however, this particular API also reports back nulls for numerics; so I can't do that without shooting myself in the foot.
1) Is null valid JSON data?
2) If so, can we get the parser to handle it, and return default data type data + issue a warning?