{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://www.example.com/",
      "name": "Example Website",
      "description": "A comprehensive website providing information and services.",
      "url": "https://www.example.com/",
      "publisher": {
        "@id": "https://www.example.com/#organization"
      },
      "mainEntity": {
        "@type": "WebApplication",
        "name": "Website Services",
        "description": "The core application and services offered by the website.",
        "applicationCategory": "BusinessApplication"
      },
      "breadcrumb": {
        "@type": "BreadcrumbList",
        "itemListElement": [
          {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.example.com/"
          }
        ]
      },
      "potentialAction": [
        {
          "@type": "SearchAction",
          "target": {
            "@type": "EntryPoint",
            "urlTemplate": "https://www.example.com/search?q={search_term_string}"
          },
          "query-input": "required name=search_term_string"
        }
      ]
    },
    {
      "@type": "Organization",
      "@id": "https://www.example.com/#organization",
      "name": "Example Organization",
      "url": "https://www.example.com/",
      "sameAs": [
        "https://www.facebook.com/example",
        "https://www.twitter.com/example",
        "https://www.linkedin.com/company/example"
      ]
    },
    {
      "@type": "OfferCatalog",
      "name": "Product Catalog",
      "itemListElement": []
    }
  ]
}