I found a solution. I’m not sure why search console is suddenly acknowledging this error and I’m not sure if my file always had the wrong code or if google made a recent update. According to google the the code within the product structured data file should read
"brand": {
"@type": "Brand",
"name": "ACME"
},
I checked in my file and indeed it was wrong. It read…
“brand”: {
“@type”: “Thing”,
“name”: {{ product.vendor | json }}
},
So I simply changed the word “Thing” to “Brand” and its now fixed.