legalRepresentative
legalRepresentative · Not mentioned by Google
Appears in
What is it?
legalRepresentative identifies the person or persons authorized to legally represent an organization. This includes roles like CEO, managing director, sole administrator, or any individual with legal authority to act on behalf of the entity. In many jurisdictions, this information is part of the public corporate registry.
The field expects a Person object and applies to the Organization type. It is particularly relevant in European business contexts, where company law requires publicly identifying the legal representative (Geschaeftsfuehrer in Germany, Gerant in France, Administrador in Spain).
Why this matters for AEO
When a user asks "Who runs [company]?" or "Who is the CEO of [organization]?", AI answer engines look for explicit person-to-organization relationships. legalRepresentative provides a direct, structured answer. While founder identifies who started the company, legalRepresentative identifies who currently has legal authority, which is the more common query intent.
For due diligence and compliance queries, AI engines assembling business profiles use legalRepresentative to identify accountable individuals, which matters in regulated industries.
What the specs say
Schema.org: Expects Person. "One or multiple persons who represent this organization legally such as CEO or sole administrator." Source
Google: Not listed in Google's structured data documentation for Organization. Source
How to find your value
- Corporate registry filings — Named directors or managers
- Annual reports — Listed officers and executives
- About/Leadership page — CEO, Managing Director, or equivalent
- Legal documents — Authorized signatories
- Board resolutions — Appointed representatives
Format and code
Single representative:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Siemens AG",
"legalRepresentative": {
"@type": "Person",
"name": "Roland Busch",
"jobTitle": "President and CEO"
}
}
Multiple representatives:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "SAP SE",
"legalRepresentative": [
{
"@type": "Person",
"name": "Christian Klein",
"jobTitle": "CEO"
},
{
"@type": "Person",
"name": "Dominik Asam",
"jobTitle": "CFO"
}
]
}
With URL to bio page:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Bosch",
"legalRepresentative": {
"@type": "Person",
"name": "Stefan Hartung",
"jobTitle": "Chairman of the Board of Management",
"url": "https://www.bosch.com/company/board-of-management/"
}
}
Webflow implementation
Static pages
Add legalRepresentative in Page Settings > Custom Code (before </head>):
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your Company",
"legalRepresentative": {
"@type": "Person",
"name": "CEO Name",
"jobTitle": "Chief Executive Officer"
}
}
</script>
CMS template pages
legalRepresentative is an organization-level field. Include it in your site-wide Organization schema rather than in individual CMS page templates.
In Schema HQ
The legalRepresentative field is set in the Organization schema editor. Enter the representative's name, job title, and optional URL, and Schema HQ generates the nested Person object in the published JSON-LD.
Real examples
No live implementations of legalRepresentative on Organization markup were found during research.
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Allianz SE",
"legalRepresentative": {
"@type": "Person",
"name": "Oliver Baete",
"jobTitle": "Chief Executive Officer",
"url": "https://www.allianz.com/en/about-us/management/board-of-management.html"
}
}
Related fields
- founder — who started the organization (historical, not current authority)
- employee — staff members (broader than legal representatives)
- member — members of the organization (not necessarily with legal authority)
- legalName — the official registered name of the organization
FAQ
What is the difference between legalRepresentative and founder?
founder identifies who established the organization. legalRepresentative identifies who currently has legal authority to act on its behalf. A founder may no longer be involved with the company, and a legal representative may not be a founder. Use founder for the creation story and legalRepresentative for current governance.
Should I list all board members as legal representatives?
No. legalRepresentative is for individuals with authority to legally bind the organization, typically the CEO, managing director, or equivalent executive role. Board members who do not have individual legal authority should not be listed here. In jurisdictions where the entire board acts collectively as legal representative, list the members who have individual signing authority.
Does this field need to be updated when leadership changes?
Yes. Structured data should reflect the current state of the organization. When a CEO or managing director changes, update legalRepresentative promptly. Outdated information misleads AI engines and data consumers.