Structured data, without writing JSON.
Structured data is how you tell Google what a page actually is — a business, an article, a product, a set of questions. Fill in what you know and copy the result into your page.
- Runs
- Entirely in your browser
- Covers
- Business, article, FAQ, product
- Returns
- JSON-LD for your <head>
- Keeps
- Nothing — no request is sent
What the page is
Pick the one the page is about. Marking a service page up as an Article is the most common way this goes wrong.
Google needs a name and an address for a local business. It will read what is here, but it will not show a rich result.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness"
}
</script>Where this stops
Markup rots quietly.
You paste this in once and it is correct once. Then the phone number changes, the prices move, the page is rewritten, and the markup keeps telling Google the old story. The agent writes schema for every page you have, keeps it matching what is actually on the page, and flags the day Google stops reading it.