Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.0.0 JSON Schema Update #53

Merged
merged 7 commits into from
Oct 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,4 @@ This tool is not affiliated with LinkedIn in any manner. Intended use is to expo

## Attribution:
Icon for browser extension:
- [https://www.iconfinder.com/icons/95928/arrow_down_download_profile_icon](https://www.iconfinder.com/icons/95928/arrow_down_download_profile_icon)
- [https://www.iconfinder.com/icons/95928/arrow_down_download_profile_icon](https://www.iconfinder.com/icons/95928/arrow_down_download_profile_icon)
4 changes: 2 additions & 2 deletions browser-ext/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<div class="specSelectWrapper">
Select JSONResume version:
<select id="specSelect">
<option value="stable" selected>Stable (v0.0.16)</option>
<option value="latest">Latest (v0.1.3)</option>
<option value="stable">Stable (v0.0.16)</option>
<option value="latest" selected>Latest (v1.0.0)</option>
<option value="beta">Beta (v0.1.3 + extra)</option>
</select>
</div>
Expand Down
15 changes: 7 additions & 8 deletions jsonresume.schema.latest.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/**
* @file Represents the latest version of the schema that I'm willing to support / implement
* - Currently locked to v0.1.3, @see https://github.com/joshuatz/linkedin-to-jsonresume/issues/33
* @see https://github.com/jsonresume/resume-schema/blob/v0.1.3/schema.json
* - Permalink of above: https://github.com/jsonresume/resume-schema/blob/cb54b409edd8502ec7a1c196668911985dce8bdd/schema.json
* - Currently v1.0.0
* @see https://github.com/jsonresume/resume-schema/blob/v1.0.0/schema.json
* - Permalink of above: https://github.com/jsonresume/resume-schema/blob/8a5b3982f8e5b9f8840398e162a6e0c418d023da/schema.json
*/

// All of these imports are because the spec is the same for the sub-section in both stable and latest (this doc)
Expand All @@ -19,13 +19,11 @@ export {
Skill
}

// Not yet in stable
// https://github.com/jsonresume/resume-schema/pull/340
interface Certificate {
export interface Certificate {
/**
* e.g. Certified Kubernetes Administrator
*/
title: string;
name: string;
/**
* e.g. 1989-06-12
*/
Expand Down Expand Up @@ -86,7 +84,7 @@ export interface Education {
/**
* grade point average, e.g. 3.67/4.0
*/
gpa?: string;
score?: string;
/**
* e.g. Massachusetts Institute of Technology
*/
Expand Down Expand Up @@ -214,6 +212,7 @@ export interface ResumeSchemaLatest {
*/
awards?: Award[];
basics?: Basics;
certificates: Certificate[];
education?: Education[];
interests?: Interest[];
/**
Expand Down
Loading