Schema validation errors can prevent your structured data from generating rich results in search. Understanding common validation issues and how to fix them is crucial for successful schema implementation.
Schema validation errors occur when structured data doesn't meet the required format or specifications:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<!-- Schema with Validation Errors --> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Product", "name": true, <!-- Error: Should be string --> "price": "invalid", <!-- Error: Should be number --> "availability": "in-stock" <!-- Error: Should be URL --> } </script> <!-- Valid Schema --> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Product", "name": "Product Name", "offers": { "@type": "Offer", "price": 99.99, "priceCurrency": "USD", "availability": "https://schema.org/InStock" } } </script>
Schema validation errors affect your website in several ways:
SEO Impact
Technical Issues
Business Consequences
First, check for basic JSON syntax errors:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
// Function to validate schema syntax function validateSchemaSyntax(schema) { try { // Check JSON syntax const parsed = JSON.parse(schema); // Check required fields if (!parsed['@context'] || !parsed['@type']) { return { valid: false, error: 'Missing required @context or @type' }; } // Check data types const errors = []; if (typeof parsed.name !== 'string') { errors.push('name must be string'); } if (parsed.price && typeof parsed.price !== 'number') { errors.push('price must be number'); } return { valid: errors.length === 0, errors }; } catch (e) { return { valid: false, error: 'Invalid JSON syntax' }; } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// Bad: Wrong Types { "@context": "https://schema.org", "@type": "Product", "name": 123, "price": "99.99", "inStock": "yes" } // Good: Correct Types { "@context": "https://schema.org", "@type": "Product", "name": "Product Name", "offers": { "@type": "Offer", "price": 99.99, "priceCurrency": "USD", "availability": "https://schema.org/InStock" } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
function ValidatedSchema({ type, data }) { const [errors, setErrors] = useState([]); useEffect(() => { // Validate schema const validationErrors = []; // Check required fields if (!type || !data) { validationErrors.push('Missing type or data'); } // Check data types if (data.name && typeof data.name !== 'string') { validationErrors.push('name must be string'); } if (data.price && typeof data.price !== 'number') { validationErrors.push('price must be number'); } setErrors(validationErrors); }, [type, data]); if (errors.length > 0) { console.error('Schema validation errors:', errors); return null; } const schema = { '@context': 'https://schema.org', '@type': type, ...data }; return ( <Head> <script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(schema) }} /> </Head> ); }
Validation Rules
Implementation Guidelines
Quality Control
Indexguru's SEO Analyzer
Development Tools
Testing Resources
1 2 3 4 5 6 7 8 9 10 11 12 13
// Common Type Errors { "price": "10.99", // Should be number "inStock": "true", // Should be boolean "rating": "4.5" // Should be number } // Fixed Types { "price": 10.99, "inStock": true, "rating": 4.5 }
1 2 3 4 5 6 7 8 9 10 11 12 13
// Common URL Errors { "image": "logo.png", // Should be absolute URL "url": "example.com", // Missing protocol "sameAs": "invalid-url" // Invalid URL } // Fixed URLs { "image": "https://example.com/logo.png", "url": "https://example.com", "sameAs": "https://twitter.com/example" }
1 2 3 4 5 6 7 8 9 10 11 12 13
// Common Date Errors { "datePublished": "01/20/2024", // Wrong format "dateModified": "2024", // Incomplete "startDate": "Jan 20" // Invalid } // Fixed Dates { "datePublished": "2024-01-20T08:00:00+08:00", "dateModified": "2024-01-20T08:00:00+08:00", "startDate": "2024-01-20" }
Proper validation leads to:
Schema validation errors can prevent your structured data from working effectively. By following these validation guidelines and regularly testing your schema markup, you can ensure your rich results appear properly in search.
Need help validating your schema markup? Try Indexguru's SEO tools to automatically check for validation errors and get actionable recommendations for improvement.
Takes 5 minutes to setup