-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb243e3
commit 653cb58
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,39 @@ | ||
{ | ||
"type": "RESUME", | ||
"version": "1.0.0", | ||
"metadata": { | ||
"title": "Resume | Jane Doe", | ||
"description": "This is an example resume generated from a static.json file." | ||
}, | ||
"contents": { | ||
"person": { | ||
"@context": "https://schema.org", | ||
"@type": "Person", | ||
"givenName": "Jane", | ||
"familyName": "Doe", | ||
"address": { | ||
"@type": "PostalAddress", | ||
"addressLocality": "Seattle", | ||
"addressRegion": "WA", | ||
"postalCode": "98052", | ||
"streetAddress": "20341 Whitworth Institute 405 N. Whitworth" | ||
}, | ||
"email": "[email protected]", | ||
"name": "Jane Doe", | ||
"telephone": "(425) 123-4567" | ||
}, | ||
"experience": [ | ||
{ | ||
"title": "Software Engineer", | ||
"company_name": "static", | ||
"location": "Chicago, IL", | ||
"industry": "Research" | ||
}, | ||
{ | ||
"title": "JOB TITLE", | ||
"company_name": "COMPANY NAME", | ||
"location": "LOCATION", | ||
"industry": "INDUSTRY" | ||
} | ||
] | ||
} | ||
|