Grndwerk/debug
live demo
← debug/

schemas

3 schemas for category
WebPageCollectionPage for "category page"
{
  "@context": "https://schema.org",
  "@type": "CollectionPage",
  "@id": "https://grndwerk.com/category/#webpage",
  "url": "https://grndwerk.com/category",
  "name": "category page",
  "description": "Preview schema for archetype: category",
  "inLanguage": "en-US",
  "isPartOf": {
    "@id": "https://grndwerk.com/#website"
  },
  "breadcrumb": {
    "@id": "https://grndwerk.com/category/#breadcrumb"
  }
}
ItemList (Products)ItemList with 1 products
{
  "@context": "https://schema.org",
  "@type": "ItemList",
  "@id": "https://grndwerk.com/category/#itemlist",
  "name": "Grndwerk Products",
  "numberOfItems": 1,
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "item": {
        "@type": "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",
        "offers": {
          "@type": "Offer",
          "price": 99,
          "priceCurrency": "USD"
        }
      }
    }
  ]
}
BreadcrumbListBreadcrumb with 2 items
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "@id": "https://grndwerk.com/category/#breadcrumb",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "name": "Home",
      "item": "https://grndwerk.com"
    },
    {
      "@type": "ListItem",
      "position": 2,
      "name": "category",
      "item": "https://grndwerk.com/category"
    }
  ]
}