sample-process-models/misc/qa/forms/guest-form1/guest-form1-usertask2-schema.json

43 lines
916 B
JSON
Raw Normal View History

2024-07-15 10:51:00 -04:00
{
"properties": {
"po_details": {
"type": "object",
"required": [
"core_contributor_legal",
"item"
],
"title": "Expense report - coworking",
"description": "Upload expense evidence for coworking expenses you want to get reimbursement for",
"properties": {
"core_contributor_legal": {
"type": "string",
"title": "Legal (entity) name"
},
"item": {
"type": "array",
"title": "Please specify the goods or services you need",
"minItems": 1,
"items": {
"type": "object",
"title": "Item information",
"required": [
"merchant",
"supporting_file"
],
"properties": {
"merchant":{
"type": "string",
"title": "Vendor"
},
"supporting_file": {
"type": "string",
"title": "Supporting file",
"format": "data-url"
}
}
}
}
}
}
}
}