Create structured data markup so AI search engines understand your content.
JSON-LD (JavaScript Object Notation for Linked Data) is a structured data format used to annotate web pages with machine-readable information. It is embedded in your HTML via <script type="application/ld+json"> tags and uses the Schema.org vocabulary.
AI search engines like ChatGPT Search, Google AI Overviews, and Perplexity rely on structured data to understand page content. JSON-LD helps these systems extract your business name, products, FAQs, reviews, and other key information — leading to better representation in AI-generated answers.
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Example Corp",
"url": "https://example.com",
"logo": "https://example.com/logo.png",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-555-0123",
"contactType": "customer service"
}
}