marketing-schema

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

Updated May 26, 2026
One-click install
npx skills add https://github.com/avel123111/triplanio --skill marketing-schema-avel123111
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: marketing-schema
Source: https://github.com/avel123111/triplanio/tree/main/.claude/skills/marketing-schema
Command: npx skills add https://github.com/avel123111/triplanio --skill marketing-schema-avel123111

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Pages without structured data miss out on Google rich results like star ratings, FAQ dropdowns, and breadcrumbs, and search engines struggle to understand page content accurately. ## Core Features & Use Cases - Schema Type Guidance: Covers Organization, Article, Product, SoftwareApplication, FAQPage, HowTo, BreadcrumbList, LocalBusiness, and Event types with required and recommended properties. - Ready-to-Use JSON-LD Examples: Complete copy-paste markup for every common schema type, including multi-type @graph combinations and a Next.js implementation pattern. - Validation Workflow: Directs testing through Google Rich Results Test, Schema.org Validator, and Search Console, with common error diagnosis. - Use Case: You are launching a SaaS product page and want star ratings and pricing to appear in Google search results; this Skill generates the correct SoftwareApplication JSON-LD and walks you through validation. ## Quick Start Ask the AI to generate JSON-LD schema markup for your product page so it qualifies for Google rich results.

Frequently Asked Questions about marketing-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 with type application/ld+json, placed in the page head or end of body. Google recommends JSON-LD over Microdata because it is easier to implement and maintain.

What schema types does Google support for rich results?

Common supported types include Organization, WebSite, Article, Product, SoftwareApplication, FAQPage, HowTo, BreadcrumbList, LocalBusiness, and Event. Each type has required properties, such as headline and datePublished for Article or name and offers for Product.

Can I use multiple schema types on one page?

Yes, combine multiple types using the @graph array in a single JSON-LD block. For example, a page can include Organization, WebSite, and BreadcrumbList together, linked with @id references.

How do I test if my structured data is valid?

Use the Google Rich Results Test and the Schema.org Validator before deploying, then monitor the Enhancements reports in Search Console. Common errors include missing required properties, non-ISO-8601 dates, and markup that does not match visible page content.

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

Yes, render the JSON-LD through a component that serializes data with JSON.stringify inside a script tag. Server-side rendering is recommended so search crawlers receive the markup in the initial HTML.