Golang преобразует строку json в карту

jsonMap := make(map[string]interface{})
err := json.Unmarshal([]byte(jsonStr), &jsonMap)
Delightful Dormouse