{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://www.example.com/#webpage",
      "name": "Example Homepage",
      "description": "Welcome to our website.",
      "url": "https://www.example.com/",
      "isPartOf": {
        "@id": "https://www.example.com/#website"
      },
      "breadcrumb": {
        "@type": "BreadcrumbList",
        "itemListElement": [
          {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.example.com/"
          }
        ]
      },
      "mainEntity": {
        "@type": "WebApplication",
        "name": "Website Application",
        "description": "The main interactive application of the website.",
        "applicationCategory": "BrowserApplication",
        "browserRequirements": "Requires JavaScript. Requires HTML5.",
        "featureList": "Information, Navigation, Contact",
        "screenshot": "https://www.example.com/screenshot.png"
      },
      "potentialAction": [
        {
          "@type": "SearchAction",
          "target": {
            "@type": "EntryPoint",
            "urlTemplate": "https://www.example.com/search?q={search_term_string}"
          },
          "query-input": "required name=search_term_string"
        },
        {
          "@type": "ContactPoint",
          "contactType": "customer service",
          "telephone": "+1-800-555-1234",
          "url": "https://www.example.com/contact"
        }
      ],
      "publisher": {
        "@id": "https://www.example.com/#organization"
      }
    },
    {
      "@type": "WebSite",
      "@id": "https://www.example.com/#website",
      "name": "Example Website",
      "url": "https://www.example.com/",
      "publisher": {
        "@id": "https://www.example.com/#organization"
      },
      "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/",
      "logo": "https://www.example.com/logo.png",
      "description": "A leading example organization.",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "123 Example Street",
        "addressLocality": "Example City",
        "addressRegion": "EX",
        "postalCode": "12345",
        "addressCountry": "US"
      },
      "contactPoint": {
        "@type": "ContactPoint",
        "contactType": "customer service",
        "telephone": "+1-800-555-1234",
        "email": "info@example.com",
        "url": "https://www.example.com/contact"
      },
      "sameAs": [
        "https://www.facebook.com/example",
        "https://www.twitter.com/example",
        "https://www.linkedin.com/company/example"
      ]
    },
    {
      "@type": "OfferCatalog",
      "name": "Example Products & Services",
      "description": "A catalog of our offerings.",
      "itemListElement": [],
      "publisher": {
        "@id": "https://www.example.com/#organization"
      }
    }
  ]
}