Background: This is a request for something that may not exist yet, but I've been meaning to build one for a long time. First I will ask if anyone has seen anything like it yet.

Suppose you have an arbitrary JSON structure like the following:

{
    'str_title':'My Employee List'
    ,'str_lastmod': '2009-June-15'
    ,'arr_list':[
        {'firstname':'john','lastname':'doe','age':'33',}
        ,{'firstname':'jane','lastname':'doe','age':'34',}
        ,{'firstname':'samuel','lastname':'doe','age':'35',}
    ]
}

Question: Is there a web-based JSON editor that could take a structure like this, and automatically allow the user to modify this in a user-friendly GUI?

Example: Imagine an auto-generated HTML form that displays 2 input-type-text controls for both title and lastmod, and a table of input-type-text controls with three columns and three rows for arr_list ... with the ability to delete or add additional rows by clicking on a [+][X] next to each row in the table.

Big Idea: The "big idea" behind this is that the user would be able to specify any arbitrary (non-recursive) JSON structure and then also be able to edit the structure with a GUI-based interaction (this would be similar to the "XML Editor Grid View" in XML Spy).

link|improve this question

69% accept rate
Good idea, you can earn much money! Congratulations! – Arthur Ronald F D Garcia Sep 16 '09 at 3:18
Do you have any progress on building own editor? i was looking for the same thing. What i have found on the net are almost same ones as you listed on your answer. – Sinan Yasar Nov 27 '09 at 12:55
No. It seems like a good enough idea with not enough momentum behind it. – dreftymac Nov 28 '09 at 23:59
if i get enough momentum for it i'd love to write my first cocoa app for that, if you won't ask for copyrights;) – Sinan Yasar Nov 29 '09 at 11:11
1  
I'm too small to put a wall around any of my ideas, and this has been done before anyway :) ... take a look at the XMLSPY grid-view editor if you decide to tackle this and you need additional inspiration: altova.com/xmlspy/xml-grid-view.html – dreftymac Nov 30 '09 at 18:05
show 1 more comment
feedback

9 Answers

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.

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

See Also

link|improve this answer
Form Builder made with Freja looks amazing! Though this is (almost) completely unrelated to the question... :P – Cawas Mar 16 '11 at 21:25
1  
@Cawas It does look amazing. It's surprising, but there are several excellent form-builders out there - one (wufoo) was recently acquired for... $35 million news.ycombinator.com/item?id=2481576 – 13ren May 17 '11 at 19:56
@13ren damn, I've never realized there was such a market behind all this! – Cawas May 17 '11 at 20:38
+1 for jsoneditoronline.org Here is GIT of this project - github.com/wjosdejong/jsoneditoronline – FDisk May 22 at 12:17
feedback

Following one of your list items, I've forked it and made customized it to my taste. I think it's the best one because it's simple enough so you can add stuff - plus it's the only one which features UNDO and REDO and the only one on the amazing git hub.

There are many missing features and it will most likely become discontinued unless someone fork it or the original author pulls from it, but anyway, here it is: http://cauerego.github.com/jsoneditor/

link|improve this answer
feedback

I have found this one, it seems more promising than the others but it is still not what i had in mind.

http://jsoneditor.appspot.com/

Sinan.

link|improve this answer
That one looks identical to the fifth one in the list I posted. They might be the same? – dreftymac Nov 28 '09 at 23:56
ah, i haven't seen that on your list and yes they are same, sorry for duplicate. – Sinan Yasar Nov 29 '09 at 11:11
@dreftymac - your 5th one is a broken link, I don't see this one in your list. – Matt Huggins Mar 6 '11 at 18:39
@Matt it's linb.net/Examples – Cawas Mar 16 '11 at 20:38
feedback

This one looks great:

http://jsonviewer.stack.hu/

link|improve this answer
Too bad there's no source :/ – Matt Huggins Mar 6 '11 at 18:37
Nice viewer, but I couldn't find a way to edit. – Skelly Dec 5 '11 at 18:56
feedback

My attempt: http://exavolt.github.com/onde/

You need to write the schema first tough. For example: http://exavolt.github.com/onde/#?schema_url=schemas/jquery-package.json

link|improve this answer
love the tool! Everyone should be using json schema – Damien Mar 7 at 15:34
feedback

I recently created JSON Editor Online, maybe you can add that to your list.

http://jsoneditoronline.org/

JSON Editor Online is a tool to easily edit and format JSON online. JSON is displayed in a clear, editable treeview and in formatted plain text.

The project is on github too, and you can use the editor as a component in your own applications. https://github.com/wjosdejong/jsoneditoronline

link|improve this answer
feedback

XML Webpad - http://xmlwebpad.codeplex.com

This is a XML editor that builds the UI from a JSON structure (which is created by converting the XML to JSON on the server).

link|improve this answer
feedback

Here's my 2 cents

http://ajax.jadesoul.org/projects/jsoneditor/

link|improve this answer
feedback

I built this, and you can plug this in into your own application. Its a flex component.

http://hicoder.posterous.com/json-editor-component-flex

Code is in Google Code.

Knock yourself out! Warning: It works, but its not the greatest piece of art. Not yet anyway!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.