I want to change the struct name when it is being serialized into json, like this:
type Dog struct{
Color string `json:"color"`
Age int. `json:"age"`
} `json:"animal"`
Seems it is not supported unless i change the struct name, or write my own serializer?