Jsongenerator
A JSON data generator from JSON Schemas, provided as a Java library.
Install / Use
/learn @jimblackler/JsongeneratorREADME
JSON Generator
A JSON data generator from JSON Schemas, provided as a Java library.
An online demonstration is here.
How to Use
import java.util.Random;
import net.jimblackler.jsonschemafriend.Schema;
import net.jimblackler.jsonschemafriend.SchemaStore;
public class JsonGenerationExample {
/**
* Generate random Json with the following schema:
* {
* "type": "object",
* "properties": {
* "name": { "type": "string" },
* "birthday": { "type": "string","format": "date" },
* "age": { "type": "integer" }
* }
* }
*/
public static void main(String[] args) throws Exception {
Configuration config = DefaultConfig.build()
.setGenerateMinimal(false)
.setNonRequiredPropertyChance(0.5f)
.get();
SchemaStore schemaStore = new SchemaStore(true);
Schema schema = schemaStore.loadSchemaJson("{ \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"birthday\": { \"type\": \"string\", \"format\": \"date\" }, \"age\": { \"type\": \"integer\" } } }");
Generator generator = new Generator(config, schemaStore, new Random());
Object json = generator.generate(schema, 10);
// sample output: {name=vxtydd, birthday=2377-03-08, age=544}
System.out.println(json);
}
}
License
Written by jimblackler@gmail.com and offered under an Apache 2.0 license.
Related Skills
node-connect
341.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.5kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
341.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.5kCommit, push, and open a PR
