{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://example.com/",
      "url": "https://example.com/",
      "name": "Example Website",
      "description": "A website providing information and services.",
      "publisher": {
        "@id": "https://example.com/#organization"
      },
      "mainEntity": {
        "@type": "CreativeWork",
        "name": "Website Content",
        "description": "The primary content of this webpage."
      },
      "breadcrumb": {
        "@type": "BreadcrumbList",
        "itemListElement": [
          {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://example.com/"
          }
        ]
      },
      "potentialAction": [
        {
          "@type": "SearchAction",
          "target": {
            "@type": "EntryPoint",
            "urlTemplate": "https://example.com/search?q={search_term_string}"
          },
          "query-input": "required name=search_term_string"
        }
      ]
    },
    {
      "@type": "Organization",
      "@id": "https://example.com/#organization",
      "name": "Example Organization",
      "url": "https://example.com/",
      "sameAs": []
    }
  ]
}