Hi all, When parsing with NeoJSON, Iâm experiencing some problems. If I parse a JSON representation using NeoJSONReader>>next (i.e. not according to a schema), it parses nil fields just fine. But when I explicitly set a value schema, it wonât parse it in the case it is nil (or ânullâ in JSON). Is there a way to let it return nil in the case the parser encounters ânullâ, and otherwise serialize it as a value schema (e.g. a Point class). Taking the example from the paper (https://github.com/svenvc/docs/blob/master/neo/neo-json-paper.md <https://github.com/svenvc/docs/blob/master/neo/neo-json-paper.md>): (NeoJSONReader on: ânull' readStream) mapInstVarsFor: Point; nextAs: Point. Is there a way to adapt the above snippet so that it evaluates to ânilâ instead of resulting in an error? I ask because I am parsing an API response which sometimes contains a ânullâ field, and sometimes a JSON object for that field. Thanks.