You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 2014-07-12 - `email` and `phone` were changed from objects into strings - [Discussion](https://github.com/jsonresume/resume-schema/issues/27) - [Commit](https://github.com/jsonresume/resume-schema/pull/98)
30
30
* 2014-07-12 - `firstName` and `lastName` were merged into `name` - [Discussion](https://github.com/jsonresume/resume-schema/issues/4) - [Commit](https://github.com/jsonresume/resume-schema/commit/717b2a525f4f42e9994c54bfa3cdbe0cea5776a6)
31
31
32
-
### Gitter
32
+
### Community Chat
33
33
34
-
Everyone working on the early stages of the project should join our gitter channel [gitter.im/jsonresume/public](https://gitter.im/jsonresume/public).
34
+
*[Gitter](https://gitter.im/jsonresume/public)
35
35
36
-
### Getting started
36
+
### Installation
37
37
38
+
Resume-schema is intended to be installed as a dependency of your project:
39
+
40
+
```sh
41
+
npm add resume-schema
38
42
```
39
-
npm install --save resume-schema
40
-
```
41
43
42
-
To use
44
+
### Usage
45
+
The main export of this package is an object that validates as a [JSON schema](https://json-schema.org/understanding-json-schema/). It should work with [any compliant implementation](https://json-schema.org/implementations.html#validator-javascript).
46
+
47
+
#### validation
48
+
To determine if an object is a valid JSON resume, you can do something like this:
43
49
44
50
```js
45
-
var resumeSchema =require('resume-schema');
46
-
resumeSchema.validate({ name:"Thomas" }, function (err, report) {
We encourage anyone who's interested in participating in the formation of this standard, to join us on Gitter, and/or to join the discussions [here on GitHub](https://github.com/jsonresume/resume-schema/issues). Also feel free to fork this project and submit new ideas to add to the JSON Resume Schema standard. To make sure all formatting is kept in check, please install the [EditorConfig plugin](http://editorconfig.org/) for your editor of choice.
72
+
We encourage anyone who's interested in participating in evolving this standard to join us on Gitter, and/or to join the discussions [here on GitHub](https://github.com/jsonresume/resume-schema/issues). Also feel free to fork this project and submit new ideas to add to the JSON Resume Schema standard. To make sure all formatting is kept in check, please install the [EditorConfig plugin](http://editorconfig.org/) for your editor of choice.
0 commit comments