onde
onde copied to clipboard
Web-based schema-based JSON document editing component
http://json-schema.org/draft-04/schema# Copied below. BTW, it also doesn't load the swagger 2.0 schema. { "id": "http://json-schema.org/draft-04/schema#", "$schema": "http://json-schema.org/draft-04/schema#", "description": "Core schema meta-schema", "definitions": { "schemaArray": { "type": "array", "minItems": 1, "items":...
Adds a confirm box before deletions, and allows additionalProperties to correctly show up when the starting data is passed into renderObject has additionalProperties, and the schema contains additionalProperties. Also adds...
The [jQuery.fn.live()](http://api.jquery.com/live/) function was deprecated in 1.9.1.
If you load an array it gets treated as an object: "expansion_prices": { "0": { "coins": 501, "cash": 10 }, "1": { "coins": 2002, "cash": 15 }, "2": { "coins":...
If an input has defined choices (example: "gender" : { "type":"string", "choices": [ {"value":"male","label":"Guy"}, {"value":"female","label":"Girl"} ]}), it would best be represented by a drop down box instead of just a...
Idea: expand the field to display options related to the types on click ("edit mode").
if nothing else, in onde.js at line 107, `If (confirm("Really delete?")) {` ...
Instead of having a generic "add item" label, I think it would be a nice touch to have it say "add [name property form item template here]".
I would like to be able to render objects with default values. For example: { "name":"a_map", "type": "object", "required": true, "additionalProperties": true, "default": { "a": 1, "b": 2 } }
If you set default values in the schema, they appear in the form in gray, but if you don't change them, they don't show up in the exported data. Is...