Vocabulary Deprecated
More information...

CollegeOrUniversity

schema:Thing > bgn:Agent > schema:Organization > schema:EducationalOrganization > schema:CollegeOrUniversity
schema:Thing > schema:Organization > schema:EducationalOrganization > schema:CollegeOrUniversity

A college, university, or other third-level educational institution.
PropertyExpected TypeDescription
Properties from schema:EducationalOrganization
schema:alumni schema:Person Alumni of educational organization.
Inverse property: schema:alumniOf.
Properties from schema:Organization
schema:address schema:PostalAddress Physical address of the item.
schema:aggregateRating schema:AggregateRating The overall rating, based on a collection of reviews or ratings, of the item.
schema:brand schema:Organization  or
schema:Brand 
The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.
schema:contactPoint schema:ContactPoint A contact point for a person or organization. Supersedes schema:contactPoints.
schema:department schema:Organization A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.
schema:dissolutionDate schema:Date The date that this organization was dissolved.
schema:duns schema:Text The Dun & Bradstreet DUNS number for identifying an organization or business person.
schema:email schema:Text Email address.
schema:employee schema:Person Someone working for this organization. Supersedes schema:employees.
schema:event schema:Event Upcoming or past event associated with this place, organization, or action. Supersedes schema:events.
schema:faxNumber schema:Text The fax number.
schema:founder schema:Person A person who founded this organization. Supersedes schema:founders.
schema:foundingDate schema:Date The date that this organization was founded.
schema:foundingLocation schema:Place The place where the Organization was founded.
schema:globalLocationNumber schema:Text The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.
schema:hasPOS schema:Place Points-of-Sales operated by the organization or person.
schema:interactionCount schema: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.
schema:isicV4 schema:Text The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.
schema:legalName schema:Text The official name of the organization, e.g. the registered company name.
schema:location schema:Place  or
schema:PostalAddress 
The location of the event, organization or action.
schema:logo schema:ImageObject  or
schema:URL 
An associated logo.
schema:makesOffer schema:Offer A pointer to products or services offered by the organization or person.
schema:member schema:Organization  or
schema:Person 
A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. Supersedes schema:members, schema:musicGroupMember.
Inverse property: schema:memberOf.
schema:memberOf schema:Organization  or
schema:ProgramMembership 
An Organization (or ProgramMembership) to which this Person or Organization belongs.
Inverse property: schema:member.
schema:naics schema:Text The North American Industry Classification System (NAICS) code for a particular organization or business person.
schema:owns schema:Product  or
schema:OwnershipInfo 
Products owned by the organization or person.
schema:review schema:Review A review of the item. Supersedes schema:reviews.
schema:seeks schema:Demand A pointer to products or services sought by the organization or person (demand).
schema:subOrganization schema:Organization A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.
schema:taxID schema:Text The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.
schema:telephone schema:Text The telephone number.
schema:vatID schema:Text The Value-added Tax ID of the organization or person.
Properties from schema:Thing
schema:additionalType schema:URL An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.
schema:alternateName schema:Text An alias for the item.
schema:description schema:Text A short description of the item.
schema:image schema:ImageObject  or
schema:URL 
An image of the item. This can be a URL or a fully described ImageObject.
schema:name schema:Text The name of the item.
schema:potentialAction schema:Action Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.
schema:sameAs schema:URL URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website.
schema:url schema:URL URL of the item.

Prefixes used:

  • schema: http://schema.org/
  • bgn: http://bibliograph.net/
  • Examples

    A JSON example of an OrganizationRole being used to qualify
    the 'alumni' property. Note that we use startDate to indicate
    when the alumni situation began, which was the date of leaving
    the organization.
    
    <div itemscope itemtype="http://schema.org/CollegeOrUniversity">
      <span itemprop="name">University of Cambridge</span>
      <link itemprop="sameAs" href="http://en.wikipedia.org/wiki/University_of_Cambridge"/>
      <div itemprop="alumni" itemscope
            itemtype="http://schema.org/OrganizationRole">
        <div itemprop="alumni" itemscope
                itemtype="http://schema.org/Person">
          <span itemprop="name">Delia Derbyshire</span>
          <link itemprop="sameAs" href="http://en.wikipedia.org/wiki/Delia_Derbyshire"/>
        </div>
        <span itemprop="startDate">1959</span>
    </div>
    
    <div vocab="http://schema.org/" typeof="CollegeOrUniversity">
        <span property="name">University of Cambridge</span>
      <link property="sameAs" href="http://en.wikipedia.org/wiki/University_of_Cambridge"/>
      <div property="alumni" typeof="OrganizationRole">
        <div property="alumni" typeof="Person">
          <span property="name">Delia Derbyshire</span>
          <link property="sameAs" href="http://en.wikipedia.org/wiki/Delia_Derbyshire"/>
        </div>
        <span property="startDate">1959</span>
    </div>
    
    <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "CollegeOrUniversity",
      "name": "University of Cambridge",
      "sameAs": "http://en.wikipedia.org/wiki/University_of_Cambridge",
      "alumni": {
        "@type": "OrganizationRole",
        "alumni": {
          "@type": "Person",
           "name": "Delia Derbyshire",
          "sameAs": "http://en.wikipedia.org/wiki/Delia_Derbyshire"
        },
        "startDate": "1959"
      }
    }
    </script>
    
    A JSON example of an OrganizationRole being used to qualify
    the 'alumniOf' property (which is inverseOf 'alumni').
    Note that we use startDate to indicate when the alumniOf
    situation began, which was the date of leaving the organization.
    
    <div itemscope itemtype="http://schema.org/Person">
      <span itemprop="name">Delia Derbyshire</span>
      <link itemprop="sameAs" href="http://en.wikipedia.org/wiki/Delia_Derbyshire"/>
      <div itemprop="alumniOf" itemscope
            itemtype="http://schema.org/OrganizationRole">
        <div itemprop="alumniOf" itemscope
                itemtype="http://schema.org/CollegeOrUniversity">
          <span itemprop="name">University of Cambridge</span>
          <link itemprop="sameAs" href="http://en.wikipedia.org/wiki/University_of_Cambridge"/>
        </div>
        <span itemprop="startDate">1959</span>
    </div>
    
    <div vocab="http://schema.org/" typeof="Person">
      <span property="name">Delia Derbyshire</span>
      <link property="sameAs" href="http://en.wikipedia.org/wiki/Delia_Derbyshire"/>
      <div property="alumniOf" typeof="OrganizationRole">
        <div property="alumniOf" typeof="CollegeOrUniversity">
          <span property="name">University of Cambridge</span>
          <link property="sameAs" href="http://en.wikipedia.org/wiki/University_of_Cambridge"/>
        </div>
        <span property="startDate">1959</span>
    </div>
    
    <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "Person",
       "name": "Delia Derbyshire",
       "sameAs": "http://en.wikipedia.org/wiki/Delia_Derbyshire",
       "alumniOf": {
         "@type": "OrganizationRole",
         "alumniOf": {
           "@type": "CollegeOrUniversity",
           "name": "University of Cambridge",
           "sameAs": "http://en.wikipedia.org/wiki/University_of_Cambridge"
        },
        "startDate": "1959"
      }
    }
    </script>
    
    <body>
      <h1>Lecture 12: Graphs, networks, incidence matrices</h1>
      <p>These video lectures of Professor Gilbert
        Strang teaching 18.06 were  recorded in Fall 1999 and do not
        correspond precisely to the current  edition of the textbook.</p>
      <div>
        <h4>About <span>MIT OpenCourseWare</span></h4>
      </div>
      <a
        rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US"><img
        src="/images/cc_by-nc-sa.png" alt="Creative Commons logo with terms BY-NC-SA." /></a>
    </body>
    
    <body itemscope="" itemtype="http://schema.org/WebPage">
      <h1 itemprop="name">Lecture 12: Graphs, networks, incidence matrices</h1>
      <p itemprop="description">These video lectures of Professor Gilbert
        Strang teaching 18.06 were  recorded in Fall 1999 and do not
        correspond precisely to the current  edition of the textbook.</p>
      <div itemprop="publisher" itemscope="" itemtype="http://schema.org/CollegeOrUniversity">
        <h4 class="footer">About <span itemprop="name">MIT OpenCourseWare</span></h4>
      </div>
      <a itemprop="license"
        rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US"><img
        src="/images/cc_by-nc-sa.png" alt="Creative Commons logo with terms BY-NC-SA." /></a>
    </body>
    
    <body vocab="http://schema.org/" typeof="WebPage">
      <h1 property="name">Lecture 12: Graphs, networks, incidence matrices</h1>
      <p property="description">These video lectures of Professor Gilbert
        Strang teaching 18.06 were  recorded in Fall 1999 and do not
        correspond precisely to the current  edition of the textbook.</p>
      <div property="publisher" typeof="CollegeOrUniversity">
        <h4 class="footer">About <span property="name">MIT OpenCourseWare</span></h4>
      </div>
      <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US"><img
        src="/images/cc_by-nc-sa.png" alt="Creative Commons logo with terms BY-NC-SA." /></a>
    </body>
    
    <script type="application/ld+json">
    {
        "@context": "http://schema.org",
        "@type": "WebPage",
        "name": "Lecture 12: Graphs, networks, incidence matrices",
        "description": "These video lectures of Professor Gilbert Strang teaching 18.06 were recorded in Fall 1999 and do not correspond precisely to the current  edition of the textbook.",
        "publisher": {
            "@type": "CollegeOrUniversity",
            "name": "MIT OpenCourseWare"
        },
        "license": "http://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US"
    }
    </script>
    

    BiblioGraph.net Version 1.1
    Schema.org Version 1.93
    Code Version 1.1