user12061187
user12061187

Reputation: 91

Customisable GUI for generating JSON

I'm wondering if there's an application out there that can help me with this. Assuming I've defined a JSON schema, I want to generate a GUI that lets me build objects that conform to this schema without hard-writing the JSON myself. Each field would provide a simple GUI element labelled with that field's key.

For example:

Ideally there would be some way to save specific objects for re-use too.

Does anything like this already exist? In my head it seems like something that would but maybe not.

Upvotes: 7

Views: 11545

Answers (2)

Kazuto_Ute
Kazuto_Ute

Reputation: 797

I created a tool specifically for this purpose called Mock Turtle. It lets you import a JSON Schema and will produce a GUI tree that conforms to the schema.

You can customise the fields in the tree with various data types (e.g. name, address, email, etc.). It will then generate random JSON data based on your tree.

You can also save a tree that you have created/customised and import it again later for reuse.

enter image description here

Upvotes: 4

Hudhaif
Hudhaif

Reputation: 66

The answer for this question is already answered here.

Link: GUI-based or Web-based JSON editor that works like property explorer

Upvotes: 5

Related Questions