Grndwerk/debug
live demo
← debug/

schemas

3 schemas for product
WebPageItemPage for "product page"
{
  "@context": "https://schema.org",
  "@type": "ItemPage",
  "@id": "https://grndwerk.com/product/#webpage",
  "url": "https://grndwerk.com/product",
  "name": "product page",
  "description": "Preview schema for archetype: product",
  "inLanguage": "en-US",
  "isPartOf": {
    "@id": "https://grndwerk.com/#website"
  },
  "breadcrumb": {
    "@id": "https://grndwerk.com/product/#breadcrumb"
  }
}
ProductProduct schema — "Grndwerk Kit"
1 warning
Missing product.image — required for rich results
{
  "@context": "https://schema.org",
  "@type": "Product",
  "@id": "https://grndwerk.com/#product",
  "name": "Grndwerk Kit",
  "description": "A shadcn-style installable kit for Next.js. Adds Schema.org JSON-LD, llms.txt, AEO signals, and a debug dashboard — configured from a single constants file. Supports 16 page archetypes and two deployment modes: client-owned and owned-asset for rank-and-rent sites.",
  "url": "https://grndwerk.com",
  "sku": "GRNDWERK-KIT-V1",
  "brand": {
    "@type": "Brand",
    "name": "Grndwerk"
  },
  "category": "Developer Tools",
  "offers": {
    "@type": "Offer",
    "price": 99,
    "priceCurrency": "USD",
    "availability": "https://schema.org/InStock",
    "url": "https://grndwerk.com",
    "seller": {
      "@id": "https://grndwerk.com/#organization"
    }
  }
}
BreadcrumbListBreadcrumb with 2 items
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "@id": "https://grndwerk.com/product/#breadcrumb",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "name": "Home",
      "item": "https://grndwerk.com"
    },
    {
      "@type": "ListItem",
      "position": 2,
      "name": "product",
      "item": "https://grndwerk.com/product"
    }
  ]
}