Use [JSON Schema](http://json-schema.org/) along with fake generators to provide consistent and meaningful fake data for your system.
Use [JSON Schema](http://json-schema.org/draft-04/) along with fake generators to provide consistent and meaningful fake data for your system.
We are looking for **contributors**! If you wanna help us make `jsf` more awesome, simply write us so!
## Join us!
We've recently setup a [gitter room](https://gitter.im/json-schema-faker) for this project, if you want contribute, talk about specific issues from the library, or you need help on json-schema topics just reach us!
## What's new?
A release candidate for `v0.5.x` series was released in order to support local/remote reference downloading thanks to `json-schema-ref-parser`, this change forced `jsf` to be completely async.
...
...
@@ -120,7 +124,7 @@ You can see [an example JS fiddle based on `jsf` loaded from cdnjs](https://jsfi
JSON-Schema-faker (or `jsf` for short) combines two things:
* The [JSON-schema specification](http://json-schema.org/), that defines what is the allowed content of a JSON document
* The [JSON-schema specification](http://json-schema.org/draft-04/), that defines what is the allowed content of a JSON document
* Fake data generators, that are used to generate basic or complex data, conforming to the schema.
Since `v0.5.x` external generators are not longer bundled with jsf, however built-in defaults are shipped for all basic types and formats.
...
...
@@ -232,13 +236,13 @@ Below is the list of supported keywords:
-`$ref`— Resolve internal references only, and/or external if provided.
-`required`— All required properties are guaranteed, if not can be omitted.
-`pattern`— Generate samples based on RegExp values.