Schema (structured data)

JSON-LD Schema.org markup, including advanced types like Article, Product, LocalBusiness, and FAQ, output automatically.

5 min read

Seofyme outputs a JSON-LD schema graph on every page, linking related entities (the organization, the author, the webpage, the article) together the way Google's documentation recommends, instead of dropping unconnected schema blocks.

Core graph

By default every page includes Organization, WebSite, and WebPage nodes. Posts add Article; pages that represent products, events, or FAQs add the matching type automatically based on what's detected on the page.

Advanced types

ContextSchema typeEnabled by
Blog postsArticle / BlogPostingCore, always on
Products (WooCommerce/Shopify)Product, OfferWoocommerce SEO / Shopify SEO
Local business pagesLocalBusinessLocal SEO
Video contentVideoObjectVideo SEO
News articlesNewsArticleNews SEO
Author archivesPersonAuthor SEO
Q&A contentFAQPageDetected FAQ blocks
Simplified example of Article schema output
json
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "How to rank local service pages",
  "author": { "@type": "Person", "name": "Jamie Rivera" },
  "publisher": { "@type": "Organization", "name": "Example Co" }
}

Tip

Use Google's Rich Results Test against a published URL to confirm the schema graph is valid and eligible for rich results.