Last active
August 29, 2015 14:03
-
-
Save purwandi/27ccc3978d48803fea70 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://jsonresume.org/ | |
{ | |
bio: { | |
firstName: string, | |
lastName: string, | |
email: { | |
work: string, // e.g. [email protected] | |
personal: string // [email protected] | |
}, | |
phone: { // Phone numbers are stored as strings so use any format you like | |
work: string, // e.g. 732-757-2923 | |
personal: string // e.g. 712-117-2923 | |
}, | |
summary: string, // Write a short 2-3 sentence biography about yourself | |
location: { | |
city: string, | |
countryCode: string, // e.g. US, AU, IN | |
region: string, // If you specify a region, you don't need a state e.g. Queensland | |
state: string // If you specify a state, you don't need a region e.g. Texas | |
}, | |
websites: { // The value you use as your key, will generally become the label | |
blog: string // e.g. http://blog.joebloggs.com | |
}, | |
profiles: { // Specify any number of social networks that you participate in | |
twitter: string, // e.g. neutralthoughts | |
github: string // e.g. thomasdavis | |
} | |
}, | |
work: [{ | |
company: string, // e.g. Facebook | |
position: string, // e.g. Software Engineer | |
website: string, // e.g. http://facebook.com | |
startDate: string, // resume.json uses the ISO 8601 date standard e.g. 2014-06-29 | |
endDate: string, // e.g. 2012-06-29 | |
summary: string, // Give an overview of your responsibilities at the company | |
highlights: [ // Specify multiple accomplishments | |
string // e.g. Increased profits by 20% from 2011-2012 through viral advertising | |
] | |
}], | |
education: [{ | |
institution: string, // e.g. Massachusetts Institute of Technology | |
area: string, // e.g. Arts | |
studyType: string, // e.g. Bachelor | |
startDate: string, // e.g. 2014-06-29 | |
endDate: string, // e.g. 2012-06-29 | |
courses: [ // List an notable courses/subjects | |
string // e.g. H1302 - Introduction to American history | |
] | |
}], | |
awards: [{ // Specify any awards you have received throughout your professional career | |
title: string, // e.g. One of the 100 greatest minds of the century | |
awardDate: string, // e.g. 1989-06-12 | |
awarder: string // e.g. Time Magazine | |
}], | |
publications: [{ // Specify your publications through your career | |
name: string, // e.g. The World Wide Web | |
publisher: string, // e.g. IEEE, Computer Magazine | |
releaseDate: string, // e.g. 1990-08-01 | |
website: string // e.g. http://www.computer.org/csdl/mags/co/1996/10/rx069-abs.html | |
}], | |
skills: [{ // List out your professional skill-set | |
name: string, // e.g. Web Development | |
level: string, // e.g. Master | |
keywords: [ // List some keywords pertaining to this skill | |
string // e.g. HTML | |
] | |
}], | |
hobbies: [{ | |
name: string, // e.g. Philosophy | |
keywords: [ | |
string // e.g. Friedrich Nietzsche | |
] | |
}], | |
references: [{ // List references you have received | |
name: string, // e.g. Timothy Cook | |
reference: string // e.g. Joe blogs was a great employee, who turned up to work at least once a week. He exceeded my expectations when it came to doing nothing. | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment