Skip to content

Commit

Permalink
Add "extracurricular
Browse files Browse the repository at this point in the history
  • Loading branch information
hacksalot committed Dec 8, 2015
1 parent 8c541c5 commit 837b0cb
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 1 deletion.
21 changes: 21 additions & 0 deletions exemplar/jane-doe.json
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,27 @@
}
],

"extracurricular": [
{
"title": "Bay Area Crew Club",
"activity": "",
"location": "San Francisco, CA",
"start": "2014-05"
},
{
"title": "Organizer / Manager",
"activity": "JavaScript Game Development Meetup",
"location": "Austin, TX",
"start": "2011-03",
"end": "2014-01",
"highlights": [
"Monthly speaker on creative JavaScript development.",
"Founded group and oversaw growth to 500+ members."
]

}
],

"interests": [
{
"name": "reading",
Expand Down
37 changes: 36 additions & 1 deletion schema/fresh-resume-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@
"type": "string",
"description": "Publisher of the article, essay, or book."
},

"url": {
"type": "string",
"description": "Publisher website or URL."
Expand Down Expand Up @@ -867,6 +867,41 @@
}
}
}
},

"extracurricular": {
"type": "array",
"additionalItems": false,
"items": {
"type": "object",
"additionalProperties": true,
"properties": {
"title": {
"type": "string",
"description": "Title of the extracurricular activity."
},
"activity": {
"type": "string",
"description": "The extracurricular activity."
},
"location": {
"type": "string",
"description": "City, state, or other freeform location."
},
"start": {
"type": "string",
"description": "Start date.",
"format": "date",
"required": true
},
"end": {
"type": "string",
"description": "End date.",
"format": "date"
}
}
}
}

}
}

0 comments on commit 837b0cb

Please sign in to comment.