- implement "Import from JSON Resume" feature

This commit is contained in:
Amruth Pillai
2020-07-16 11:58:31 +05:30
parent 8e9bd99e91
commit f41018c60b
6 changed files with 108 additions and 14 deletions

View File

@ -185,7 +185,6 @@
"lastName": "Pillai",
"phone": "+91 98453 36113",
"photograph": "https://i.imgur.com/2dmLSCT.jpg",
"profile": "",
"subtitle": "Full Stack Web Developer",
"website": "amruthpillai.com"
},

View File

@ -11,7 +11,6 @@
"city": "",
"pincode": ""
},
"profile": "",
"website": "",
"email": ""
},

View File

@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"$id": "http://json-schema.org/draft-04/schema#",
"definitions": {
"iso8601": {
"type": "string",
@ -9,11 +9,6 @@
}
},
"properties": {
"$schema": {
"type": "string",
"description": "link to the version of the schema that can validate the resume",
"format": "uri"
},
"basics": {
"type": "object",
"additionalProperties": true,

View File

@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "http://example.com/example.json",
"$id": "http://json-schema.org/draft-07/schema",
"type": "object",
"title": "The root schema",
"description": "The root schema comprises the entire JSON document.",