How to unmarshal JSON with some known and some unknown fields in a nested structure
I have following JSON: { "common": { "a": "xyz", "b": "qwe" }, "events": [ { "c": "lll", "?": "eee", "??": "ppp" } ] } I know that it has the "a", "b" and "c" fields but I don't know the…