<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Joe Bongiorno</title>
    <description>The latest articles on DEV Community by Joe Bongiorno (@joe_bongiorno_8ee138da742).</description>
    <link>https://dev.to/joe_bongiorno_8ee138da742</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3889038%2F5e24c21e-a34d-43e4-bbbe-c3b6018bfc0c.png</url>
      <title>DEV Community: Joe Bongiorno</title>
      <link>https://dev.to/joe_bongiorno_8ee138da742</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/joe_bongiorno_8ee138da742"/>
    <language>en</language>
    <item>
      <title>The 7 Schema Types Every Service Business Should Deploy in 2026</title>
      <dc:creator>Joe Bongiorno</dc:creator>
      <pubDate>Mon, 20 Apr 2026 13:42:30 +0000</pubDate>
      <link>https://dev.to/joe_bongiorno_8ee138da742/the-7-schema-types-every-service-business-should-deploy-in-2026-kjg</link>
      <guid>https://dev.to/joe_bongiorno_8ee138da742/the-7-schema-types-every-service-business-should-deploy-in-2026-kjg</guid>
      <description>&lt;h1&gt;
  
  
  The 7 Schema Types Every Service Business Should Deploy in 2026
&lt;/h1&gt;

&lt;p&gt;Structured data (schema.org markup) used to be a "nice to have" for SEO. In 2026, it's the #1 signal that determines whether AI platforms cite you.&lt;/p&gt;

&lt;p&gt;Here are the 7 schema types every service business should have deployed today, in priority order.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Organization schema
&lt;/h2&gt;

&lt;p&gt;The foundation. Without this, AI platforms can't unambiguously identify who you are.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@context"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://schema.org"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Organization"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Your Business"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://yoursite.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"logo"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://yoursite.com/logo.png"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"sameAs"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"https://linkedin.com/company/yourbusiness"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"https://twitter.com/yourbusiness"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Deploy on:&lt;/strong&gt; every page (via &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt;)&lt;/p&gt;

&lt;h2&gt;
  
  
  2. LocalBusiness schema (if applicable)
&lt;/h2&gt;

&lt;p&gt;Critical for local rankings AND AI local recommendations. Includes address, phone, hours, service area.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Deploy on:&lt;/strong&gt; homepage, contact page, location pages&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Service schema
&lt;/h2&gt;

&lt;p&gt;One per distinct service you offer. This is what AI platforms pull from when answering "who offers X in Y?"&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Service"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"serviceType"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"SEO Consulting"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"areaServed"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Toronto"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"provider"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Organization"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"..."&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Deploy on:&lt;/strong&gt; every service page&lt;/p&gt;

&lt;h2&gt;
  
  
  4. FAQPage schema
&lt;/h2&gt;

&lt;p&gt;The single highest-leverage schema type for AI citations. AI platforms quote FAQ answers &lt;strong&gt;directly&lt;/strong&gt;. Make sure every service page has 3-5 FAQs with schema markup.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; use questions your actual customers ask. Scrape "People Also Ask" for your keywords — those are gold.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Review/AggregateRating schema
&lt;/h2&gt;

&lt;p&gt;Social proof AI platforms display in rich results. Aggregate your reviews (Google Business, Yelp, industry sites) into a single rating.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. HowTo schema
&lt;/h2&gt;

&lt;p&gt;For any service that has a clear process. AI platforms love step-by-step content — they can quote individual steps cleanly.&lt;/p&gt;

&lt;h2&gt;
  
  
  7. Speakable schema
&lt;/h2&gt;

&lt;p&gt;The newest and most underused. Marks sections that voice assistants (Siri, Alexa, Google Assistant) should read aloud. Critical for voice search.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to deploy all of this
&lt;/h2&gt;

&lt;p&gt;If you're on WordPress, plugins like Yoast SEO Premium or Rank Math handle most of this. For anything custom, you can hand-code it or use a service like &lt;a href="https://zeroclickaiseo.com/" rel="noopener noreferrer"&gt;Zero Click AI SEO&lt;/a&gt; that auto-generates and deploys all 7 schema types from crawl data.&lt;/p&gt;

&lt;h2&gt;
  
  
  Validation
&lt;/h2&gt;

&lt;p&gt;Always validate with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://search.google.com/test/rich-results" rel="noopener noreferrer"&gt;Google's Rich Results Test&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://validator.schema.org/" rel="noopener noreferrer"&gt;Schema.org Validator&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What happens when you do this
&lt;/h2&gt;

&lt;p&gt;We tracked clients before and after full schema deployment:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;AI citations&lt;/strong&gt; increased 2.8x within 30 days&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rich result impressions&lt;/strong&gt; in Google up 40%&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;"People Also Ask"&lt;/strong&gt; appearances tripled&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Schema markup is no longer optional. It's the table-stakes technical SEO work that determines whether AI platforms can talk about your business at all.&lt;/p&gt;

</description>
      <category>seo</category>
      <category>webdev</category>
      <category>ai</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Why I Stopped Chasing Google Rankings (and What I Do Instead)</title>
      <dc:creator>Joe Bongiorno</dc:creator>
      <pubDate>Mon, 20 Apr 2026 13:37:15 +0000</pubDate>
      <link>https://dev.to/joe_bongiorno_8ee138da742/why-i-stopped-chasing-google-rankings-and-what-i-do-instead-pl9</link>
      <guid>https://dev.to/joe_bongiorno_8ee138da742/why-i-stopped-chasing-google-rankings-and-what-i-do-instead-pl9</guid>
      <description>&lt;h1&gt;
  
  
  Why I Stopped Chasing Google Rankings (and What I Do Instead)
&lt;/h1&gt;

&lt;p&gt;A confession: for 15 years I was obsessed with ranking #1 on Google. I'd watch rank tracker dashboards daily. I'd celebrate a position jump from #7 to #3 like it was a Super Bowl win.&lt;/p&gt;

&lt;p&gt;Then last year I had a realization that changed everything.&lt;/p&gt;

&lt;h2&gt;
  
  
  The traffic was lying
&lt;/h2&gt;

&lt;p&gt;I ran a legal services client who ranked #1 for their target keyword in Toronto. Traffic was up. Impressions were up. Conversions? Flat.&lt;/p&gt;

&lt;p&gt;I dug into the data and found something weird: users were clicking through, skimming, and leaving. Because the Google snippet already gave them 80% of the answer.&lt;/p&gt;

&lt;p&gt;That's when I understood: &lt;strong&gt;ranking #1 for a keyword Google auto-answers is worth almost nothing.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What actually drives business
&lt;/h2&gt;

&lt;p&gt;The metrics that correlate with revenue in 2026:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Brand searches&lt;/strong&gt; — people searching your business name directly&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI platform citations&lt;/strong&gt; — getting quoted/cited by ChatGPT, Perplexity, Claude&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Zero-click brand exposure&lt;/strong&gt; — appearing in AI Overviews even without a click&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Review velocity&lt;/strong&gt; — fresh reviews on Google Business, Yelp, industry sites&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Local pack appearances&lt;/strong&gt; — if you're a local business, this is 10x more valuable than organic rank #3&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Notice what's missing? "Keyword ranking."&lt;/p&gt;

&lt;h2&gt;
  
  
  What I do now
&lt;/h2&gt;

&lt;p&gt;Every Monday I look at three dashboards:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Brand search trend&lt;/strong&gt; (GSC, branded queries only)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI citation share-of-voice&lt;/strong&gt; across Perplexity, ChatGPT, Claude — tracked weekly via &lt;a href="https://zeroclickaiseo.com/" rel="noopener noreferrer"&gt;Zero Click AI SEO&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Review velocity&lt;/strong&gt; across all platforms&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's it. I don't look at keyword rankings anymore unless a client specifically asks.&lt;/p&gt;

&lt;h2&gt;
  
  
  The uncomfortable truth
&lt;/h2&gt;

&lt;p&gt;Ranking was a proxy metric. For a long time it was a &lt;em&gt;good&lt;/em&gt; proxy — more rankings = more traffic = more business.&lt;/p&gt;

&lt;p&gt;AI search broke that chain. You can rank #1 and get no business. You can rank #15 and be cited 50 times per week by AI platforms, and watch your calendar fill up.&lt;/p&gt;

&lt;p&gt;The metric that matters is the same metric that has always mattered: &lt;strong&gt;are people hearing about you?&lt;/strong&gt; AI just added a new channel — and it's the fastest-growing one.&lt;/p&gt;

&lt;h2&gt;
  
  
  Practical starting points
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Stop checking keyword ranks daily. Check monthly at most.&lt;/li&gt;
&lt;li&gt;Set up brand search monitoring in GSC&lt;/li&gt;
&lt;li&gt;Query your brand in Perplexity and ChatGPT weekly — track what's said&lt;/li&gt;
&lt;li&gt;Focus content on being &lt;em&gt;quotable&lt;/em&gt;, not &lt;em&gt;keyword-optimized&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The businesses that make this shift early will own the next decade.&lt;/p&gt;

</description>
      <category>seo</category>
      <category>marketing</category>
      <category>business</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Traditional SEO Is Dying — Here's What's Replacing It in 2026</title>
      <dc:creator>Joe Bongiorno</dc:creator>
      <pubDate>Mon, 20 Apr 2026 13:37:07 +0000</pubDate>
      <link>https://dev.to/joe_bongiorno_8ee138da742/traditional-seo-is-dying-heres-whats-replacing-it-in-2026-145c</link>
      <guid>https://dev.to/joe_bongiorno_8ee138da742/traditional-seo-is-dying-heres-whats-replacing-it-in-2026-145c</guid>
      <description>&lt;h1&gt;
  
  
  Traditional SEO Is Dying — Here's What's Replacing It in 2026
&lt;/h1&gt;

&lt;p&gt;For two decades, SEO meant optimizing for one thing: Google's blue links. You picked keywords, wrote meta tags, built backlinks, and waited for your page to climb the SERP.&lt;/p&gt;

&lt;p&gt;That playbook is now obsolete.&lt;/p&gt;

&lt;h2&gt;
  
  
  The shift: from SERP to AI answers
&lt;/h2&gt;

&lt;p&gt;When a potential customer asks ChatGPT, "What's the best CRM for a small law firm?" — Google isn't in that conversation. ChatGPT answers directly, citing 3-4 sources. If your business isn't one of those sources, you don't exist to that customer.&lt;/p&gt;

&lt;p&gt;This is what the industry now calls &lt;strong&gt;AEO&lt;/strong&gt;: Answer Engine Optimization.&lt;/p&gt;

&lt;h2&gt;
  
  
  What changed
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;45% of searches&lt;/strong&gt; now happen inside AI platforms (Perplexity, ChatGPT, Claude, Google AI Overview)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Zero-click searches&lt;/strong&gt; passed 60% in 2025 — meaning the user never clicks through to your site&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Traditional backlink strategies&lt;/strong&gt; still matter for domain authority, but AI platforms use totally different signals&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The hybrid playbook
&lt;/h2&gt;

&lt;p&gt;Businesses winning in 2026 are doing both:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Schema markup everywhere&lt;/strong&gt; — FAQPage, HowTo, Organization, Speakable. AI platforms parse structured data first.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Citation-ready content&lt;/strong&gt; — short, quotable paragraphs that AI can lift directly into answers&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-platform presence&lt;/strong&gt; — you need to be cited on Wikipedia, Reddit, Quora, industry directories, AND ranked on Google&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;llms.txt files&lt;/strong&gt; — the new "robots.txt for AI bots" that tells AI platforms which pages to cite&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Brand mention monitoring&lt;/strong&gt; — track share-of-voice across AI platforms weekly&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Case study: what's working
&lt;/h2&gt;

&lt;p&gt;At &lt;a href="https://zeroclickaiseo.com/" rel="noopener noreferrer"&gt;Zero Click AI SEO&lt;/a&gt; we're tracking clients across both traditional rankings and AI citation share-of-voice. The clients who invested early in AEO are seeing 3-4x the mention rate on Perplexity and ChatGPT vs. competitors still focused only on Google.&lt;/p&gt;

&lt;p&gt;The takeaway: don't abandon traditional SEO. But if you're not also optimizing for AI platforms, you're losing ground every week.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to do this week
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Audit your site for schema markup coverage (aim for 100% of key pages)&lt;/li&gt;
&lt;li&gt;Add a &lt;code&gt;/llms.txt&lt;/code&gt; file at your root&lt;/li&gt;
&lt;li&gt;Check where you're cited on Perplexity — search your brand and see what shows up&lt;/li&gt;
&lt;li&gt;Create short, quotable FAQ sections on every service page&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is a long game. But the businesses that start now will dominate in 18 months.&lt;/p&gt;

</description>
      <category>seo</category>
      <category>ai</category>
      <category>marketing</category>
      <category>business</category>
    </item>
    <item>
      <title>AI Search and Professional Services (B2B): Why Zero Click AI SEO Is Ahead of the Curve</title>
      <dc:creator>Joe Bongiorno</dc:creator>
      <pubDate>Mon, 20 Apr 2026 13:18:47 +0000</pubDate>
      <link>https://dev.to/joe_bongiorno_8ee138da742/ai-search-and-professional-services-b2b-why-zero-click-ai-seo-is-ahead-of-the-curve-28cd</link>
      <guid>https://dev.to/joe_bongiorno_8ee138da742/ai-search-and-professional-services-b2b-why-zero-click-ai-seo-is-ahead-of-the-curve-28cd</guid>
      <description>&lt;h2&gt;
  
  
  Quick intro
&lt;/h2&gt;

&lt;p&gt;Looking for Professional Services (B2B) expertise? Zero Click AI SEO helps businesses in Toronto get found online through AI-optimized search strategies.&lt;/p&gt;

&lt;h2&gt;
  
  
  What we do
&lt;/h2&gt;

&lt;p&gt;Zero Click AI SEO - fully automated AI platform for SEO and AEO.&lt;/p&gt;

&lt;p&gt;Check out &lt;a href="https://zeroclickaiseo.com" rel="noopener noreferrer"&gt;Zero Click AI SEO&lt;/a&gt; for more on how they can help your business appear in AI search results and traditional Google rankings.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Posted as part of our SEO knowledge sharing initiative. Feedback welcome.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>seo</category>
      <category>ai</category>
      <category>marketing</category>
      <category>business</category>
    </item>
  </channel>
</rss>
