UNPKG

jsonform

Version:

Client-side JavaScript library that generates HTML forms from structured data models expressed using a JSON schema, possibly completed by a form layout description.

30 lines 421 B
{ "schema": { "comment": { "type": "string", "title": "Comment" }, "name": { "type": "string", "title": "Name" }, "age": { "type": "number", "title": "Age" } }, "form": [ { "key": "comment", "type": "textarea" }, { "type": "section", "title": "Author", "items": [ "name", "age" ] } ] }