Skip to content

Cert

a document that proves successful completion of a course of education or training
Type: object
Properties

id

an identifier for the certificate
Type: string

name *

the name of the certificate
Type: string
Required: yes

field

the field of study in which the certificate was obtained
Type: string

period *

the period of study for the certificate
Type: Period
Required: yes

issue *

the date on which the certificate was issued
Type: Date
Required: yes

shortName

a short informal name for the certificate. This can be an abbreviation.
Type: string

score

the score achieved in the certificate examination; This is the overall score (cumulative) for the complete certificate.
Type: string
Examples
"86"
"3.9"
"B-"

maxScore

the maximum attainable score in the certificate examination
Type: string
Examples
"100"
"4.0"
"A+"

courses

a list of courses completed to obtain the certificate
Type: array
Default: []
Item

Type: string
Examples
[
"CS50 - Introduction to Computer Science",
"PH101 - Introduction to Physics"
]

expiration

the date on which the certificate is set to become invalid; This is to be left blank if the certificate does not expire.
Type: Date

tags

tags to apply to this certificate; The use of tags is left up to the application (for example, the portfolio uses tags for PDF résumés).
Type: array
Default: []
Item

Type: Tag
Examples
{
"id": "b_tech",
"name": "Bachelor of Technology",
"shortName": "B. Tech.",
"field": "Engineering Physics",
"period": {
"start": [
2015
],
"end": [
2019
]
},
"issue": [
2015
],
"score": "7.286",
"maxScore": "10.000",
"courses": [
"PH101 - Introduction to Physics"
]
}