If your website is how customers find you, your website is also how AI finds you. And AI does not read your site the way a human does.
It reads structured data — specifically JSON-LD markup buried in the code that tells ChatGPT, Perplexity, and Google's AI Overviews exactly what your business is, where you are, and what you sell.
The gap is enormous. And unlike most SEO problems, this one is fixable in an afternoon.
What schema actually is, in plain English
Schema is a labeling system. It is invisible to your customers and visible to search engines and AI models. It says, in machine-readable code, "this is a business," "this is its address," "this is a service it offers," "this is a question people ask, and this is the answer."
Without schema, an LLM has to guess. With schema, it knows.
A 2024 Data World study showed GPT-4's extraction accuracy jumped from 16% to 54% when content had structured data attached. Research from SE Ranking puts schema markup among the strongest predictors of AI citation in 2026.
The three schema types that do most of the work
For a local Orange County business, three schema types do most of the heavy lifting. Most small business sites have zero of them.
- 1LocalBusiness
The foundation. Your business name, address, geo coordinates, phone number, hours, price range, and the area you serve. This is what tells Google "yes, this is a real place in Irvine that does these things."
- 2Service
Each service you offer as its own structured entity. Not just a list on a page — a labeled object with a name, description, and pricing if you publish it. AI uses these to answer "who offers X near me" queries.
- 3FAQPage
Real questions customers ask, with direct answers. This is the schema type AI Overviews pull from most heavily, because it is literally formatted as question-and-answer pairs ready to surface.
What it looks like in code
Here is a stripped-down LocalBusiness schema for a fictional OC business. It lives in the head of your HTML as a script tag.
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Your Business Name",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Main St",
"addressLocality": "Irvine",
"addressRegion": "CA",
"postalCode": "92606"
},
"telephone": "+1-714-555-0100",
"openingHours": "Mo-Fr 09:00-17:00",
"priceRange": "$$",
"areaServed": "Orange County, CA"
}That's it. Twelve lines of code that change whether AI knows what your business actually is. Most OC sites do not have this on a single page.
How to check what your site has right now
This takes about two minutes.
- 1Open your homepage
In a browser. Just navigate to it normally.
- 2View the page source
Right-click anywhere on the page and choose "View Page Source" (or press Cmd+U on Mac, Ctrl+U on Windows).
- 3Search for schema
Press Cmd+F (or Ctrl+F) and search for: application/ld+json
If nothing comes up, you have no JSON-LD schema at all. Your site is invisible to the labeling system AI uses.
If something does come up, copy what you find and paste it into Google's Rich Results Test — it will tell you exactly what types of schema you have and whether they are valid.
The realistic effort to fix it
For a small business site, adding the three schema types takes a developer roughly 2 to 4 hours. That is not a typo. It is one of the highest-leverage hours of work you can do for AI visibility in 2026.
If you are on a CMS, your developer can usually add it via a custom code injection or a schema plugin. If you are on a static site, it is a direct edit to the HTML head. Either way, this is not a rebuild — it is a targeted addition.
What schema does not solve
Worth being clear about the limits. Schema makes your site machine-readable. It does not make your site good. If your site is slow, ugly, has confusing navigation, or fails accessibility, schema will not fix any of that. AI models also weight content quality, citation consistency, and review sentiment alongside structured data.
But schema is the floor. Without it, the rest of your AI-optimization work is fighting uphill. With it, every other improvement compounds.