1[{
2  "@context": "https://schema.org",
3  "@graph": [
4    {
5      "@type": "Organization",
6      "@id": "/#organization",
7      "name": "A car company",
8      "url": "/",
9      "logo": {
10        "@type": "ImageObject",
11        "@id": "/#logo",
12        "url": "/favicon.png",
13        "caption": "Creating cars"
14      },
15      "image": {
16        "@id": "/#logo"
17      }
18    },
19    {
20      "@type": "WebSite",
21      "@id": "/#website",
22      "url": "/",
23      "name": "Car Company",
24      "publisher": {
25        "@id": "/#organization"
26      },
27      "potentialAction": {
28        "@type": "SearchAction",
29        "target": "/?s={search_term_string}",
30        "query-input": "required name=search_term_string"
31      }
32    },
33    {
34      "@type": "ImageObject",
35      "@id": "/#primaryimage",
36      "url": "/logo@2x.png"
37    },
38    {
39      "@type": "WebPage",
40      "@id": "/#webpage",
41      "url": "/",
42      "name": "Some car company",
43      "isPartOf": {
44        "@id": "/#website"
45      },
46      "about": {
47        "@id": "/#organization"
48      },
49      "primaryImageOfPage": {
50        "@id": "/#primaryimage"
51      },
52      "datePublished": "2019-12-20T12:18:20+00:00",
53      "dateModified": "2020-02-06T08:33:55+00:00"
54    }
55  ]
56}]
57