Skip to content

Commit

Permalink
Added volunteer section
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasdavis committed Jul 30, 2014
1 parent 9f74cbc commit dee007c
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,53 @@

}
},
"volunteer": {
"type": "array",
"additionalItems": false,
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"organization": {
"type": "string",
"description": "e.g. Facebook"
},
"position": {
"type": "string",
"description": "e.g. Software Engineer"
},
"website": {
"type": "string",
"description": "e.g. http://facebook.com",
"format": "uri"
},
"startDate": {
"type": "string",
"description": "resume.json uses the ISO 8601 date standard e.g. 2014-06-29",
"format": "date"
},
"endDate": {
"type": "string",
"description": "e.g. 2012-06-29",
"format": "date"
},
"summary": {
"type": "string",
"description": "Give an overview of your responsibilities at the company"
},
"highlights": {
"type": "array",
"description": "Specify multiple accomplishments",
"additionalItems": false,
"items": {
"type": "string",
"description": "e.g. Increased profits by 20% from 2011-2012 through viral advertising"
}
}
}

}
},
"education": {
"type": "array",
"additionalItems": false,
Expand Down

0 comments on commit dee007c

Please sign in to comment.