The JSON Form library is a JavaScript client-side library that takes a structured data model defined using JSON Schema as input and returns a Bootstrap 4-friendly HTML form that matches the schema.
The generated HTML form includes client-side validation logic that provides direct inline feedback to the user upon form submission (provided a JSON Schema validator is available). If values are valid, the JSON Form library uses submitted values to create the JavaScript data structure that matches the data model.
The layout of the generated HTML form may be entirely fine-tuned through a simple declarative mechanism.
The example below creates a form that asks for the user's name and age. The user's name is a required field, while the age is optional.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Getting started with JSON Form</title>
<link rel="stylesheet" type="text/css" href="deps/opt/bootstrap/css/bootstrap.css" />
</head>
<body>
<h1>Getting started with JSON Form</h1>
<form></form>
<div id="res" class="alert alert-warning"></div>
<script type="text/javascript" src="deps/jquery/jquery.min.js"></script>
<script type="text/javascript" src="deps/underscore/underscore-umd-min.js"></script>
<!-- JVS: outdated, no longer updated, do not support draft v4 -->
<!-- <script type="text/javascript" src="deps/opt/validator/JSV/jsv.js"></script> -->
<!-- it is recommended to use another validator, eg. ajv, z-schema -->
<script type="text/javascript" src="deps/opt/validator/z-schema/ZSchema-browser-min.js"></script>
<script type="text/javascript" src="lib/jsonform.js"></script>
<script type="text/javascript">
$('form').jsonForm({
schema: {
name: {
type: 'string',
title: 'Name',
required: true
},
age: {
type: 'number',
title: 'Age'
}
},
onSubmit: function(errors, values) {
if (errors) {
$('#res').html('<p>I beg your pardon?</p>');
} else {
$('#res').html('<p>Hello ' + values.name + '.' +
(values.age ? '<br/>You are ' + values.age + '.' : '') +
'</p>');
}
}
});
</script>
</body>
</html>
Loading this page in a browser renders a form with two input fields and a submit button. The onSubmit
function is called upon form submission. If you press "Submit" without entering values or if the age you enter is not a number, error messages appear next to the input fields.
NB: Paths in this example are relative to the root of the JSON Form project.
You can do much more with the JSON Form library. You may define a more complex data model that includes arrays and objects for instance, or you may control the layout of the form to include fieldsets, expandable sections or tabs. For more information, check the reference documentation for JSON Form.
If you're more of the acting type than of the reading type, the JSON Form Playground is a simple JSON Form editor that lets you try out and extend all the examples in the doc. You can also run playground on your own (see playground).
All of required and optional libraries are located in the deps folder for now, although you might want to check their respective Web site for more recent versions.
NB: JSON Form also uses JSON.parse
and JSON.stringify
which is normally already natively supported by all modern browsers.
The JSON Form library is licensed under the MIT License.
All the libraries that JSON Form may depend on are licensed under the MIT License, except for:
- JSON Schema Validator: FreeBSD License
- ACE editor: BSD License
- vanilla-picker: ISC License