JSON-LD implementation: from messy to structured in one day

JSON-LD schema implementation with WebPage, Organization, and Service entities
Summary
  • Most websites unnecessarily duplicate their organization schema. This can lead to inconsistencies between pages and unclear signals to search engines.
  • Site-wide script defines three entities once. Website, Organization, and Person only need to be specified in one place.
  • Page-level JSON-LD remains limited and clear. WebPage + Service/BlogPosting + optional BreadcrumbList and FAQ.
  • A stable @id strategy prevents linking errors. Use [URL]#webpage, [URL]#service, [URL]#blogpost as a consistent fragment pattern.
  • 10 common mistakes that can break rich results. From self-referencing loops to trailing commas and smart quotes in JSON strings.
  • Implementation requires thorough planning and testing. Add site-wide script, modify page template, validate, and gradually roll out.

Many websites have a JSON-LD implementation that has slowly become a patchwork quilt. Organization schema on every page. Inconsistent @ids. Service nodes mixed with BlogPosting where they don't belong. FAQs that refer to content that is not on the page.

The result: validation errors in Search Console, structured data that sends unclear signals, and markup that is difficult to maintain.

This article explains how to implement JSON-LD in a way that scales and remains consistent. Structured data is not a replacement for technical SEO, but it is an essential building block for making your page intent clear to search engines.

Why almost all JSON-LD implementations become messy

JSON-LD implementations usually start well. A developer adds Organization schema to the homepage. Then comes a product page, which also gets Organization schema. And a Service node. Then come blog articles, which get Organization + BlogPosting. Before you know it, the same Organization definition is on hundreds of pages, but with subtle differences because they were added at different times.

5 concrete symptoms of drift:

  1. Organization chart with different values. On page A, the logo is 200x200px, on page B it is 400x400px, and on page C it is missing entirely.

  2. Inconsistent @id fragments. Some pages use #organization, others use #company, and still others do not use @id.

  3. Mixed types without logic. A contact page has both Service and AboutPage and ContactPage schemas.

  4. FAQ content that does not exist. The FAQ schema contains questions that are not on the page because they have been copied from a template.

  5. Self-referencing loops. WebPage.mainEntityOfPage refers to itself instead of to the Service or BlogPosting.

These problems arise because there is no clear distinction between what belongs site-wide (always the same) and what belongs page-level (unique per page). For those conducting a thorough technical SEO audit, this is often one of the first technical bottlenecks that comes to light.

Pageswith structured data receive 30% more clicks than standard search results.
— BrightEdge (SEO data & analytics platform)

The core principles that solve everything

Google recommends JSON-LD because it is easier to implement and maintain than Microdata or RDFa. But only if you do it the right way.

Five principles:

1. One page-level JSON-LD script per page

Place all page-specific structured data in one place <script type="application/ld+json"> block with a @graph array. Not four separate scripts for WebPage, Service, BreadcrumbList, and FAQ. One script, one graph, all nodes included.

2. Stable @id strategy

Each node receives a unique @id based on the canonical page URL plus a fragment. For example: https://example.com/seo#webpage, https://example.com/seo#service, https://example.com/blog/artikel#blogpostUse this pattern consistently throughout the entire site.

3. Strict separation: site-wide vs. page-level

Site-wide entities (Website, Organization, Person) are defined once in a separate script that is loaded on every page. Page-level entities (WebPage, Service, BlogPosting, BreadcrumbList, FAQPage) are located in the page-specific script and refer to the site-wide entities via their @id.

4. Match URLs exactly with canonical

Use the exact same URL as your canonical URL on the page. If your canonical tag <link rel="canonical" href="https://example.com/over-ons"> is, then use exactly https://example.com/over-ons in your @id and url properties. Match www/non-www and trailing slashes exactly with your canonical strategy.

5. Preserve unless invalid (when cleaning up existing implementations)

If you are sanitizing an existing JSON-LD implementation: do not change content unless it is factually incorrect. Does your BlogPosting.description have 180 characters? Leave it as it is. Is there a working image URL? Leave it as it is. Only change what is actually wrong. This prevents unintended ranking impact during cleanup. For new implementations: start immediately with correct data according to the templates below.

Structureddata does not improve your website's ranking. It is used to display search functions. Use it if your pages are suitable for these functions.
— John Mueller, Search Relations Team at Google

What belongs site-wide (and why)

Site-wide entities are data that are the same for the entire website. You define these once in a script that is loaded on every page, usually via your CMS template or header include.

Which entities belong site-wide:

Website (one website, one Website entity)
Contains: name, URL, publisher (refers to Organization @id), inLanguage, optional potentialAction for site search

Organization (one company, one Organization)
Contains: name, url, logo, sameAs (social profiles), optional contactPoint, address, areaServed

Person (consistent author or founder, optional)
Contains: name, url, sameAs (LinkedIn, Twitter), worksFor (refers to Organization @id)

What should NOT be site-wide:

  • Service nodes (unique per service page)

  • Blog Posting (unique per article)

  • BreadcrumbList (unique per page)

  • FAQPage (unique per page where FAQ is located)

  • Product (unique per product)

Minimal vs. expanded guidance:

Start minimal. Website name, URL, publisher. Organization name, URL, logo. That's enough. Only add more if you can validate that it is correct and relevant.

Example: joint contactPoint Only applicable if you actually have a separate customer service number. Add address Only if you have a physical location that is relevant to your business. Not because it seems "complete."

Overview table: what belongs where

Entity / Type Site-wide script? Page-level script? Why
Website - One website, one definition
Organization - Company data is the same everywhere
Person - Keep the definition of founder/author consistent
WebPage - Unique per page (title, description, URL)
Service - Specific to each service page
Blog Posting - Unique per article (headline, datePublished)
Breadcrumb List - Path varies per page
FAQ Page - FAQ content varies per page
ImageObject (primary) - Main image varies per page
Product - Page-level, requires separate implementation
Website
Site-wide script?
Page-level script?
-
Why
One website, one definition
Organization
Site-wide script?
Page-level script?
-
Why
Company data is the same everywhere
Person
Site-wide script?
Page-level script?
-
Why
Keep the definition of founder/author consistent
WebPage
Site-wide script?
-
Page-level script?
Why
Unique per page (title, description, URL)
Service
Site-wide script?
-
Page-level script?
Why
Specific to each service page
Blog Posting
Site-wide script?
-
Page-level script?
Why
Unique per article (headline, datePublished)
Breadcrumb List
Site-wide script?
-
Page-level script?
Why
Path varies per page
FAQ Page
Site-wide script?
-
Page-level script?
Why
FAQ content varies per page
ImageObject (primary)
Site-wide script?
-
Page-level script?
Why
Main image varies per page
Product
Site-wide script?
-
Page-level script?
Why
Page-level, requires separate implementation

Site-wide JSON-LD template (copy-paste)

Place this script in the <head> from each page, or via a global template include in your CMS.

Site-wide JSON-LD Script
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebSite",
      "@id": "https://example.com/#website",
      "url": "https://example.com",
      "name": "[WEBSITE_NAME]",
      "inLanguage": "nl-BE",
      "publisher": {
        "@id": "https://example.com/#organization"
      }
    },
    {
      "@type": "Organization",
      "@id": "https://example.com/#organization",
      "name": "[ORGANIZATION_NAME]",
      "url": "https://example.com",
      "logo": {
        "@type": "ImageObject",
        "url": "[LOGO_URL]"
      },
      "sameAs": [
        "[SOCIAL_URL_1]",
        "[SOCIAL_URL_2]",
        "[SOCIAL_URL_3]"
      ]
    },
    {
      "@type": "Person",
      "@id": "https://example.com/#founder",
      "name": "[FOUNDER_NAME]",
      "url": "https://example.com/over-ons",
      "sameAs": [
        "[LINKEDIN_URL]"
      ],
      "worksFor": {
        "@id": "https://example.com/#organization"
      }
    }
  ]
}
</script>

Replace the placeholders:

  • [WEBSITE_NAME]: "ClickForest" or your company name

  • [ORGANIZATION_NAME]: Formal company name

  • [LOGO_URL]: Full URL to your logo (min. 112x112px, preferably square)

  • [SOCIAL_URL_1/2/3]LinkedIn, Facebook, Instagram URLs

  • [FOUNDER_NAME]: Name of the founder/CEO, if applicable

  • [LINKEDIN_URL]: Founder's personal LinkedIn profile

Note about Person: Only add this block if you have a personal brand component in your business (founder-led, thought leadership). Otherwise, remove this entire block.

“Ithelps their content to be understood. Whether it's details about their company, the services they offer, or the content they invest so much time in.”
— Martha van Berkel, CEO of Schema App

Page-level JSON-LD for regular pages (services, locations, etc.)

For regular pages (services, about us, contact, location pages), use a limited node set.

Minimum baseline checklist:

  • WebPage (always required)

  • Service (only if it is truly a service page)

  • BreadcrumbList (optional, only if you implement breadcrumbs consistently)

  • FAQPage (optional, only if FAQ is actually on page)

Linking rules:

  1. WebPage.isPartOf refers to site-wide WebSite @id

  2. WebPage.mainEntity refers to Service @id

  3. Service provider refers to site-wide Organization @id

  4. Service.mainEntityOfPage refers to WebPage @id

Linking cheat sheet by page type

Page type Of necessity Property To the node Example @id
Service page WebPage isPartOf Website https://example.com/#website
WebPage mainEntity Service https://example.com/seo#service
Service provider Organization https://example.com/#organization
Service mainEntityOfPage WebPage https://example.com/seo#webpage
Blog post WebPage isPartOf Website https://example.com/#website
WebPage mainEntity Blog Posting https://example.com/blog/seo-tips#blogpost
Blog Posting mainEntityOfPage WebPage https://example.com/blog/seo-tips#webpage
Blog Posting author Person https://example.com/#founder
Blog Posting publisher Organization https://example.com/#organization
Service page: WebPage → WebSite
Property
isPartOf
Example @id
https://example.com/#website
Service page: WebPage → Service
Property
mainEntity
Example @id
https://example.com/seo#service
Service page: Service → Organization
Property
provider
Example @id
https://example.com/#organization
Service page: Service → WebPage
Property
mainEntityOfPage
Example @id
https://example.com/seo#webpage
Blog post: WebPage → WebSite
Property
isPartOf
Example @id
https://example.com/#website
Blog post: WebPage → BlogPosting
Property
mainEntity
Example @id
https://example.com/blog/seo-tips#blogpost
Blog post: BlogPosting → WebPage
Property
mainEntityOfPage
Example @id
https://example.com/blog/seo-tips#webpage
Blog post: BlogPosting → Person
Property
author
Example @id
https://example.com/#founder
Blog post: BlogPosting → Organization
Property
publisher
Example @id
https://example.com/#organization

Canonical template for service page:

Service Page JSON-LD
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://example.com/seo#webpage",
      "url": "https://example.com/seo",
      "name": "SEO diensten",
      "description": "SEO optimalisatie voor bedrijven in België.",
      "isPartOf": {
        "@id": "https://example.com/#website"
      },
      "mainEntity": {
        "@id": "https://example.com/seo#service"
      }
    },
    {
      "@type": "Service",
      "@id": "https://example.com/seo#service",
      "serviceType": "SEO optimalisatie",
      "name": "SEO diensten",
      "description": "Technische SEO, content optimalisatie en linkbuilding.",
      "provider": {
        "@id": "https://example.com/#organization"
      },
      "areaServed": {
        "@type": "Country",
        "name": "België"
      },
      "mainEntityOfPage": {
        "@id": "https://example.com/seo#webpage"
      }
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://example.com/seo#breadcrumbs",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Home",
          "item": "https://example.com"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "SEO",
          "item": "https://example.com/seo"
        }
      ]
    }
  ]
}
</script>

Note about BreadcrumbList: Only add breadcrumbs if you actually display them on the page, or if your site has a clear hierarchy that you can maintain consistently. Do not add them ad hoc on some pages and not on others.

Note about Product pages: Product pages require Product schema with additional properties (offers, availability, reviews, aggregateRating, etc.). This is beyond the scope of this article.

Page-level JSON-LD for blog articles

For blog articles, you use a slightly different set of nodes.

Minimum baseline checklist:

  • WebPage (required)

  • BlogPosting (required)

  • BreadcrumbList (highly recommended)

  • FAQPage (optional, only if FAQ is on page)

Linking rules:

  1. BlogPosting.mainEntityOfPage refers to WebPage @id

  2. BlogPosting.author refers to site-wide Person @id (if defined)

  3. BlogPosting.publisher refers to site-wide Organization @id

  4. WebPage.isPartOf refers to site-wide WebSite @id

Canonical template for blog post:

Blog Post JSON-LD
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://example.com/blog/seo-tips#webpage",
      "url": "https://example.com/blog/seo-tips",
      "name": "SEO tips voor 2026",
      "description": "Overzicht van praktische SEO tips.",
      "isPartOf": {
        "@id": "https://example.com/#website"
      }
    },
    {
      "@type": "BlogPosting",
      "@id": "https://example.com/blog/seo-tips#blogpost",
      "headline": "SEO tips voor 2026",
      "description": "Overzicht van praktische SEO tips.",
      "image": "https://example.com/images/seo-tips-header.jpg",
      "datePublished": "2026-01-15T10:00:00+01:00",
      "dateModified": "2026-01-20T14:30:00+01:00",
      "author": {
        "@id": "https://example.com/#founder"
      },
      "publisher": {
        "@id": "https://example.com/#organization"
      },
      "mainEntityOfPage": {
        "@id": "https://example.com/blog/seo-tips#webpage"
      }
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://example.com/blog/seo-tips#breadcrumbs",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Home",
          "item": "https://example.com"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "Blog",
          "item": "https://example.com/blog"
        },
        {
          "@type": "ListItem",
          "position": 3,
          "name": "SEO tips voor 2026",
          "item": "https://example.com/blog/seo-tips"
        }
      ]
    }
  ]
}
</script>

Important for dateModified: Always add dateModified when you update an article. This helps search engines interpret changes better and can contribute to clearer freshness signals, which is also relevant for GEO optimization (Generative Engine Optimization).

Schemamarkup structures your content so that machines and people can find exactly what they need. And when LLMs understand you better, they cite youmore often.
— Hamzah Khadim, SEO Expert at Logik Digital

ID and URL strategy that is bulk-proof

A consistent @id strategy is essential to keep your structured data scalable. This becomes particularly crucial for sites with hundreds of product pages or blog articles.

Strict pattern for @id fragments:

  • WebPage: [CANONICAL_URL]#webpage

  • Service: [CANONICAL_URL]#service

  • Blog Posting: [CANONICAL_URL]#blogpost

  • BreadcrumbList: [CANONICAL_URL]#breadcrumbs

  • FAQ Page: [CANONICAL_URL]#faq

  • ImageObject (primary): [CANONICAL_URL]#primaryimage

Important rules:

  1. Use your canonical URL exactly. Copy the href from your <link rel="canonical"> tag.

  2. Match www/non-www exactly. As canonical https://www.example.com is, use that in JSON-LD as well.

  3. Match trailing slash exactly. If canonical ends with /, use that in @id as well.

  4. Use lowercase fragments. #webpage not #WebPage or #WEBPAGE.

  5. Consistent throughout the entire site. Not on page A #service and on page B #service.

Example of bulk implementation:

If you have 200 product pages, generate the @ids programmatically using exactly the same logic as your canonical URL generation. For Shopify sites: you can automate this via your theme's liquid templates.

Common mistakes (with fixes)

Quick reference: 10 mistakes overview

Error Recognition Impact Fix
Duplicate organization Each page has its own Organization definition May lead to inconsistencies Move to site-wide script
Mixing types Blog Posting + Service on same URL May lead to ambiguity Select one primary type
Self-referencing loop WebPage.mainEntityOfPage → itself Unnecessary circular reference Remove from WebPage node
FAQ not on page FAQPage layout without visible FAQ May lead to manual action Only add if visible
Unsubstantiated claims "500+ customers" without proof Misleading markup Only use verifiable facts
Inconsistent URLs Mix of www/non-www and trailing slash Breaks linking between entities Choose one format, use it everywhere
Overfilled sameAs Spam directories in sameAs array Dilutes authoritative signals Maximum 3-5 official sources
Multiple scripts 4+ separate JSON-LD blocks per page Unnecessarily complex, difficult to maintain Consolidate to 2 scripts with @graph
JSON syntax errors Trailing commas, smart quotes Breaks JSON parsing Validate with JSONLint
Modify other scripts GA script modified for JSON-LD edit Can tracking break Treat JSON-LD as a read-only zone
Duplicate organization
Recognition
Each page has its own Organization definition
Impact
May lead to inconsistencies
Fix
Move to site-wide script
Mixing types
Recognition
Blog Posting + Service on same URL
Impact
May lead to ambiguity
Fix
Select one primary type
Self-referencing loop
Recognition
WebPage.mainEntityOfPage → itself
Impact
Unnecessary circular reference
Fix
Remove from WebPage node
FAQ not on page
Recognition
FAQPage layout without visible FAQ
Impact
May lead to manual action
Fix
Only add if visible
Unsubstantiated claims
Recognition
"500+ customers" without proof
Impact
Misleading markup
Fix
Only use verifiable facts
Inconsistent URLs
Recognition
Mix of www/non-www and trailing slash
Impact
Breaks linking between entities
Fix
Choose one format, use it everywhere
Overfilled sameAs
Recognition
Spam directories in sameAs array
Impact
Dilutes authoritative signals
Fix
Maximum 3-5 official sources
Multiple scripts
Recognition
4+ separate JSON-LD blocks per page
Impact
Unnecessarily complex, difficult to maintain
Fix
Consolidate to 2 scripts with @graph
JSON syntax errors
Recognition
Trailing commas, smart quotes
Impact
Breaks JSON parsing
Fix
Validate with JSONLint
Modify other scripts
Recognition
GA script modified for JSON-LD edit
Impact
Can tracking break
Fix
Treat JSON-LD as a read-only zone

Detailed explanation for each error

1. Duplicate the organization chart on every page

What you see: Each page has its own Organization definition in the page-level JSON-LD.

Why it's problematic: Inconsistencies between pages can send unclear signals.

Fix: Move Organization to your site-wide script. Let page-level scripts refer via {"@id": "https://example.com/#organization"}.

2. Mixing Blog Posting and Service on the same URL

What you see: A page has both @type: "BlogPosting" as @type: "Service".

Why it's problematic: A page cannot be both a blog article and a service at the same time. This can lead to ambiguity.

Fix: Choose one primary type. Is it an article describing a service? BlogPosting. Is it a landing page for a service? Service + WebPage.

3. WebPage.mainEntityOfPage refers to itself

What you see:

Error Example
{
  "@type": "WebPage",
  "@id": "https://example.com/seo#webpage",
  "mainEntityOfPage": {
    "@id": "https://example.com/seo#webpage"
  }
}

Why it's wrong: mainEntityOfPage is intended to refer from an entity (Service, BlogPosting) to the WebPage where it is located. Not the other way around.

Fix: Remove mainEntityOfPage from WebPage. Use mainEntityOfPage Only IN the Service/BlogPosting node to refer back to WebPage.

4. FAQ content that is not on the page

What you see: FAQPage schema with questions that are not literally in the visible HTML.

Why it's wrong: Google's guidelines require structured data to match visible content. This can lead to manual action.

Fix: Only add FAQ schema if the questions AND answers are actually on the page. Do not copy and paste FAQs from a template.

5. Description with claims that you cannot substantiate

What you see: "description": "We are the best SEO agency in Belgium with 500+ satisfied customers"

Why it's problematic: If you don't have 500+ customers, this is misleading markup.

Fix: Only use facts that you can prove. Do you have 50 customers? Say so. Don't have customer data? Leave it out or keep it general.

6. Change URL formats halfway through the site

What you see: Homepage used https://example.com, use subpages https://example.com/, yet others https://www.example.com.

Why it's problematic: Inconsistent @ids break the linking between entities.

Fix: Choose one canonical URL format and use it everywhere. If you use canonical tags https://example.com is (without trailing slash), use that consistently in JSON-LD as well.

7. Overfilled sameAs with random sources

What you see: "sameAs": ["https://facebook.com/bedrijf", "https://linkedin.com/company/bedrijf", "https://random-directory.com/bedrijf123", "https://spam-linkfarm.org/bedrijf"]

Why it's problematic: SameAs is intended for official, authoritative sources. Not for every place where your company is mentioned.

Fix: Only use official social profiles (LinkedIn, Facebook, Twitter, Instagram) and official sources such as Wikipedia (if relevant). Max 3-5 URLs that you actually check and maintain.

8. Multiple JSON-LD scripts without reason

What you see: Four separate <script type="application/ld+json"> blocks on one page for WebPage, Service, BreadcrumbList, and Organization.

Why it is problematic: Unnecessarily complex, difficult to maintain, increases the risk of duplication and inconsistency.

Fix: Consolidate into two scripts: one site-wide (WebSite, Organization, Person) and one page-level (WebPage, Service/BlogPosting, BreadcrumbList, FAQ) with @graph.

9. Broken JSON due to syntax errors

JSON is strict in its syntax requirements. Three common errors:

A. Trailing commas

What you see:

Error: Trailing Comma
{
  "name": "Test",
  "url": "https://example.com",
}

Why it's wrong: JSON does not allow a trailing comma after the last property.

Fix: Remove the comma after the last property in each object.

B. Smart quotes (typographic quotation marks)

What you see:

Error: Smart Quotes
{
  "name": "Test's Service"
}

(Note the typographic apostrophe instead of straight quotation marks)

Why it's wrong: JSON requires straight double quotes (") for keys and string values. Typographic quotes (" " ' ') break parsing.

Fix: Replace all typographic quotes with straight quotes. Be sure to check this if you copy JSON from Word, Google Docs, or some WYSIWYG editors.

C. Escaping quotes within strings

What you see (invalid):

Error: Quotes Not Escaped
{
  "name": "Test "Premium" Service"
}

Why it's wrong: Quotes within a string must be escaped with a backslash.

Fix correct example:

Fix: Correctly Escaped Quotes
{
  "name": "Test \"Premium\" Service"
}

General fix: Use a JSON validator such as JSONLint before publishing to detect all these syntax errors.

10. Change other scripts in page with JSON-LD edit

What you see: Developer adds JSON-LD and accidentally changes an existing Google Analytics script or other functionality.

Why it's problematic: JSON-LD scripts must be standalone. Changes to other scripts can break tracking, ads, or other functionality.

Fix: Treat JSON-LD as a read-only zone. Add, but do not modify anything else. Always test after deployment to ensure other scripts still function.

“Previously, search engines were primarily indexes of documents. Now, Google is increasingly becoming an index of ‘things’ and facts related to them.”
— Aaron Bradley, Structured Data Consultant

Checklist for publication

Before you publish your JSON-LD:

  • JSON syntax validated with JSONLint

  • Schema types matched with page intent (Service for service page, BlogPosting for article)

  • All @id references checked (Organization @id correct, WebSite @id correct)

  • Tested with Google Rich Results Test

  • Tested with Schema Markup Validator

  • No errors or critical warnings in validators

  • Content in structured data matched with visible page content

  • URLs exactly like canonical URLs (match www/non-www and trailing slash)

  • DateModified added if article has been updated

  • Changelog tracking which pages have which schema

  • Batch process: first 5 pages live, monitor for 48 hours, then roll out to more pages

Structured data does not replace keyword research, but helps search engines understand the page intent more quickly.

Structured data is not a one-time task, but a system that you set up and maintain. Start with the site-wide entities, then add page-level markup according to the templates above, validate thoroughly, and monitor your Search Console for errors.

The sites that do this well have one thing in common: a clear separation between what belongs site-wide and what belongs page-level, with a consistent @id strategy that scales.

Structured data works best in combination with technical SEO, conversion optimization, and GEO strategies that ensure your content is findable in both traditional search engines and AI systems. If you need help auditing or implementing your structured data, a website audit can provide insight into your current situation.

Related articles:

For those who want to dig deeper into the technical side of SEO:

Clickforest logo

🚀 More leads, higher conversion, better ROI

This article provided you with insights. Now it's time for action. Whether you want to build a profitable webshop, generate more revenue from performance marketing or SEO, or grow with AI marketing - we provide concrete support to help you move forward.

💬 Discuss your challenge directly with Frederiek: Schedule a free strategy consultation or send us a message

📧 Prefer to email? Send your question to frederiek@clickforest.com or call +32 473 84 66 27

Strategy without action remains theory. Let's take your next step together.

Frequently asked questions about JSON-LD

Should I always include BreadcrumbList?
Not always. BreadcrumbList is useful if you actually display breadcrumbs on your pages, or if your site has a clear hierarchy that you can maintain consistently. It is not necessary for your homepage or standalone pages without a clear parent-child relationship. Google can also deduce the site structure from your internal linking.
What if I have multiple authors?
Definieer elke auteur als aparte Person entiteit in je site-wide script. Geef elke auteur een uniek @id (bijvoorbeeld #author-frederiek, #author-jan). In je BlogPosting verwijs je dan naar de juiste auteur: "author": {"@id": "https://example.com/#author-frederiek"}. Als je vaak wisselende auteurs hebt, is het praktischer om Person inline te definiëren per artikel in plaats van site-wide.
Is the FAQ schedule still useful?
Yes, but only if your FAQ content is actually on the page. Only add FAQ schema if the questions AND answers are literally visible to visitors. Don't expect guaranteed rich results, but it does help for structured content that search engines can interpret. Don't copy and paste FAQs from a template if they are not on the page.
How many Things in about is ideal?
2-4 Things in het about veld van een BlogPosting of Service is een goed uitgangspunt. Meer dan 6 kan de focus verwateren. Gebruik about om de kernonderwerpen te taggen. Bijvoorbeeld een artikel over "SEO voor webshops" heeft about: [{"@type": "Thing", "name": "SEO"}, {"@type": "Thing", "name": "E-commerce"}]. Gebruik concrete Thing definities, geen vage concepten.
Can I list prices in Service structured data?
This is advanced territory. If you want to mark up prices, you must do so carefully using the Offer + PriceSpecification schema, and only if the prices are literally visible on the page. For most service pages, we recommend keeping descriptions factual and price-free. If in doubt, leave prices out of structured data and only mention them in your regular page content.
What is the difference between WebPage and Article?
WebPage is the generic type for any web page. Article is a subtype specific to news articles, blog posts, or journalistic content. BlogPosting is another subtype of Article, specific to blog content. Use BlogPosting for blog posts, NewsArticle for news articles, Article for general articles, and WebPage for all other pages (services, contact, about us). Always choose the most specific type that fits.

Sources & References

Official Google & Schema.org documentation:

Validation Tools:

Implementation inspiration:

Next
Next

Gemini 3 Pro vs ChatGPT 5.2 vs Claude Sonnet 4.5 vs Perplexity: The definitive choice for 2026