Your pages don't have Organization (or Corporation / LocalBusiness) schema. Without it, AI systems must guess who you are from unstructured text — leading to incorrect attributions, missed citations, and hallucinated company information.
Organization schema is worth +40 points on the Schema Score. It's the single highest-impact schema type. It tells AI crawlers your name, logo, contact information, social profiles, and corporate identity in machine-readable form.
Add this JSON-LD to your homepage's <head> section:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your Company Name",
"url": "https://yoursite.com",
"logo": "https://yoursite.com/logo.png",
"description": "Brief description of your company",
"sameAs": [
"https://twitter.com/yourcompany",
"https://linkedin.com/company/yourcompany",
"https://github.com/yourcompany"
],
"contactPoint": {
"@type": "ContactPoint",
"email": "[email protected]",
"contactType": "customer service"
}
}
</script>
// app/layout.tsx
export default function RootLayout({ children }) {
return (
<html>
<head>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify({
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your Company",
"url": "https://yoursite.com",
"logo": "https://yoursite.com/logo.png"
})
}}
/>
</head>
<body>{children}</body>
</html>
);
}
Install the Yoast SEO or Rank Math plugin. Both generate Organization schema automatically from your site settings. Go to the plugin's "Knowledge Graph" or "Organization" settings and fill in your company details.
Add the JSON-LD snippet to your theme.liquid file inside the <head> tag. Or use a Shopify app like "JSON-LD for SEO" for automatic schema generation.