Storefront Next ships built-in support for Answer Engine Optimization (AEO) and Generative Engine Optimization (GEO) on the Product Detail Page (PDP) and Product Listing Page (PLP).
AEO (Answer Engine Optimization) makes product and category facts machine-readable and consistent so search engines and crawlers can parse and enrich results (for example, rich product snippets), and so assistants, voice search, and other answer-style surfaces can cite accurate who, what, how much, and in-stock information without guessing from unstructured HTML alone.
GEO (Generative Engine Optimization) supplies clear entity structure (products, offers, collections, breadcrumbs) and aligned metadata (titles, descriptions, canonical URLs) so generative and retrieval-augmented systems can ground responses in your storefront’s authoritative data.
AEO and GEO have these benefits:
Rich results in search engines: Structured Product data enables Google rich snippets: price, availability, and review stars inline in search results.
AI citation and grounding: Clear entity graphs (products, offers, breadcrumbs) give Large Language Models (LLMs) and Retrieval-Augmented Generation (RAG) systems verifiable facts to cite rather than fabricated summaries.
Voice and assistant surfaces: Answer engines can resolve who, what, how much, and in-stock queries directly from your structured data.
Multisite consistency: URL helpers respect site/locale path prefixes and proxy headers, so structured data links are correct across all your storefronts without manual configuration. Managed Runtime and proxy hosts do not leak internal origins into structured data.
Zero page-breakage risk: Schema generation runs in a deferred Promise. If it fails, the page renders normally with no script tag.
How It Works
Two technical mechanisms work together: JSON-LD and SeoMeta.
Mechanism
Purpose
Where
JSON-LD (<script type="application/ld+json">)
Structured entity data for crawlers and AI systems
PDP and PLP route loaders → JsonLd component
SeoMeta
Classic <title>, <meta name="description">, Open Graph tags
ProductContent (PDP) and category route (PLP)
JSON-LD is the primary AEO and GEO signal. SeoMeta complements it—crawlers and social previews still read <head> tags even when structured data is present.
The PDP emits a schema.org/Product graph with these fields populated from B2C Commerce API (SCAPI) data when available.
Field
Source
name
product.name
description
product.longDescription, falling back to shortDescription, then pageDescription if earlier fields are empty
image
Primary image; up to 5 large or medium image URLs when multiple views exist (thumbnails excluded)
sku, productID
product.id
url
Public storefront origin + current path
brand
product.brand
mpn
product.manufacturerSKU
gtin
product.ean
category
product.primaryCategoryId
color
First color variation attribute value
additionalProperty
All variation attributes + custom attributes as PropertyValue
offers.price
Effective price (base or promo)
offers.priceCurrency
product.currency
offers.availability
Derived from inventory (InStock, OutOfStock, BackOrder, and PreOrder)
offers.priceValidUntil
One year from generation date (default horizon)
offers.lowPrice and highPrice
Populated for master products with a price range across variants
SeoMeta sets <title> to the product name, meta description to pageDescription or shortDescription, and Open Graph og:type to product with the page URL and primary image.
The PLP emits a schema.org/CollectionPage with a mainEntity of type ItemList.
CollectionPage
name: Category name
description: category.pageDescription, when present
url: Canonical category URL
ItemList (inside mainEntity)
numberOfItems: Total from search result when present
itemListElement: Up to 24 products (for payload size), each as a ListItem wrapping a lightweight Product (name, url, image, offers)
Pricing
Each list item uses an effective price: the lowest promotional price when promotions exist, otherwise the base price. For master products, the schema considers variant-level prices when applicable.
Availability
The orderable field on the search hit drives InStock or OutOfStock availability when known. If the hit doesn’t expose orderability but config.search.products.refine.orderableOnly is true, then availability is inferred as in stock for listed hits.
BreadcrumbList
Built from parentCategoryTree when present, plus the current category. Category links use buildCategorySchemaUrl so paths stay consistent with multi-site prefixes.
The loader merges critical and non-critical search hits before schema generation, so the ItemList reflects the full first page of results, not just the above-the-fold slice.
Note
SeoMeta
Sets <title> to the category name, meta description to pageDescription or the general description, and og:type to website with the canonical page URL.
Storefront Next builds all JSON-LD URLs from the public storefront origin and current path, not from product.slugUrl or internal API URLs. This approach is critical in serverless or proxied environments, such as Managed Runtime and content delivery networks (CDNs), where request.url can contain internal routing addresses.
File:
1src/utils/schema-url.ts
Key functions:
1// Reads x-forwarded-host / x-forwarded-proto headers to resolve the public domain2getPublicOrigin(request: Request): string34// Builds product and category URLs that preserve the site/locale path prefix5buildProductSchemaUrl({productId, origin, currentPageUrl}): string | undefined6buildCategorySchemaUrl({categoryId, origin, currentPageUrl}): string | undefined
Example: Multisite URL Preservation
1// Current page: https://example.com/global/en-GB/category/womens2// Built product URL:3buildProductSchemaUrl({4 productId: "12345",5 origin: "https://example.com",6 currentPageUrl: "https://example.com/global/en-GB/category/womens",7});8// → 'https://example.com/global/en-GB/product/12345'
Storefront Next extracts the site/locale prefix (for example, /global/en-GB) from the current page URL and prepends it to every linked URL inside the schema.
Rendering
Both PDP and PLP inject JSON-LD via the JsonLd component, which renders a <script type="application/ld+json"> tag. The loader defers schema generation and returns an unresolved Promise. JsonLd is wrapped in <Suspense> using React’s use() so that JSON-LD can stream with Server-Side Rendering (SSR) after the product or category payload is ready.
1// JsonLd component usage (already wired in the routes)2import { JsonLd } from "@/components/json-ld";34<Suspense fallback={null}>5 <JsonLdWrapper schemaPromise={loaderData.productSchema} id="product-schema" />6</Suspense>;
If generateProductSchema or generateCategorySchema throws, failures in schema generation are logged and result in no script tag rather than breaking the page. The page continues to load normally.
Script IDs:
PDP: id="product-schema"
PLP: id="category-schema"
Tests and Stories
Unit tests: src/utils/category-schema.test.ts, src/components/json-ld/index.test.tsx
Route-level coverage touches JSON-LD in src/routes/_app.category.$categoryId.test.tsx and src/routes/_app.product.$productId.test.tsx
The quality of AEO/GEO signals depends directly on the data in your B2C Commerce catalog. Ensure Business Manager catalog fields are populated so generators and answer engines have factual text to align with structured data. Make sure that these Business Manager fields are populated for every product and category.
pageDescription: Used as the meta description and JSON-LD description
longDescription or shortDescription: Fallbacks for JSON-LD description
brand: Populates schema:brand
ean: Populates schema:gtin
manufacturerSKU: Populates schema:mpn
Google’s Rich Results Test flags structured data that contradicts visible on-page content as a quality issue. Keep JSON-LD in sync with visible on-page content to avoid conflicting signals. Keep catalog fields in sync with what shoppers see.