JSON Schema Faker is a JavaScript tool that combines JSON Schema standard with fake data generators, allowing users to generate fake data that conform to the schema.
JSON schema is a vocabulary that allows you to annotate and validate JSON documents. For example, the schema { "type": "string", "minLength": 5 }
validates the JSON data "hello world"
because the data is a string and has a minimum length of 5.
JSON schemas can be quite useful for defining how input data should look like. That is where JSON Schema Faker comes into play, because it automates the generation of JSON data that fit to such schemas. The tool can be quite useful when dealing with API testing.
Links: