// Reference_Implementation
One graph, in the head, in JSON-LD.
Google prefers JSON-LD embedded in your HTML head. This example connects a company entity to its founder, declares that founder's expertise, and maps a page to the entities it covers — all through a single @graph.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://example.com/#organization",
"name": "Example Corp",
"url": "https://example.com",
"sameAs": [
"https://www.wikidata.org/wiki/Q000000",
"https://www.linkedin.com/company/example-corp"
],
"founder": { "@id": "https://example.com/#founder" }
},
{
"@type": "Person",
"@id": "https://example.com/#founder",
"name": "Jane Doe",
"knowsAbout": [
"Artificial Intelligence",
"Search Engine Optimization"
],
"sameAs": ["https://www.linkedin.com/in/janedoe"]
},
{
"@type": "WebPage",
"@id": "https://example.com/guide#webpage",
"about": { "@id": "https://example.com/#organization" },
"mentions": [
{ "@type": "Thing", "name": "Knowledge Graph" },
{ "@type": "Thing", "name": "Generative Engine Optimization" }
],
"publisher": { "@id": "https://example.com/#organization" }
}
]
}
Paste your own markup into our free schema markup checker to see what's missing, or read the GEO guide for how this feeds citation share.