Golang custom JSON unmarshalling
I am working with JSON whose structure I may not always know. Unmarshalling the data into map[string]any hence is the most appropriate for my use case. Now the issue is if there's any numeric value in the JSON data, json.Unmarshal…