mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
43 lines
1019 B
JSON
43 lines
1019 B
JSON
|
{
|
||
|
"invoice": {
|
||
|
"contributorName": {
|
||
|
"ui:autofocus": true,
|
||
|
"ui:emptyValue": "",
|
||
|
"ui:placeholder": "First and Last Name"
|
||
|
},
|
||
|
"contributorId": {
|
||
|
"ui:placeholder": "Employee or Vendor ID"
|
||
|
},
|
||
|
"invoiceId": {
|
||
|
"ui:placeholder": "Enter the Status Invoice ID found in the upper left of the PDF to be uploaded"
|
||
|
},
|
||
|
"invoiceAmount": {
|
||
|
"ui:placeholder": "Based on available currencies"
|
||
|
},
|
||
|
"invoiceCurrency": {
|
||
|
"ui:placeholder": "Select payment currency"
|
||
|
},
|
||
|
"dueDate": {
|
||
|
"ui:widget": "date",
|
||
|
"ui:placeholder": "Invoices submitted before the 15th of the month will be paided on the 25th"
|
||
|
},
|
||
|
"ui:order": [
|
||
|
"contributorName",
|
||
|
"contributorId",
|
||
|
"invoiceId",
|
||
|
"invoiceAmount",
|
||
|
"invoiceCurrency",
|
||
|
"dueDate"
|
||
|
]
|
||
|
},
|
||
|
"filesAccept": {
|
||
|
"ui:help": "Click here to select file to upload",
|
||
|
"ui:options": {
|
||
|
"accept": ".pdf"
|
||
|
}
|
||
|
},
|
||
|
"ui:order": [
|
||
|
"invoice",
|
||
|
"filesAccept"
|
||
|
]
|
||
|
}
|