Another possible cause of this warning is a missing quotation marks:
Wrong:
Data interface{} `json:data`
To resolve this, ensure the field tag is properly formatted with quotes, as shown below:
Correct:
Data interface{} `json:"data"`