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

38 lines
765 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"
},
"firstName": {
"type": "string",
"title": "First name",
"default": "Chuck"
}
},
"required": [
"firstName",
"age"
],
"ui:options": {
"order": [
"name",
"age",
"email"
],
"inline": true
},
"title": "Text Field",
"description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')"
}