Schema Validation Errors in Plugin JSON-LD Output
-
The plugin is generating invalid JSON-LD that fails schema.org validation. This blocks proper indexing and rich results.
Issue 1 – ImageObject width/height
Actual output:
“width”: 512,
“height”: 512
Expected output:
“width”: { “@type”: “QuantitativeValue”, “value”: 512, “unitText”: “px” },
“height”: { “@type”: “QuantitativeValue”, “value”: 512, “unitText”: “px” }Issue 2 – SearchAction query-input
Actual output:
“query-input”: “required name=search_term_string”
Expected output:
“query-input”: { “@type”: “PropertyValueSpecification”, “valueRequired”: true, “valueName”: “search_term_string” }Impact:
These schema errors are flagged by validators and reduce SEO compliance. Please correct the JSON-LD output as soon as possible.The page I need help with: [log in to see the link]
The topic ‘Schema Validation Errors in Plugin JSON-LD Output’ is closed to new replies.