Copy this into the <head> of your homepage. Server-rendered, not client-rendered. Adjust the values. The @graph wrapper lets you ship all five (or six) schemas in one script tag; most validators prefer this over multiple sibling scripts.
<!-- In <head>, server-rendered. NOT client-rendered. -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": ["Organization", "ProfessionalService"],
"@id": "https://www.citably.co/#org",
"name": "Citably",
"url": "https://www.citably.co",
"logo": "https://www.citably.co/logo.png",
"email": "hello@citably.co",
"address": {
"@type": "PostalAddress",
"addressLocality": "Atlanta",
"addressRegion": "GA",
"addressCountry": "US"
},
"founder": { "@id": "https://www.citably.co/#jake" },
"sameAs": [
"https://www.linkedin.com/company/citably",
"https://www.crunchbase.com/organization/citably"
]
},
{
"@type": "Person",
"@id": "https://www.citably.co/#jake",
"name": "Jake Pereira",
"jobTitle": "Founder",
"worksFor": { "@id": "https://www.citably.co/#org" },
"sameAs": [
"https://www.linkedin.com/in/jacobcpereira"
]
},
{
"@type": "Service",
"name": "Audit",
"provider": { "@id": "https://www.citably.co/#org" },
"areaServed": "Southeast United States",
"description": "Full AI-citability diagnostic across seven engines.",
"offers": {
"@type": "Offer",
"availability": "https://schema.org/InStock",
"url": "https://www.citably.co/#offer"
}
},
{
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is GEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Generative Engine Optimization. Making your site citable by ChatGPT, Claude, Perplexity, Google AI Overviews, Bing Copilot, Gemini, and Grok."
}
}
]
},
{
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://www.citably.co"
}
]
}
]
}
</script>