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
| Context | Schema type | Enabled by |
|---|---|---|
| Blog posts | Article / BlogPosting | Core, always on |
| Products (WooCommerce/Shopify) | Product, Offer | Woocommerce SEO / Shopify SEO |
| Local business pages | LocalBusiness | Local SEO |
| Video content | VideoObject | Video SEO |
| News articles | NewsArticle | News SEO |
| Author archives | Person | Author SEO |
| Q&A content | FAQPage | Detected FAQ blocks |
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.