Show the geographic area in which an educational occupational credential is recognised

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

Educational and occupational credentials are often recognised only within specified geographic or administrative areas. For example a nursing qualification from China may not be recognized in the US; conversely a job offered in the UK may require a qualification that is valid in the EU.

Discussion: EOCred: Coverage & renewal of credential thread from Mar 2018.

Proposal

The existing schema.org property ValidIn covers this use case for Permits, so the proposal is to extended the domain and definition for this property.

Name: validIn

Definition: The geographic area where the permit or credential is valid.

Expected Range: AdministrativeArea

Draft code for schema.org

This copy on the wiki is for ease of reference only, the definitive version is the file on github

 
    <div typeof="rdf:Property" resource="http://schema.org/validIn">
      <span class="h" property="rdfs:label">validIn</span>
      <span property="rdfs:comment">The geographic area where the permit or credential is valid.</span>
      <span>Domain: <a property="http://schema.org/domainIncludes" href="http://schema.org/Permit">Permit</a></span>
      <span>Domain: <a property="http://schema.org/domainIncludes" href="http://schema.org/EducationalOccupationalCredential">EducationalOccupationalCredential</a></span>
      <span>Range: <a property="http://schema.org/rangeIncludes" href="http://schema.org/AdministrativeArea">AdministrativeArea</a></span>
    </div>

Test output on appspot (may be slow to load).

Examples

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

1. Nursing credential

This copy is for ease of reference only. The definitive version is in file issue-1779-examples.txt on github, which may be more extensive.

{  
  "@context": "http://schema.org/",
  "@type": "EducationalOccupationalCredential",
  "@id": "http://example.state.wa.us/Nursing",
  "name": "License to practice Nursing",
  "inLanguage": "en-US",
  "validIn": {
    "@type": "AdministrativeArea",
    "name": "Illinois",
    "sameAs": "https://www.wikidata.org/wiki/Q1204"
  }
}