User: nelson@spiffworkflow.org added process model file example/test/UI_SimpleForm.json

This commit is contained in:
sartography-automated-committer 2023-06-14 11:15:16 +00:00
parent 8e8b05068d
commit f2878ec0a4

View File

@ -0,0 +1,44 @@
{
"schema": {
"friends": {
"type": "array",
"items": {
"type": "object",
"title": "Friend",
"properties": {
"nick": {
"type": "string",
"title": "Nickname",
"required": true
},
"gender": {
"type": "string",
"title": "Gender",
"enum": ["male", "female", "alien"]
},
"age": {
"type": "integer",
"title": "Age"
}
}
}
}
},
"uiSchema": {
"friends": {
"items": {
"nick": {
"ui:autofocus": true,
"ui:emptyValue": ""
},
"gender": {
"ui:widget": "radio"
},
"age": {
"ui:widget": "updown",
"ui:title": "Years"
}
}
}
}
}