{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://www.example.com/#webpage",
      "url": "https://www.example.com/",
      "name": "Example Website",
      "description": "A description of the website.",
      "publisher": {
        "@id": "https://www.example.com/#organization"
      },
      "mainEntity": {
        "@type": "WebApplication",
        "name": "Website Application",
        "description": "The main interactive application of the website.",
        "applicationCategory": "BrowserApplication"
      },
      "breadcrumb": {
        "@type": "BreadcrumbList",
        "itemListElement": [
          {
            "@type": "ListItem",
            "position": 1,
            "item": {
              "@id": "https://www.example.com/",
              "name": "Home"
            }
          }
        ]
      },
      "potentialAction": [
        {
          "@type": "SearchAction",
          "target": "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://twitter.com/example",
        "https://www.linkedin.com/company/example"
      ]
    }
  ]
}