Launch in Days, Not Weeks
Professional one-page website. Only a few slots left this month
You added schema markup, then forgot about it. Google now uses structured data to power AI Overviews, knowledge panels, and rich results that look nothing like the traditional blue links. Get this right and your snippets earn the click. Get it wrong and you are invisible in the formats your competitors are already occupying.
Schema markup is structured data added to your HTML that tells search engines precisely what your content means, not just what it says. It uses a standardised vocabulary from Schema.org and is typically implemented as JSON-LD: a block of JavaScript embedded in the <head> of your page.
Without schema: Google reads your page, infers what it is about, and makes its best guess about how to display it in search results.
With schema: you explicitly tell Google “this page describes a Service, the service is called X, it costs from £Y, it is offered by Organisation Z, and here are three frequently asked questions about it.” Google uses this information to generate enhanced search features.
The role of schema has expanded in 2026. Google’s AI Overviews (the AI-generated summaries at the top of some search results pages) increasingly draw from structured data when generating responses. FAQ schema, Service schema, and Article schema are all cited as sources in AI Overviews. Getting these right means your site is more likely to be cited in AI-generated answers, not just in traditional blue link results.
Most schema guides list 50 types and leave you paralysed. The six below cover what matters for a typical UK B2B marketing site.
1. Organization. Tells Google who you are: business name, URL, logo, contact details, social profiles. Appears in your Google Knowledge Panel. Foundation schema for every business site.
2. WebSite. Enables sitelinks search box in search results (the search field that appears below large brand results). Also signals to Google the official name and URL of your site.
3. BreadcrumbList. Marks up the navigation breadcrumb on inner pages. Produces breadcrumb rich results in search snippets: “Home > Services > Web Design” appearing below the title in search results. Improves click-through rate and crawl depth signals.
4. Service. Marks up individual service pages with service name, description, offering provider, and service area. Increasingly used to populate Google’s local service features and AI Overview citations.
5. FAQPage. Marks up FAQ sections so they appear as expandable questions directly in search results. One of the highest-click-through rich result types for B2B content. Google has restricted FAQ rich results for some site types, but they remain effective for legitimate FAQ content on authoritative sites.
6. Article. Marks up blog posts and content pages with author, date published, date modified, and headline. Improves how your content is represented in Google News, Discover, and AI Overview citations.
The Organization schema belongs on your homepage and should include at minimum:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Fernside Studio",
"url": "https://fernsidestudio.com",
"logo": "https://fernsidestudio.com/branding/logo.png",
"contactPoint": {
"@type": "ContactPoint",
"email": "hello@fernsidestudio.com",
"contactType": "customer service"
},
"sameAs": [
"https://www.linkedin.com/company/fernsidestudio",
"https://twitter.com/fernsidestudio"
]
}
The sameAs property is how Google connects your website to your social profiles and other mentions on the web. Include any official profiles your business maintains.
For local businesses, use LocalBusiness instead of Organization, and include address, telephone, and openingHours.
Service schema on individual service pages provides structured context that Google can use when someone searches for your specific offering.
A minimal Service schema for a web design service page:
{
"@context": "https://schema.org",
"@type": "Service",
"name": "Web Design for UK B2B Companies",
"provider": {
"@type": "Organization",
"name": "Fernside Studio"
},
"description": "Custom web design and development for UK B2B service businesses.",
"areaServed": "GB",
"url": "https://fernsidestudio.com/services/web-design"
}
FAQPage schema works alongside regular FAQ content. Do not add FAQPage schema to content that is not genuinely question-and-answer format. Google’s quality guidelines explicitly flag schema used on content where it does not match the visible page content.
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How long does a web design project take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "A Launch Sprint delivers a one-page site in five days. A Studio Site takes four to eight weeks depending on scope."
}
}
]
}
For blog posts, the Article schema should include the author (referencing a Person entity), datePublished, dateModified, and the headline.
BreadcrumbList schema maps to your visible breadcrumb navigation. Each item in the list has a position, a name, and a URL. This schema should match the breadcrumbs visible on the page: Google penalises schema that describes content not visible to users.
Validation. Use Google’s Rich Results Test (search.google.com/test/rich-results) to verify schema before deploying. The tool shows which rich result types your schema qualifies for and flags any errors.
Search Console monitoring. After deploying schema, check Search Console > Enhancements. This section shows which schema types Google has discovered, how many pages carry each type, and any errors or warnings. New schema takes one to four weeks to show in this report after deployment.
Common errors:
name or url)One note: adding schema does not guarantee rich results. Google selects which results get enhanced display based on quality signals. Getting the schema right is necessary but not sufficient. Content quality and site authority matter too.
Schema markup is a one-time implementation with ongoing maintenance requirements. Get it right once, monitor for errors quarterly, and update when your business details change.
At Fernside Studio, schema implementation is included in every web development project: Organization, WebSite, BreadcrumbList, and service-level schema as standard, with Article schema on all blog infrastructure. If you want a schema audit of your current site, get in touch via our contact page.
Say hello
Quick intro