jsonresume / resume-schema

JSON-Schema is used here to define and validate our proposed resume json
http://jsonresume.org
MIT License
2.15k stars 278 forks source link

Add location to work object #458

Closed vikramsoni2 closed 1 year ago

vikramsoni2 commented 1 year ago

I would like to add job location as "location" attribute to work object. If you think it make sense, let me know I can create a pull request.

vikramsoni2 commented 1 year ago

I see in tests this section:

test('work[].location - valid', (t) => {
  validate(fixtures.locationValid, (err, valid) => {
    t.equal(err, null, 'err should be null');
    t.true(valid, 'valid is true');
  });
  t.end();
});

so looks like there is location in work. however, its not in the example schema on the website.