Skip to content

Instantly share code, notes, and snippets.

@danbri
Created November 19, 2018 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danbri/df62b12988503c4aee74b6e1e17ec1d8 to your computer and use it in GitHub Desktop.
Save danbri/df62b12988503c4aee74b6e1e17ec1d8 to your computer and use it in GitHub Desktop.
@prefix dc: <http://purl.org/dc/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
schema:EducationalOccupationalCredential a rdfs:Class ;
rdfs:label "EducationalOccupationalCredential" ;
dc:source <https://github.com/schemaorg/schemaorg/issues/1779> ;
schema:category "issue-1779" ;
schema:isPartOf <http://pending.schema.org> ;
rdfs:comment "An educational or occupational credential. A diploma, academic degree, certification, qualification, badge, etc., that may be awarded to a person or other entity that meets the requirements defined by the credentialer." ;
rdfs:subClassOf schema:CreativeWork .
schema:competencyRequired a rdf:Property ;
rdfs:label "competencyRequired" ;
dc:source <https://github.com/schemaorg/schemaorg/issues/1779> ;
schema:category "issue-1779" ;
schema:domainIncludes schema:EducationalOccupationalCredential ;
schema:isPartOf <http://pending.schema.org> ;
schema:rangeIncludes schema:DefinedTerm,
schema:Text,
schema:URL ;
rdfs:comment "Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity." .
schema:credentialCategory a rdf:Property ;
rdfs:label "credentialCategory" ;
dc:source <https://github.com/schemaorg/schemaorg/issues/1779> ;
schema:category "issue-1779" ;
schema:domainIncludes schema:EducationalOccupationalCredential ;
schema:isPartOf <http://pending.schema.org> ;
schema:rangeIncludes schema:DefinedTerm,
schema:Text,
schema:URL ;
rdfs:comment "The category or type of credential being described, for example \"degree”, “certificate”, “badge”, or more specific term." .
schema:educationRequirements a rdf:Property ;
dc:source <https://github.com/schemaorg/schemaorg/issues/1779> ;
schema:category "issue-1779" ;
schema:isPartOf <http://pending.schema.org> ;
schema:rangeIncludes schema:EducationalOccupationalCredential .
schema:educationalLevel a rdf:Property ;
rdfs:label "educationalLevel" ;
dc:source <https://github.com/schemaorg/schemaorg/issues/1779> ;
schema:category "issue-1779" ;
schema:domainIncludes schema:EducationalOccupationalCredential ;
schema:isPartOf <http://pending.schema.org> ;
schema:rangeIncludes schema:DefinedTerm,
schema:Text,
schema:URL ;
rdfs:comment "The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators." .
schema:qualifications a rdf:Property ;
dc:source <https://github.com/schemaorg/schemaorg/issues/1779> ;
schema:category "issue-1779" ;
schema:isPartOf <http://pending.schema.org> ;
schema:rangeIncludes schema:EducationalOccupationalCredential .
schema:recognizedBy a rdf:Property ;
rdfs:label "recognizedBy" ;
dc:source <https://github.com/schemaorg/schemaorg/issues/1779> ;
schema:category "issue-1779" ;
schema:domainIncludes schema:EducationalOccupationalCredential ;
schema:isPartOf <http://pending.schema.org> ;
schema:rangeIncludes schema:Organization ;
rdfs:comment "An organization that acknowledges the validity, value or utility of a credential. Note: recognition may include a process of quality assurance or accreditation." .
schema:validFor a rdf:Property ;
rdfs:label "validFor" ;
dc:source <https://github.com/schemaorg/schemaorg/issues/1779> ;
schema:category "issue-1779" ;
schema:domainIncludes schema:EducationalOccupationalCredential .
schema:validIn a rdf:Property ;
rdfs:label "validIn" ;
dc:source <https://github.com/schemaorg/schemaorg/issues/1779> ;
schema:category "issue-1779" ;
schema:domainIncludes schema:EducationalOccupationalCredential .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment