sample-process-models/misc/demo/demo-preload/demo-preload_JSONSchema.json

28 lines
600 B
JSON

{
"title": "Submit Invoice",
"description": "Configuration options for submitting an invoice.",
"type": "object",
"properties": {
"ValidationChoices": {
"type": "array",
"title": "Select validation options",
"items": {
"type": "string",
"enum": [
" Number in contributor name",
" Too many decimals in invoice amount",
" Due date before today's date"
]
},
"uniqueItems": true
},
"scenarioChoices": {
"type": "string",
"title": "Select Currency",
"enum": [
" Correct invoice amount",
" incorrect invoice amount"
]
}
}
}