Skip to content

Commit

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

"speaking": [
{
"role": "Speaker",
"event": "OPENSTART 2013 Developer's Conference",
"date": "2014"
}
],

"recognition": [
{
"flavor": "award",
Expand Down
25 changes: 25 additions & 0 deletions schema/fresh-resume-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,31 @@
}
},

"speaking": {
"type": "array",
"additionalItems": false,
"items": {
"type": "object",
"additionalProperties": true,
"properties": {
"role": {
"type": "string",
"description": "Speaker role: speaker, keynote, etc."
},
"event": {
"type": "string",
"description": "Event at which you presented."
},
"date": {
"type": "string",
"description": "Presentation date.",
"format": "date",
"required": true
}
}
}
},

"languages": {
"type": "array",
"description": "Languages spoken by the candidate.",
Expand Down

0 comments on commit e23d8d6

Please sign in to comment.