Thing > Organization > EducationalOrganization
An educational organization.| Property | Expected Type | Description |
|---|---|---|
| Properties from Thing | ||
description |
Text | A short description of the item. |
image |
URL | URL of an image of the item. |
name |
Text | The name of the item. |
url |
URL | URL of the item. |
| Properties from Organization | ||
address |
PostalAddress | Physical address of the item. |
aggregateRating |
AggregateRating | The overall rating, based on a collection of reviews or ratings, of the item. |
contactPoint |
ContactPoint | A contact point for a person or organization. |
contactPoints |
ContactPoint | A contact point for a person or organization (legacy spelling; see singular form, contactPoint). |
email |
Text | Email address. |
employee |
Person | Someone working for this organization. |
employees |
Person | People working for this organization. (legacy spelling; see singular form, employee) |
event |
Event | Upcoming or past event associated with this place or organization. |
events |
Event | Upcoming or past events associated with this place or organization (legacy spelling; see singular form, event). |
faxNumber |
Text | The fax number. |
founder |
Person | A person who founded this organization. |
founders |
Person | A person who founded this organization (legacy spelling; see singular form, founder). |
foundingDate |
Date | The date that this organization was founded. |
interactionCount |
Text | A count of a specific user interactions with this item—for example, 20 UserLikes, 5 UserComments, or 300 UserDownloads. The user interaction type should be one of the sub types of UserInteraction. |
location |
Place or PostalAddress | The location of the event or organization. |
member |
Person or Organization | A member of this organization. |
members |
Person or Organization | A member of this organization (legacy spelling; see singular form, member). |
review |
Review | A review of the item. |
reviews |
Review | Review of the item (legacy spelling; see singular form, review). |
telephone |
Text | The telephone number. |
| Properties from EducationalOrganization | ||
alumni |
Person | Alumni of educational organization. |
More specific types
Schema Draft Version 0.9
Example 1
Original HTML:
Palo Alto High School 50 Embarcadero Rd Pallo Alto, CA 94301 List of Alumni: John Doe Sarah Glames
With Microdata:
<div itemscope itemtype="http://schema.org/EducationalOrganization">
<span itemprop="name">Palo Alto High School</span>
<div itemprop="address" itemscope itemtype="schema.org/PostalAddress">
<span itemprop="streetAddress">50 Embarcadero Rd</span>
<span itemprop="addressLocality">Palo Alto</span>,
<span itemprop="addressRegion">CA</span> <span itemprop="postalCode">94301</span>
</div>
List of Alumni
<span itemprop="alumni" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">John Doe</span>
</span>
<span itemprop="alumni" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Sarah Glames</span>
</span>
</div>