The goal of this project is to organize requirements found in current job listings for positions in the tech industry.:woman_technologist::man_technologist:
ℹ️ Job Requirement data is organized by category (Data Analysis, Programming, etc.) then requirements (SQL, JavaScript, etc.) as it fits into each category.
❗ Structure commit messages as one of the following:
Add
requirement
to
category
Add
framework
to
requirement
Add new category
category
`
- Include at least an empty array for degrees, and minimum one example requirement
"high-level category": {
"degrees": [],
"requirement": "url"
},
- As new job categories are added, PRs to reorganize existing requirements may be submitted.
- Requirements are structured as name/url key/value pairs
- URL's
- Official documentation
- Official user guide
- Official certification page
- URL's
"project management": {...,
"Microsoft Project": "https://docs.microsoft.com/en-us/projectonline/project-online",
},
- Nest frameworks under higher-level requirement
"JavaScript": {
"AngularJS": "https://docs.angularjs.org/guide",
"React": "https://reactjs.org/docs/getting-started.html"
},
- Ensure requirement is properly cased (PR's for corrections will be accepted)
// bad
javascript
Javascript
// good
JavaScript
- The same job requirement may be listed under multiple categories.
"data analysis": {...,
"databases": { "MongoDB": "https://www.mongodb.com/datasheets" }
},
"programming": {...,
"databases": { "MongoDB": "https://www.mongodb.com/datasheets" }
},