alumni
alumni · Optional
Appears in
What is it?
alumni lists people who were formerly members, students, or affiliates of an organization. Universities use it for graduates, companies use it for former employees who remain notable in their field, and professional associations use it to recognize past members.
The value is a Person object. Multiple people are expressed as an array. Schema.org does not prescribe a minimum level of notability; the field works for any verifiable former affiliation.
Why this matters for AEO
AI answer engines use organizational relationship data to answer career and affiliation queries. When a user asks "Who are famous alumni of MIT?" or "Did Elon Musk attend Stanford?", AI systems pull structured affiliation data from organization pages to construct answers about notable people.
The alumni field creates a machine-readable link between a person and an institution. This supports AI-generated summaries about an organization's notable contributors and helps knowledge graph systems connect entities across pages.
What the specs say
Schema.org:alumni expects a Person value. Alumni of an organization. [Source: https://schema.org/alumni]
Google: Not mentioned in Google's structured data documentation for Organization. This field is not used by Google's featured snippet or Knowledge Panel systems in any documented way. [Source: https://developers.google.com/search/docs/appearance/structured-data/organization]
How to find your value
For universities and schools: list degree-holding graduates. Include name, url (to their official page or Wikipedia), and optionally sameAs pointing to their Wikidata or Wikipedia entry for entity disambiguation.
For companies and organizations: list former employees or affiliates who are publicly notable. Avoid listing current employees here; use member for active membership.
Keep entries to verifiable public figures. Anonymous former employees do not benefit structured data consumers.
Format and code
University with alumni
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Stanford University",
"url": "https://www.stanford.edu",
"alumni": [
{
"@type": "Person",
"name": "Larry Page",
"sameAs": "https://en.wikipedia.org/wiki/Larry_Page"
},
{
"@type": "Person",
"name": "Sergey Brin",
"sameAs": "https://en.wikipedia.org/wiki/Sergey_Brin"
}
]
}
Company with former employee
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "PayPal",
"alumni": [
{
"@type": "Person",
"name": "Elon Musk",
"sameAs": "https://en.wikipedia.org/wiki/Elon_Musk"
},
{
"@type": "Person",
"name": "Peter Thiel",
"sameAs": "https://en.wikipedia.org/wiki/Peter_Thiel"
}
]
}
Webflow implementation
Static pages
For organization pages on Webflow, add alumni structured data in Page Settings > Custom Code:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your Organization",
"alumni": [
{
"@type": "Person",
"name": "Person Name",
"url": "https://example.com/person"
}
]
}
</script>
CMS template pages
If alumni data is managed in a Webflow CMS collection, reference collection fields inside a custom code embed on the template page. Each CMS item can represent one alumnus.
In Schema HQ
The organization schema editor includes support for structured relationship fields. Add alumni entries through the org schema panel and they will be serialized into valid JSON-LD automatically.
Real examples
Harvard University:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Harvard University",
"url": "https://www.harvard.edu",
"alumni": [
{
"@type": "Person",
"name": "Barack Obama",
"sameAs": "https://en.wikipedia.org/wiki/Barack_Obama"
},
{
"@type": "Person",
"name": "Mark Zuckerberg",
"sameAs": "https://en.wikipedia.org/wiki/Mark_Zuckerberg"
}
]
}
Related fields
FAQ
What is the difference between alumni and member?
alumni refers to past members or affiliates. member refers to current members of an organization or program. Use alumni for graduated students or former employees, and member for active participants.
Does Google use the alumni field for Knowledge Panels?
Google does not document alumni as a supported field for any specific rich result type. It may contribute to knowledge graph entity resolution, but no direct ranking or display benefit is confirmed.
Should alumni include a URL or sameAs?
Including sameAs with a Wikipedia or Wikidata URL significantly improves entity disambiguation for AI systems and knowledge graph consumers. It is not required by schema.org, but it improves data quality for any consumer that resolves entities.