Giter Club home page Giter Club logo

jsongenerator's Introduction

JSON Generator

A JSON data generator from JSON Schemas, provided as a Java library.

It is available on JitPack.

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 [email protected] and offered under an Apache 2.0 license.

jsongenerator's People

Contributors

jimblacklercorp avatar jimblackler avatar tuliren avatar pruda1 avatar pablo1ru avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.