XooCode(){

OrganizationRole

OrganizationRole is a Role subtype for a role within an organization. Property: numberedPosition (Number — seat / rank). Used on Organization.employee / member / founder to add role metadata.

Full example of schema.org/OrganizationRole json-ld markup

The markup is verified as valid with Rich Results Test from Google.

schema.org/OrganizationRole
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Dunmore Foundation",
  "member": {
    "@type": "OrganizationRole",
    "startDate": "1946-01-15",
    "roleName": "Board member",
    "numberedPosition": 3,
    "member": { "@type": "Person", "name": "Jane Xoo" }
  }
}
</script>

Minimal valid version

The smallest markup that still produces a valid OrganizationRole entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.

schema.org/OrganizationRole (minimal)
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "OrganizationRole",
  "roleName": "Example role",
  "numberedPosition": 1
}
</script>

Google rich results this unlocks

OrganizationRole is a structural type. It does not produce a rich result on its own.

Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). OrganizationRole becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.

Common OrganizationRole mistakes

Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.

  1. 01

    numberedPosition as a string

    Wrong
    "numberedPosition": "3rd"
    Right
    "numberedPosition": 3

    Number type — integer only.

Also mentioned in 1 other example

OrganizationRole also appears in EmployeeRole. See the full OrganizationRole schema page for every reference.

About the example data

Board seat #3 at the Dunmore Foundation — Jane Xoo's role on the governance committee.

Comments

Loading comments...

Leave a comment