"A value for the image field is required"
Google is now requiring that you add an image, even if you already have the logo.
So what I did was write in an image link to the logo (you can put in a picture of your biz too) but I do construction service so it's not brick & mortar.
Anyway to get it to validate you can just add the image like this:
"image": "http://yoursite.com/yourimagefolder/yourimagename.png",
<script type='application/ld+json'>
{
"@context": "http://www.schema.org",
"@type": "HomeAndConstructionBusiness",
"name": "Your biz name",
"url": "http://yourbizurl.com/index.html",
"logo": "http://yourbizurl.com/yourpicturefolder/yourpicture.png",
"image": "http://yourbizurl.com/yourpicturefolder/yourpicture.png",
"description": "Your biz description",
"telephone": "(555) 555-5555",
"address": {
"@type": "PostalAddress",
"streetAddress": "5555 Yourstreet Ave.",
"addressLocality": "Yourtown",
"addressRegion": "CA",
"postalCode": "555555",
"addressCountry": "USA"
},
"hasMap": "https://www.google.com/maps/d/viewer?mid=1RGDqQWmsEQxHdPUyNrDLPmJv8Hk&ll=38.39646762762074%2C-122.94650487154775&z=9"
}
</script>
{
"@context": "http://www.schema.org",
"@type": "HomeAndConstructionBusiness",
"name": "Your biz name",
"url": "http://yourbizurl.com/index.html",
"logo": "http://yourbizurl.com/yourpicturefolder/yourpicture.png",
"image": "http://yourbizurl.com/yourpicturefolder/yourpicture.png",
"description": "Your biz description",
"telephone": "(555) 555-5555",
"address": {
"@type": "PostalAddress",
"streetAddress": "5555 Yourstreet Ave.",
"addressLocality": "Yourtown",
"addressRegion": "CA",
"postalCode": "555555",
"addressCountry": "USA"
},
"hasMap": "https://www.google.com/maps/d/viewer?mid=1RGDqQWmsEQxHdPUyNrDLPmJv8Hk&ll=38.39646762762074%2C-122.94650487154775&z=9"
}
</script>
With that image added it then validates.
Just mention that since most of the json-ld generators don't have the new requirement added as yet and you may need to go back and reset your existing code.
LINK:
https://search.google.com/structured-data/testing-tool
in code snippet paste this part:
{
code example
}
from between the script tags