Skip to main content

Resume

Description

The Resume document serves as a summary of an individual's educational background, work experience, skills, and qualifications.

Schema Information

{
"type": "object",
"title": "Resume",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"name",
"contactInformation"
],
"properties": {
"name": {
"type": "string"
},
"skills": {
"type": "array",
"items": {
"type": "string"
}
},
"education": {
"type": "array",
"items": {
"type": "object",
"required": [
"degree",
"institution",
"graduationDate"
],
"properties": {
"degree": {
"type": "string"
},
"institution": {
"type": "string"
},
"graduationDate": {
"type": "string",
"format": "date"
}
}
}
},
"workExperience": {
"type": "array",
"items": {
"type": "object",
"required": [
"jobTitle",
"company",
"startDate",
"endDate"
],
"properties": {
"company": {
"type": "string"
},
"endDate": {
"type": "string",
"format": "date"
},
"jobTitle": {
"type": "string"
},
"startDate": {
"type": "string",
"format": "date"
},
"jobDescription": {
"type": "string"
}
}
}
},
"contactInformation": {
"type": "object",
"required": [
"phone",
"email"
],
"properties": {
"email": {
"type": "string",
"format": "email"
},
"phone": {
"type": "string"
},
"address": {
"type": "string"
}
}
},
"optionalInformation": {
"type": "object"
},
"professionalSummary": {
"type": "string"
}
},
"additionalProperties": false
}