So, i'm trying to read a json file. From the examples i found, i need to define a struct mimicking the json data's layout and pass it to json.unmarshal to be populated. Fine.
Problem is, the json data contains a field named "map", which conflicts with the built in map type when i try to define it on my struct.
Is there a way around this ?