Skip to content

Commit

Permalink
Add empty FRESH resume.
Browse files Browse the repository at this point in the history
  • Loading branch information
hacksalot committed Jan 4, 2016
1 parent d466143 commit fe8c48f
Show file tree
Hide file tree
Showing 3 changed files with 199 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,21 @@ fresh-test-resumes
==================
Test résumés and CVs in [FRESH][f] format. For testing purposes.

- [**empty.fresh.json**][e]: An empty FRESH resume.
- [**jane-fullstacker.fresh.json**][jq]: Jane Q. Fullstacker's valid FRESH
resume (a normal resume).
- [**johnny-trouble.fresh.json**][jt]: Johnny Trouble's valid FRESH resume (a
resume full of garbage characters).
- [**johnny-trouble.broken.json**][jtb]: Broken version of Johnny Trouble's
resume (a resume with numerous JSON syntax errors.)

## License

MIT. See [LICENSE.md][lic] for details.

[e]: src/empty.fresh.json
[jq]: src/jane-fullstacker.fresh.json
[jt]: src/johnny-trouble.fresh.json
[jtb]: src/johnny-trouble.broken.fresh.jsnon
[lic]: https://github.com/fluentdesk/fresh-test-resumes/blob/master/LICENSE.md
[f]: https://github.com/fluentdesk/FRESCA
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ Mount individual resumes onto the module object for convenience.
(function(){

module.exports = {
empty: require('./src/empty.fresh.json'),
jane: require('./src/jane-fullstacker.fresh.json'),
johnny: require('./src/johnny-trouble.fresh.json')
johnny: require('./src/johnny-trouble.fresh.json'),
johnnyBroken: require('./src/johnny-trouble.broken.fresh.json')
};

}());
184 changes: 184 additions & 0 deletions src/empty.fresh.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,184 @@
{

"name": "",

"meta": {
"format": "FRESH@0.1.0",
"version": "0.1.0"
},

"info": {
"label": "",
"characterClass": "",
"brief": "",
"image": ""
},

"contact": {
"website": "",
"phone": "",
"email": "",
"other": []
},

"location": {
"address": "",
"city": "",
"region": "",
"code": "",
"country": ""
},

"social": [
{
"label": "",
"network": "",
"user": "",
"url": ""
}
],

"employment": {
"summary": "",
"history": [
{
"employer": "",
"url": "",
"position": "",
"summary": "",
"start": "",
"end": "",
"keywords": [],
"highlights": []
}
]
},

"education": {
"summary": "",
"level": "",
"degree": "",
"history": [
{
"institution": "",
"url": "",
"start": "",
"end": "",
"grade": "",
"summary": "",
"curriculum": []
}
]
},

"service": {
"summary": "",
"history": [
{
"flavor": "",
"position": "",
"organization": "",
"url": "",
"start": "",
"end": "",
"summary": "",
"highlights": []
}
]
},

"skills": {

"sets": [
{
"name": "",
"level": "",
"skills": []
}
],

"list": [ ]
},

"samples": [
{
"title": "",
"summary": "",
"url": "",
"date": ""
}
],

"writing": [
{
"title": "",
"flavor": "",
"date": "",
"publisher": {
"name": "",
"url": ""
},
"url": ""
}
],

"reading": [
{
"title": "",
"flavor": "",
"url": "",
"author": ""
}
],

"recognition": [
{
"flavor": "",
"from": "",
"title": "",
"event": "",
"date": "",
"summary": ""
}
],

"references": [
{
"name": "",
"flavor": "",
"private": true,
"contact": [
{
"label": "",
"flavor": "",
"value": ""
}
]
}
],

"testimonials": [
{
"name": "",
"flavor": "",
"quote": ""
}
],

"languages": [
{
"language": "",
"level": "",
"years": 0
}
],

"interests": [
{
"name": "",
"summary": "",
"keywords": []
}
]

}

0 comments on commit fe8c48f

Please sign in to comment.