{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "name": { "type": "string", "title": "Name" }, "age": { "type": "integer", "title": "Age" }, "email": { "type": "string", "format": "email", "title": "Email" } }, "required": [ "name", "age" ], "ui:options": { "order": [ "name", "age", "email" ], "inline": true } }