GUI-based or Web-based JSON editor that works like property explorer [closed] GUI-based or Web-based JSON editor that works like property explorer [closed] ajax ajax

GUI-based or Web-based JSON editor that works like property explorer [closed]


Update: In an effort to answer my own question, here is what I've been able to uncover so far. If anyone else out there has something, I'd still be interested to find out more.

Based on JSON Schema

Commercial (No endorsement intended or implied, may or may not meet requirement)

jQuery

YAML

See Also


Generally when I want to create a JSON or YAML string, I start out by building the Perl data structure, and then running a simple conversion on it. You could put a UI in front of the Perl data structure generation, e.g. a web form.

Converting a structure to JSON is very straightforward:

use strict;use warnings;use JSON::Any;my $data = { arbitrary structure in here };my $json_handler = JSON::Any->new(utf8=>1);my $json_string = $json_handler->objToJson($data);