schema

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

Updated Aug 2, 2026
One-click install
npx skills add https://github.com/Pinkycherry/newbusinessideas3 --skill schema-pinkycherry
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: schema
Source: https://github.com/Pinkycherry/newbusinessideas3/tree/main/.claude/skills/schema
Command: npx skills add https://github.com/Pinkycherry/newbusinessideas3 --skill schema-pinkycherry

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Search engines often fail to understand page content well enough to display rich results like star ratings, FAQ dropdowns, or breadcrumbs. This Skill guides the implementation of schema.org structured data so pages become eligible for enhanced Google search appearances. ## Core Features & Use Cases - JSON-LD Implementation: Generates complete, valid JSON-LD markup for common types including Organization, Article, Product, FAQPage, BreadcrumbList, LocalBusiness, Event, and SoftwareApplication. - Validation & Debugging: Provides a systematic approach to testing markup with Google Rich Results Test, Schema.org Validator, and Search Console, plus troubleshooting when rich results fail to appear. - Use Case: An e-commerce site wants product pages to show price, availability, and star ratings in Google search. The Skill produces complete Product schema with Offer and AggregateRating, combined with BreadcrumbList via @graph, ready to paste into the page template. ## Quick Start Ask the assistant to add schema markup to your page, describing the page type and what rich results you want to achieve.

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 schema markup using JSON-LD format placed in a script tag in your page's head or body. Identify the appropriate schema.org type for your content, include all required properties, then validate with Google's Rich Results Test before deploying.

What schema types does Google support for rich results?

Google supports rich results for types including Article, Product, FAQPage, HowTo, BreadcrumbList, LocalBusiness, Event, and SoftwareApplication. Each type has required properties that must be present for eligibility, such as headline and image for Articles.

Can I combine multiple schema types on one page?

Yes, combine multiple schema types on one page using the @graph property in a single JSON-LD block. This lets you include Organization, WebSite, and BreadcrumbList together, with @id references linking related entities.

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 or missing required properties. Note that valid schema does not guarantee rich results, since Google chooses when to display them; check Search Console enhancement reports for errors.

Does schema markup work with React or Next.js sites?

Yes, render the JSON-LD in a script tag with type application/ld+json, ideally server-side rendered so crawlers see it immediately. In Next.js, serialize your data object with JSON.stringify inside a Head component.