When an engine is deciding which page to cite, recency is a tiebreaker. A page that clearly says “updated last month” reads as more trustworthy than one that could be from 2018. Freshness signals are how you show your proof is current, instead of leaving an engine to wonder.
What it is
Freshness is a set of consistent “last updated” signals across your page: a visible date a human can see, a matching dateModified in your structured data, and an accurate <lastmod> in your sitemap. The key word is consistent. They should all agree, and they should all be true.
Why AI engines care
AI engines want to give people current answers. Faced with two pages that answer the same question, a clear, verifiable recency signal helps yours get picked as the live, citable source. Stale-looking pages get passed over even when the content is still good. The flip side: pages with no date at all force the engine to guess, and guesses do not break in your favor.
How to set it up
Show a visible date. On pages you actively maintain, put a plain “Last updated: June 28, 2026” near the top or bottom. This is the signal a human trusts, and the one your structured data should mirror.
Add the dates to your structured data. Use datePublished for when the page first went live and dateModified for the most recent meaningful update. Use ISO 8601 format:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "2026 Guide to AI Search Visibility",
"datePublished": "2026-01-15T09:00:00-05:00",
"dateModified": "2026-06-28T14:30:00-04:00",
"author": { "@type": "Organization", "name": "Acme Analytics" }
}
</script>
Keep your sitemap’s lastmod accurate. The <lastmod> value in your sitemap should reflect the same real last-change date.
Do not fake the date
Update the date only when the content actually changes in a meaningful way, the main text, the structured data, the real substance. Not a copyright-year bump or a tweaked footer.
This is the trap most sites fall into: stamping every page with today’s date to look fresh. Google specifically says it only trusts lastmod when it is “consistently and verifiably” accurate, which it checks against the page’s real modification history. Fake the freshness and you do not just lose the benefit, you train the engine to ignore your dates across the whole site. Accurate and boring beats fresh and fake.