Skip to main content
Technical SEO 9 min

Schema Markup: Complete Implementation 2025 - Ighenatt Blog

Complete guide to implementing schema markup and structured data. Improve your SEO with rich snippets and optimised web design. Read the full article on Ighe...

EG

Elu Gonzalez

Author

Schema markup is not a ranking factor in the direct sense. Google has confirmed this. What it does is reduce ambiguity — it tells the search engine precisely what your page is about, who wrote it, when it was published and what it contains, so the engine does not have to infer any of that from the surrounding HTML.

That reduction in ambiguity has two practical consequences. The first is rich snippets: review stars, FAQ accordions, breadcrumb trails in the SERP, event dates. These are CTR multipliers. The second consequence is less discussed: AI engines rely on structured data to extract and cite content with confidence. A page with correct Article and FAQPage schema is significantly easier for a language model to reference than an equivalent page without it.

This guide covers the schema types with the most practical impact, the correct JSON-LD implementation approach, and how to validate that everything works before relying on it.

Foundations of Schema Markup and its Benefits

Structured markup elements are now part of any advanced SEO strategy. By providing search engines with explicit information about your page’s content, these markers increase the probability of obtaining rich results in SERPs, improving visibility and potentially click-through rates.

Semantic markup is a standardised vocabulary you can add to your HTML to improve how search engines read and interpret your page. Developed as a collaboration between Google, Bing, Yahoo and Yandex, Schema.org provides a collection of shared schemas that webmasters can use to mark up their pages consistently.

Key benefits of implementing semantic markup:

  1. Rich results in SERPs: Can generate featured snippets with rating stars, prices, availability, preparation times, etc.

  2. Higher CTR (Click-Through Rate): Rich results typically have higher click rates than standard results.

  3. Improved relevance: Helps search engines better understand the content and context of your page.

  4. Voice search readiness: Voice search systems typically use semantic markup to answer questions.

  5. Competitive advantage: Many sites still do not implement structured markup, which can give you an edge over competitors.

Main types of schema markup

Schema.org offers hundreds of markup types for different types of content. The most used and valuable include:

Organization and LocalBusiness for businesses

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "Pizzeria Milano",
  "image": "https://www.example.com/photos/pizzeria-milano.jpg",
  "url": "https://www.pizzeriamilano.es",
  "telephone": "+34912345678",
  "priceRange": "€€",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Gran Via 123",
    "addressLocality": "Madrid",
    "postalCode": "28013",
    "addressCountry": "ES"
  },
  "geo": {
    "@type": "GeoCoordinates",
    "latitude": 40.4168,
    "longitude": -3.7038
  },
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
      "opens": "12:00",
      "closes": "23:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": ["Saturday", "Sunday"],
      "opens": "13:00",
      "closes": "23:30"
    }
  ]
}
</script>

Product for product pages

<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "Product",
  "name": "Ultra-lightweight running shoes",
  "image": [
    "https://example.com/photos/shoes-1.jpg",
    "https://example.com/photos/shoes-2.jpg"
  ],
  "description": "Perfect sports shoes for running, ultra-lightweight with maximum cushioning.",
  "sku": "SHOE-2025-001",
  "mpn": "925872",
  "brand": {
    "@type": "Brand",
    "name": "RunPro"
  },
  "offers": {
    "@type": "Offer",
    "url": "https://example.com/ultra-lightweight-running-shoes",
    "priceCurrency": "EUR",
    "price": 89.99,
    "priceValidUntil": "2025-12-31",
    "availability": "https://schema.org/InStock",
    "seller": {
      "@type": "Organization",
      "name": "SportShop"
    }
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": 4.8,
    "reviewCount": 47
  },
  "review": {
    "@type": "Review",
    "itemReviewed": {
      "@type": "Product",
      "name": "Ultra-lightweight running shoes"
    },
    "reviewRating": {
      "@type": "Rating",
      "ratingValue": 5,
      "bestRating": 5
    },
    "author": {
      "@type": "Person",
      "name": "Carlos Martinez"
    },
    "reviewBody": "The best shoes I have tried for marathons. Incredibly light and very comfortable."
  }
}
</script>

Article, NewsArticle and BlogPosting for editorial content

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BlogPosting",
  "headline": "How to improve your performance in long-distance races",
  "image": "https://example.com/photos/running-performance.jpg",
  "datePublished": "2025-01-15T08:00:00+01:00",
  "dateModified": "2025-01-17T10:30:00+01:00",
  "author": {
    "@type": "Person",
    "name": "Ana Torres",
    "url": "https://example.com/authors/ana-torres"
  },
  "publisher": {
    "@type": "Organization",
    "name": "RunningBlog",
    "logo": {
      "@type": "ImageObject",
      "url": "https://example.com/logo.png"
    }
  },
  "description": "Professional tips to improve your performance in long-distance races and marathons.",
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://example.com/blog/improve-performance-races"
  }
}
</script>

Recipe for cooking recipes

<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "Recipe",
  "name": "Traditional Valencian paella",
  "image": "https://example.com/photos/valencian-paella.jpg",
  "author": {
    "@type": "Person",
    "name": "Chef Maria Lopez"
  },
  "datePublished": "2025-01-20",
  "description": "Traditional Valencian paella recipe with chicken, rabbit and garrofon beans.",
  "prepTime": "PT30M",
  "cookTime": "PT45M",
  "totalTime": "PT1H15M",
  "recipeYield": "4 servings",
  "recipeCategory": "Main course",
  "recipeCuisine": "Spanish",
  "nutrition": {
    "@type": "NutritionInformation",
    "calories": "450 calories"
  },
  "recipeIngredient": [
    "400g bomba rice",
    "1 cut-up chicken",
    "1/2 cut-up rabbit",
    "200g green beans",
    "100g garrofon beans",
    "1 tablespoon sweet paprika",
    "Saffron",
    "Extra virgin olive oil",
    "Salt"
  ],
  "recipeInstructions": [
    {
      "@type": "HowToStep",
      "text": "Heat oil in the paella pan and brown the meat."
    },
    {
      "@type": "HowToStep",
      "text": "Add the vegetables and sauté for 5 minutes."
    },
    {
      "@type": "HowToStep",
      "text": "Add the paprika, stir quickly and add water."
    },
    {
      "@type": "HowToStep",
      "text": "When it starts to boil, add the rice and saffron. Cook over medium-high heat for 10 minutes."
    },
    {
      "@type": "HowToStep",
      "text": "Lower the heat and cook for 8 more minutes. Let it rest 5 minutes before serving."
    }
  ]
}
</script>

FAQPage for frequently asked questions sections

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "What is Schema Markup?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Schema Markup is semantic code added to your website's HTML to help search engines better understand your content. It was created by the major search engines: Google, Bing, Yahoo and Yandex."
      }
    },
    {
      "@type": "Question",
      "name": "How does Schema Markup benefit my SEO?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Schema Markup can improve your SEO by allowing your content to appear as rich results in search results pages, thereby increasing visibility and potentially click-through rates. It also helps search engines better understand the context of your content."
      }
    }
  ]
}
</script>

Practical Implementation: Formats, Validation and Process

There are three main formats: JSON-LD (recommended by Google), Microdata and RDFa. JSON-LD is the preferred format for its flexibility and ease of maintenance.

Basic JSON-LD example:

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Company",
  "url": "https://www.yourcompany.com"
}
</script>

Step-by-step implementation process:

  1. Identify content: Determine which schema types are relevant (Product for shops, LocalBusiness for local businesses, Article for blogs, etc.)

  2. Generate code: Use tools such as Merkle’s Schema Markup Generator, Google Search Console creators, or plugins like Yoast SEO

  3. Validate: Use Google’s structured data testing tool and Schema.org validator to verify the code is correctly formed

  4. Implement: For JSON-LD, insert in <head> or <body>. For CMS like WordPress use specialised plugins, for Shopify applications like JSON-LD for SEO

  5. Monitor: Review Google Search Console “Enhancements” section, maintain regular updates and follow changes in Schema.org

Implementation Strategies by Sector

E-commerce

Implementation strategy:

  1. Homepage: Organization + WebSite
  2. Categories: ItemList with featured products
  3. Products: Product with Offers, AggregateRating and Reviews
  4. Cart/Checkout: No specific Schema required, focus on usability

Specific benefit: Rich product snippets with stars, price and availability can increase CTR by up to 30%.

Blogs, media and local businesses

For blogs and digital media:

  1. Homepage: WebSite + Organization
  2. Articles: Article or NewsArticle with Person (author)
  3. Categories/tags: CollectionPage
  4. Author: Detailed Person with affiliations and credentials

Specific benefit: Possibility of appearing in Google’s “Top Stories” section and better authorship attribution.

For local businesses:

  1. Homepage: LocalBusiness with address, phone and opening hours
  2. Services pages: Service with specific details
  3. Contact page: Reinforces LocalBusiness information
  4. Testimonials: Implement Review as part of LocalBusiness

Specific benefit: Improves your visibility in Google Maps and local “near me” searches.

Common Errors, Measurement and Best Practices

Frequent errors and how to avoid them

1. Incomplete or generic markup

Problem: Using only basic properties without taking advantage of the full richness of the vocabulary.

Solution: Include as many relevant properties as possible. For example, for a Product do not limit yourself to name and price — add SKU, brand, ratings, availability, etc.

2. Contradictory schemas

Problem: Implementing multiple schemas that contradict or repeat each other on the same page.

Solution: Ensure all markup on a page is consistent. If you use JSON-LD and Microdata, they must provide the same information.

3. Not adapting markup to each specific page

Problem: Using the same generic markup on all pages.

Solution: Customise the markup for each type of page. A product page should have Product schema, not generic WebPage schema.

4. Not validating regularly

Problem: Implementing and forgetting, without checking if errors arise.

Solution: Periodically review the “Enhancements” section of Google Search Console and re-validate when you make changes.

5. Incorrect markup for the content

Problem: Using Schema types that do not actually correspond to the page’s content.

Solution: Be honest and precise. Do not tag as Recipe something that is not a recipe just to obtain a rich snippet.

Measuring the impact of semantic markup

To measure the real impact of your implementation:

  1. Establish a baseline: Collect CTR, impressions and position data before implementing.

  2. Implement in phases: Introduce markup on a group of similar pages and compare with a control group.

  3. Key metrics to monitor:

    • CTR changes for pages with structured data
    • Impression increases
    • Appearance of rich snippets in SERPs
    • Changes in bounce rate and time on page
    • Conversions attributable to pages with structured markup
  4. Tracking tools:

    • Google Search Console for impressions and CTR data
    • SERP monitoring tools to see when rich snippets appear
    • Google Analytics for changes in user behaviour

The semantic markup ecosystem continues to evolve:

  1. Greater importance for voice search: Well-implemented semantic markup will be key for answering specific questions.

  2. Integration with AI and semantic search: AI models will increasingly use structured elements to understand context.

  3. New Schema types: Schema.org continues expanding its vocabulary to cover more use cases.

  4. More visual rich results: Google is experimenting with more visual formats in the SERP.

  5. Adoption of dynamic markup: Implementations that change according to user behaviour or context.

Proper implementation of semantic markup represents one of the most valuable and relatively under-utilised opportunities in current SEO optimisation. It not only improves your site’s visibility in search results, but prepares your content for future advances in semantic, voice and AI-based search. Before hiring any service, answer this question: do you know how much organic traffic you are losing right now to technical issues you could resolve this week? If the answer is no, start here.

Share this article

If you found this content useful, share it with your colleagues.

Frequently Asked Questions

¿Con qué frecuencia publican contenido nuevo?

Publicamos artículos nuevos semanalmente, enfocados en las últimas tendencias de SEO técnico, casos de estudio reales y mejores prácticas. Suscríbete a nuestro newsletter para no perderte ninguna actualización.

¿Los consejos son aplicables a cualquier tipo de sitio web?

Nuestros consejos se adaptan a diferentes tipos de sitios: ecommerce, blogs, sitios corporativos y aplicaciones web. Siempre indicamos cuándo una técnica es específica para cierto tipo de sitio o requerimientos técnicos.

¿Puedo implementar estas técnicas yo mismo?

Muchas técnicas básicas puedes implementarlas tú mismo siguiendo nuestras guías paso a paso. Para optimizaciones avanzadas o auditorías completas, recomendamos consultar con especialistas en SEO técnico como nuestro equipo.

¿Ofrecen servicios de consultoría personalizada?

Sí, ofrecemos servicios de consultoría SEO técnica personalizada, auditorías completas y optimización integral. Contáctanos para discutir las necesidades específicas de tu proyecto y cómo podemos ayudarte.

Stay updated

Receive the latest articles, tips and strategies about SEO, web performance and digital marketing in your email.

We send a newsletter every week, and you can unsubscribe at any time.

Tags: #Schema Markup #Structured Data #Rich Snippets #SEO
EG

Elu Gonzalez

SEO Expert & Web Optimization