We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
About/team pages linking organization and key people with FAQs and breadcrumb context.
Declares the about/team page.
Company identity tied to the page.
Represents a featured team member.
Answers mission, location, and contact FAQs.
Provides navigation context.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "AboutPage",
"@id": "https://www.example.com/about#page",
"name": "About Northwind",
"url": "https://www.example.com/about",
"description": "Learn about Northwind Analytics and our leadership team."
},
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://www.example.com/#org",
"name": "Northwind Analytics",
"url": "https://www.example.com",
"logo": "https://www.example.com/images/logo-120x60.png"
},
{
"@context": "https://schema.org",
"@type": "Person",
"@id": "https://www.example.com/about#person",
"name": "Alex Doe",
"jobTitle": "CEO",
"url": "https://www.example.com/about#alex",
"worksFor": { "@id": "https://www.example.com/#org" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{ "@type": "Question", "name": "Where is the team based?", "acceptedAnswer": { "@type": "Answer", "text": "HQ in SF with remote team members across the US." } },
{ "@type": "Question", "name": "How do I contact the team?", "acceptedAnswer": { "@type": "Answer", "text": "Use the contact form or email press@example.com for media inquiries." } }
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "About", "item": "https://www.example.com/about" }
]
}
]Include Person objects for leaders you feature on the page. Keep worksFor pointing to the Organization.
Yes. Keep @id consistent across your site for the same entity.