schema

Implements JSON-LD schema.org structured data markup for rich search results.

Updated Jul 23, 2026
One-click install
npx skills add https://github.com/samuelgabrielsikorjak-sys/techscope-website --skill schema-samuelgabrielsikorjak-sys
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: schema
Source: https://github.com/samuelgabrielsikorjak-sys/techscope-website/tree/main/.claude/skills/marketingskills-main/skills/schema
Command: npx skills add https://github.com/samuelgabrielsikorjak-sys/techscope-website --skill schema-samuelgabrielsikorjak-sys

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Adding structured data to web pages is error-prone and requires knowing which schema.org types Google supports, which properties are required, and how to validate the markup. This Skill guides the implementation of correct JSON-LD schema markup so pages become eligible for rich results like star ratings, FAQs, and breadcrumbs in Google search. ## Core Features & Use Cases - Schema Type Implementation: Provides complete JSON-LD markup for Organization, WebSite, Article, Product, SoftwareApplication, FAQPage, HowTo, BreadcrumbList, LocalBusiness, and Event types with required and recommended properties. - Validation & Debugging: Walks through testing with Google Rich Results Test, Schema.org Validator, and Search Console, and helps diagnose why valid schema may not produce rich results. - Multi-Type Composition: Combines multiple schema types on one page using @graph, with implementation guidance for static sites, Next.js/React, and CMS platforms like WordPress. - Use Case: An e-commerce team needs product pages to show price, availability, and star ratings in Google. The Skill generates complete Product schema with Offer, AggregateRating, and BreadcrumbList markup ready to deploy. ## Quick Start Ask the assistant to add schema markup to your page, for example: add Product and FAQ schema markup in JSON-LD to my product page and validate it.

Frequently Asked Questions about schema

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add schema markup to my website?

Add JSON-LD structured data in a script tag in your page's head or body, using the schema.org type matching your content such as Article, Product, or FAQPage. Include all required properties, then validate with Google's Rich Results Test before deploying.

What schema markup do product pages need for rich results?

Product pages need Product schema with name, image, and an Offer containing price, priceCurrency, and availability. Add AggregateRating and Review schema if you have reviews, plus BreadcrumbList for navigation, to enable price and star rating displays in search.

Why is my schema markup not showing rich results in Google?

First validate with Google Rich Results Test and Schema.org Validator to catch syntax errors, missing required properties, or content mismatches. Note that valid schema does not guarantee rich results; Google chooses when to display them, so also check Search Console enhancement reports.

Can I use multiple schema types on one page?

Yes, combine multiple schema types using @graph in a single JSON-LD block, such as Organization, WebSite, and BreadcrumbList together. Use @id references to link entities like connecting a WebSite to its publisher Organization.

Does FAQ schema still work for rich results?

FAQPage schema uses a mainEntity array of Question items, each with an acceptedAnswer containing the answer text. Google requires factual, non-promotional answers and may limit FAQ rich result eligibility, so always validate and monitor Search Console.