Google crawling failed - unparsable structured data

Topic summary

A user encountered a Google Search Console error related to unparsable structured data in their site’s schema markup. The issue stemmed from incorrect formatting in the logo width parameter within their JSON-LD structured data.

Problem identified:

  • The schema markup contained "width": "section.settings.logo.width" which Google couldn’t parse as a valid numeric value

Solution provided:

  • Replace the dynamic variable reference with a hardcoded numeric value: "width": 500
  • This ensures the structured data validates properly for search engine crawlers

The issue was resolved after implementing the suggested fix.

Summarized with AI on November 25. AI used: claude-sonnet-4-5-20250929.

Code:

Problem:

Hello,

Better to just change the ‘section.settings.logo.width’ part to 500

"logo": {{ section.settings.logo | image_url: width: 500 | prepend: "https:" | json }}

THank you so much!