{
  "@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 example website.",
      "publisher": {
        "@id": "https://www.example.com/#organization"
      },
      "mainEntity": {
        "@type": "WebApplication",
        "name": "Example Application",
        "description": "The main application or service offered on this page.",
        "applicationCategory": "BusinessApplication",
        "operatingSystem": "Any",
        "offers": {
          "@type": "OfferCatalog",
          "name": "Service Plans",
          "itemListElement": []
        },
        "potentialAction": {
          "@type": "Action",
          "name": "Get Started",
          "target": "https://www.example.com/signup"
        }
      },
      "breadcrumb": {
        "@type": "BreadcrumbList",
        "itemListElement": [
          {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.example.com/"
          }
        ]
      },
      "potentialAction": [
        {
          "@type": "SearchAction",
          "name": "Search",
          "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/",
      "logo": "https://www.example.com/logo.png",
      "sameAs": [
        "https://twitter.com/example",
        "https://facebook.com/example",
        "https://linkedin.com/company/example"
      ]
    }
  ]
}