mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 08:45:23 +00:00
31 lines
475 B
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
|
|
}
|
|
} |