diff --git a/playground/dinithi/test-business-rule-task/IceCreamForm-schema.json b/playground/dinithi/test-business-rule-task/IceCreamForm-schema.json index 47ac1b4f..7103f8ee 100644 --- a/playground/dinithi/test-business-rule-task/IceCreamForm-schema.json +++ b/playground/dinithi/test-business-rule-task/IceCreamForm-schema.json @@ -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" + } + } } \ No newline at end of file diff --git a/playground/dinithi/test-business-rule-task/IceCreamForm-uischema.json b/playground/dinithi/test-business-rule-task/IceCreamForm-uischema.json index 9e26dfee..980c342c 100644 --- a/playground/dinithi/test-business-rule-task/IceCreamForm-uischema.json +++ b/playground/dinithi/test-business-rule-task/IceCreamForm-uischema.json @@ -1 +1,8 @@ -{} \ No newline at end of file +{ + "ui:order": [ + "flavor", + "cashew", + "peanut", + "chocolate_sprinkles" + ] +} \ No newline at end of file