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.

28 lines 468 B
{ "schema": { "firstname": { "type": "string", "title": "First name" }, "lastname": { "type": "string", "title": "Last name" }, "fullname": { "type": "string", "title": "Full name" } }, "form": [ "firstname", "lastname", { "key": "fullname", "value": "{{values.firstname}} {{values.lastname}}" } ], "value": { "firstname": "François", "lastname": "Daoust" } }