User: dinithijonline@gmail.com added process model file playground/dinithi/test-business-rule-task/IceCreamForm-schema.json

This commit is contained in:
sartography-automated-committer 2023-09-12 05:38:32 +00:00
parent d36fabff90
commit d3169a87a9
2 changed files with 33 additions and 16 deletions

View File

@ -1,16 +1,26 @@
{
"title": "Pick Your ICE CREAM Choice",
"properties" : {
"flavor" : {
"title" : "Flavor",
"type":"string",
"enum": [
"Vanila",
"Strawberry",
"Chocolate"
]
}
}
{
"title": "Pick Your ICE CREAM Choice",
"properties": {
"flavor": {
"type": "string",
"title": "Flavor",
"enum": [
"Vanila",
"Strawberry",
"Chocolate"
]
},
"cashew": {
"type": "boolean",
"title": "Cashew"
},
"peanut": {
"type": "string",
"title": "Peanut"
},
"chocolate_sprinkles": {
"type": "boolean",
"title": "chocolate sprinkles"
}
}
}

View File

@ -1 +1,8 @@
{}
{
"ui:order": [
"flavor",
"cashew",
"peanut",
"chocolate_sprinkles"
]
}