Schema Markup for Authority Signals
Schema markup makes your authority signals explicit and machine-parseable.
Comprehensive Author Schema
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Sarah Chen",
"url": "https://example.com/about/sarah-chen",
"image": "https://example.com/images/sarah-chen.jpg",
"jobTitle": "Senior GEO Strategist",
"worksFor": {
"@type": "Organization",
"name": "Texta",
"url": "https://example.com",
"sameAs": ["https://linkedin.com/company/example"]
},
"alumniOf": [
{
"@type": "CollegeOrUniversity",
"name": "Stanford University"
}
],
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"name": "M.S. Computer Science"
},
{
"@type": "EducationalOccupationalCredential",
"name": "Google Analytics Certified"
},
{
"@type": "EducationalOccupationalCredential",
"name": "HubSpot Inbound Certified"
}
],
"knowsAbout": [
"Generative Engine Optimization",
"AI Content Strategy",
"LLM Optimization",
"B2B SaaS Marketing",
"Enterprise GEO"
],
"performerIn": [
{
"@type": "Event",
"name": "GEO Summit 2025",
"startDate": "2025-10-15"
}
],
"authorOf": [
{
"@type": "Book",
"name": "The Complete Guide to GEO"
}
],
"award": [
{
"@type": "Award",
"name": "GEO Innovation Award 2025"
}
]
}
Organization Schema for Brand Authority
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Texta",
"url": "https://example.com",
"logo": "https://example.com/logo.png",
"description": "AI Visibility and Monitoring Platform",
"foundingDate": "2023",
"sameAs": [
"https://linkedin.com/company/example",
"https://twitter.com/example",
"https://facebook.com/example"
],
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Main Street",
"addressLocality": "San Francisco",
"addressRegion": "CA",
"postalCode": "94105",
"addressCountry": "US"
},
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-555-123-4567",
"contactType": "customer service",
"email": "info@example.com"
},
"award": [
"GEO Innovation Award 2025",
"Digital Marketing Excellence Awards 2024"
],
"founder": [
{
"@type": "Person",
"name": "Founder Name"
}
],
"employee": [
{
"@type": "Person",
"name": "Sarah Chen"
}
]
}
Research/CreativeWork Schema for Original Content
{
"@context": "https://schema.org",
"@type": "ScholarlyArticle",
"headline": "2026 AI Citation Benchmark Report",
"author": {
"@type": "Person",
"name": "Sarah Chen"
},
"datePublished": "2026-01-15",
"dateModified": "2026-03-15",
"description": "Analysis of 1 million AI search queries across ChatGPT, Perplexity, Claude, and Google Gemini",
"about": ["AI Search", "GEO", "Citation Analysis"],
"citation": [
{
"@type": "CreativeWork",
"name": "2025 AI Citation Study",
"author": "Author Name"
}
],
"genre": "Research Report",
"keywords": ["AI citations", "GEO benchmarks", "chatbot optimization"],
"publisher": {
"@type": "Organization",
"name": "Texta"
},
"schemaVersion": "https://schema.org/version/3.0/"
}