On-Page

Schema Markup

Schema markup is code (usually JSON-LD) that uses the schema.org vocabulary to annotate web content, enabling search engines to display enhanced results like rich snippets.

Schema markup and structured data are closely related — schema.org provides the vocabulary, and JSON-LD/Microdata/RDFa are the formats. In practice, most developers use JSON-LD with schema.org types.

Common schema types for developer tools include SoftwareApplication, HowTo, FAQPage, Article, and Organization. Each type has required and recommended properties that determine eligibility for specific rich result features.

Google's Rich Results Test validates your markup. Indxel generates type-safe schema markup with `generateLD()` and validates it against schema.org specifications during CI checks.

Example

// Using Indxel to generate schema markup
import { getOrganizationSchema } from "@/lib/structured-data";

// In your layout or page:
<script
  type="application/ld+json"
  dangerouslySetInnerHTML={{
    __html: JSON.stringify(getOrganizationSchema()),
  }}
/>

Stop shipping broken SEO

Indxel validates your metadata, guards your CI/CD pipeline, and monitors indexation — so you never miss an SEO issue again.