Identify who offers an educational occupational credential

From Educational and Occupational Credentials in schema.org Community Group
Educational and occupational
credentials in schema.org
Wiki Navigation
Main Page
Outline use cases
Proposals to meet requirements
Example sites
Other useful links
Community group home page
email list for group
schema.org Git hub issue

It is often necessary to identify the organization that offers an educational occupational credential, or conversely to find the credentials offered by an organization. This will normally be the awarding body of the credential, and is not necessarily the same as the organization offering learning opportunities or assessments that lead to the credential.

Discussion: EOCred: name search for credentialing organization thread from Mar 2018.

Proposal

As we do when describing the Costs of an educational occupational credential, we use the Offer type; this has a property offeredBy that is the organization or person making the offer. The inverse property, makesOffer, allows the listing of credentials offered by an educational / occupational credentialing organization.

Examples

Note: These examples should not be taken as being authoritative or accurate descriptions of the resources on which they are based.

1. Based on CMALT

{
  "@context": "http://schema.org/",
  "@type": "EducationalOccupationalCredential",
  "url" : "https://www.alt.ac.uk/certified-membership",
  "name": "CMALT",
  "description": "Certified Membership of the Association for Learning Technology",
  "offers": {
    "@type": "Offer",
    "offeredBy" : {
      "@type": "Organization",
      "name": "Association for Learning Technology",
      "url": "https://www.alt.ac.uk/"
    }
  }
}