Schema Markup
When the user wants to implement, audit, or validate structured data (schema markup) on their website. Use when the user mentions 'structured data,' '
Category: content-creation Source: alirezarezvani/claude-skills
When the user wants to implement, audit, or validate structured data (schema markup) on their website. Use when the user mentions 'structured data,' '
Category: content-creation Source: alirezarezvani/claude-skills<script type="application/ld+json"> tags or by using online validators. - Rich Results Status: Determine if any rich results are currently showing by searching for key pages in Google or reviewing the Search Console’s Rich Results report. - Error Analysis: Review Google Search Console for any structured data errors or warnings. ### 2. Define Site and Content Requirements - CMS Platform: Identify whether the site runs on WordPress, Webflow, a custom CMS, etc., as this may dictate implementation methods (plugins, manual coding, etc.). - Targeted Pages: Decide which page types (homepage, articles, product pages, FAQ, etc.) require schema markup. ### 3. Select Appropriate Schema Types Choose schema types that match your content’s purpose. For example: - Article: For blog posts and news articles. - Product: For e-commerce product listings. - FAQPage: For frequently asked questions. - HowTo: For instructional content. ### 4. Implement Schema Using JSON-LD Add JSON-LD script tags to the relevant pages. Here’s a basic example for a Product page: html <script type="application/ld+json"> { "@context": "https://schema.org/", "@type": "Product", "name": "Executive Office Chair", "image": [ "https://example.com/photos/chair1.jpg" ], "description": "Ergonomic executive office chair with lumbar support.", "sku": "CH-12345", "offers": { "@type": "Offer", "url": "https://example.com/executive-chair", "priceCurrency": "USD", "price": "199.99", "availability": "https://schema.org/InStock" } } </script> ### 5. Validate and Test Use tools like Google’s Rich Results Test or Schema.org Validator to validate your markup and fix any reported issues. ## Key Features The Schema Markup skill provides the following core capabilities: - Implementation Guidance: Step-by-step advice on adding schema markup tailored to your website’s CMS and page types. - Audit and Validation: Assists in reviewing existing markup, identifying errors, and ensuring compliance with schema.org standards. - Rich Result Optimization: Targets markup best suited for eligibility in Google’s rich results, increasing visibility and CTR. - Content-Type Specific Support: Offers examples and recommendations for various schema types, including FAQ, Product, Article, and HowTo schemas. - Structured Data Troubleshooting: Helps diagnose and resolve structured data errors detected in Google Search Console or other validators. ## Best Practices To maximize the benefits of Schema Markup, adhere to these best practices: - Use JSON-LD Format: Prioritize JSON-LD for new implementations, as it is preferred by Google and easier to manage. - Be Specific and Accurate: Select the most appropriate schema types and properties for your content. Avoid generic or misleading markup. - Keep Markup Synchronized: Ensure the structured data precisely reflects on-page content; discrepancies may result in manual actions or loss of rich results. - Regular Validation: Routinely validate your schema using both Google and Schema.org tools, especially after site updates. - Monitor Search Console: Watch for structured data notifications or errors in Google Search Console and address them promptly. - Stay Updated: Schema.org and search engine requirements evolve; periodically review documentation for changes