demo-process-models/playground/nutech/issue2/manualchecking-schema.json

24 lines
436 B
JSON

{
"title": "Create Issue Voucher",
"type": "object",
"properties": {
"issue_voucher_number": {
"type": "string",
"title": "Issue Voucher Number",
"maxLength": 12,
"unique": true,
"ui:autofocus": true
},
// ... (existing properties)
"documents_collected": {
"type": "string",
"title": "Documents Collected",
"enum": [
"Yes",
"No"
]
}
}
}