I noticed most responses are using slices of pointers. IMHO it would be better to not use pointers in the slices.
Also I don't think we should use pointers for strings in the JSON.
It will reduce the amount of required null checks, simplify working with the strings. Furthermore a slice is already kind of using pointers.
Is there any reason for this?
Would a PR removing the pointers in those locations be accepted?