registry-server
registry-server copied to clipboard
Registry server does not create resumes with `basics` section
Here is my registry: http://registry.jsonresume.org/rvarbanov And here is my resume.json: https://github.com/rvarbanov/resume/blob/master/resume.json
For some strange reason, the basics is missing on the registry.
EDID: I found the issue. When I foudn about the site I started with the http://registry.jsonresume.org/ editor and downloaded the json from there. The issue is that the json that you get from the online editor is missing []
E.g. the schema https://jsonresume.org/schema/ is using:
{
"basics": {
"name": "John Doe",
"label": "Programmer",
"picture": "",
"email": "[email protected]",
"phone": "(912) 555-4321",
"website": "http://johndoe.com",
"summary": "A summary of John Doe...",
"location": {
"address": "2712 Broadway St",
"postalCode": "CA 94115",
"city": "San Francisco",
"countryCode": "US",
"region": "California"
},
"profiles": [{
"network": "Twitter",
"username": "john",
"url": "http://twitter.com/john"
}]
},
it should be:
"basics": [{
//code
}],