JSON-LD Organization Schema Template
Structured data template for your organization/company. Helps AI systems understand your brand, social profiles, and contact information.
Template
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://www.yoursite.com/#organization",
"name": "Your Company Name",
"legalName": "Your Company Legal Name, Inc.",
"url": "https://www.yoursite.com",
"logo": {
"@type": "ImageObject",
"url": "https://www.yoursite.com/logo.png",
"width": 600,
"height": 60
},
"description": "One or two sentences describing what your company does.",
"foundingDate": "2020",
"founders": [
{
"@type": "Person",
"name": "Founder Name"
}
],
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Main Street",
"addressLocality": "City",
"addressRegion": "State",
"postalCode": "12345",
"addressCountry": "US"
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer service",
"email": "hello@yoursite.com",
"url": "https://www.yoursite.com/contact"
},
"sameAs": [
"https://twitter.com/yourcompany",
"https://linkedin.com/company/yourcompany",
"https://github.com/yourcompany"
]
}
</script>How to Use This Template
Add to your homepage <head> section
Replace all placeholder values with your actual information
Include all relevant social media profiles in sameAs
Ensure logo URL points to an actual image
Validate with Google's Rich Results Test
When to Use This
Homepage structured data
Brand recognition by AI systems
Knowledge Graph inclusion
More Templates
Robots.txt for AI Crawlers
A ready-to-use robots.txt configuration that allows all major AI crawlers (GPTBot, ClaudeBot, PerplexityBot, etc.) to index your site.
llms.txt File Template
The llms.txt file provides direct instructions to AI systems about your site. This emerging standard helps AI understand how to represent your brand.
Article Schema (JSON-LD)
Structured data template for blog posts and articles. Helps AI systems understand your content's author, date, and topic.