This page shows how a resume (CV) can be written in a special computer language called JSON.
Think of this like filling in a form, but instead of boxes, everything is written in text that computers can read. The left side explains each part in very simple words. The right side shows what it looks like in JSON.
This part tells who you are and how someone can contact you.
It includes:
Just like writing your name on the front of your school book, this helps people know the resume belongs to you.
This part shows where you went to school or college and what you studied.
It answers questions like:
Think of it like showing your report card to explain what you have learned.
This part shows the jobs you have done before.
It tells:
This helps employers see what kind of work you already know how to do.
Skills are things you are good at.
For example:
This is like telling someone what games you are really good at playing.
Certificates are proof that you learned something and passed a test.
They are like medals or trophies that show you did a good job in a course or training.
This part shows what languages you can speak.
For example: English, Kiswahili, French, or any other language.
It also shows how well you can speak each language.
Projects are things you have built or worked on.
For example:
This shows what you can do, not just what you studied.
References are people who can say good things about you.
For example, a teacher, a boss, or a manager who knows you well.
It is like having someone tell others, âYes, this person is good at their work.â
This is the same information shown on the left, but written in a way that computers understand.
{
"profile": {
"name": "John Doe",
"email": "john@gmail.com",
"phone": "(912) 555-4321"
},
"education": [
{
"institution": "University of Example",
"education level": "Tertiary",
"area of study": "Software Development",
"score": "First Class Honors",
"startDate": "2011-01-01",
"endDate": "2013-01-01"
}
],
"work": [
{
"name": "Example Company",
"position": "Software Engineer",
"startDate": "2013-01-01",
"endDate": "2014-01-01"
}
],
"skills": [
{
"name": "Web Development",
"level": "Advanced",
"keywords": ["HTML", "CSS", "JavaScript"]
}
],
"certificates": [
{
"name": "Web Development Certificate",
"date": "2021-11-07",
"issuer": "Example Institute"
}
],
"languages": [
{
"language": "English",
"fluency": "Native speaker"
}
],
"projects": [
{
"name": "Ajirika Platform",
"startDate": "2019-01-01",
"endDate": "2021-01-01",
"description": "A platform that helps people share their CVs in a simple digital way.",
"highlights": ["Helps computers read resumes easily"],
"url": "https://project.com/"
}
],
"references": [
{
"name": "Jane Doe",
"reference": "Former manager who knows my work very well."
}
]
}