jsonresume / registry-server

This repo is deprecated in favor of https://github.com/jsonresume/registry-functions
https://github.com/jsonresume/registry-functions
MIT License
95 stars 46 forks source link

Registry server does not create resumes with `basics` section #75

Open rvarbanov opened 9 years ago

rvarbanov commented 9 years ago

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": "john@gmail.com",
    "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
}],