demo-process-models/playground/nutech/issue/Check box-schema.json

31 lines
475 B
JSON

{
"$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
}
}