{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Organization",
      "@id": "https://www.example.com/#org",
      "name": "Example Outdoors",
      "url": "https://www.example.com/",
      "logo": {
        "@type": "ImageObject",
        "@id": "https://www.example.com/#logo",
        "url": "https://cdn.example.net/img/logo.png"
      }
    },
    {
      "@type": "WebSite",
      "@id": "https://www.example.com/#website",
      "url": "https://www.example.com/",
      "name": "Example Outdoors",
      "publisher": {
        "@id": "https://www.example.com/#org"
      },
      "potentialAction": {
        "@type": "SearchAction",
        "target": "https://www.example.com/search?q={search_term_string}",
        "query-input": "required name=search_term_string"
      }
    },
    {
      "@type": "WebPage",
      "@id": "https://www.example.com/catalog/boots#page",
      "url": "https://www.example.com/catalog/boots",
      "name": "Trail boots",
      "isPartOf": {
        "@id": "https://www.example.com/#website"
      },
      "about": {
        "@id": "https://www.example.com/catalog/boots#product"
      },
      "primaryImageOfPage": {
        "@id": "https://www.example.com/#logo"
      }
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://www.example.com/catalog/boots#crumbs",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Home",
          "item": "https://www.example.com/"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "Catalog",
          "item": "https://www.example.com/catalog/"
        },
        {
          "@type": "ListItem",
          "position": 3,
          "name": "Trail boots"
        }
      ]
    }
  ]
}
