Do this, remove the thumbnail struct.
In the data struct, change the thumbnail field type to string like I did below.
type Data struct {
ID int64 `json:"id"`
Author Author `json:"author"`
Thumbnail string `json:"thumbnail"`
}
type Author struct {
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
}