{
  "@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"
      },
      "breadcrumb": {
        "@type": "BreadcrumbList",
        "itemListElement": [
          {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.example.com/"
          }
        ]
      },
      "mainEntity": {
        "@type": "WebApplication",
        "name": "Example Web Application",
        "description": "The main application or service provided by this page.",
        "applicationCategory": "BusinessApplication",
        "operatingSystem": "Any",
        "url": "https://www.example.com/app",
        "potentialAction": {
          "@type": "Action",
          "name": "Launch Application",
          "target": {
            "@type": "EntryPoint",
            "urlTemplate": "https://www.example.com/app/launch",
            "actionPlatform": [
              "http://schema.org/DesktopWebPlatform",
              "http://schema.org/MobileWebPlatform"
            ]
          }
        }
      },
      "potentialAction": [
        {
          "@type": "SearchAction",
          "name": "Search",
          "target": {
            "@type": "EntryPoint",
            "urlTemplate": "https://www.example.com/search?q={search_term_string}",
            "actionPlatform": [
              "http://schema.org/DesktopWebPlatform",
              "http://schema.org/MobileWebPlatform"
            ]
          },
          "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://www.facebook.com/example",
        "https://www.twitter.com/example",
        "https://www.linkedin.com/company/example"
      ]
    }
  ]
}