mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
53 lines
904 B
JSON
53 lines
904 B
JSON
{
|
|
"definitions": {},
|
|
"type": "object",
|
|
"required": [
|
|
"filesAccept"
|
|
],
|
|
"properties": {
|
|
"invoice": {
|
|
"type": "object",
|
|
"required": [
|
|
"invoiceId",
|
|
"invoiceAmount",
|
|
"invoiceCurrency",
|
|
"dueDate"
|
|
],
|
|
"title": "",
|
|
"properties": {
|
|
"contributorName": {
|
|
"type": "string",
|
|
"title": "Contributor Name"
|
|
},
|
|
|
|
"contributorId": {
|
|
"type": "integer",
|
|
"title": "Contributor Id",
|
|
"minLength": 2
|
|
},
|
|
"invoiceId": {
|
|
"type": "integer",
|
|
"title": "Invoice Id",
|
|
"minLength": 4
|
|
},
|
|
"invoiceAmount": {
|
|
"type": "number",
|
|
"title": "Invoice Amount"
|
|
},
|
|
"dueDate": {
|
|
"type": "string",
|
|
"title": "Due Date"
|
|
},
|
|
"commentSubmitter": {
|
|
"type": "string",
|
|
"title": "Comment"
|
|
}
|
|
}
|
|
},
|
|
"filesAccept": {
|
|
"type": "string",
|
|
"format": "data-url",
|
|
"title": "Upload Invoice PDF"
|
|
}
|
|
}
|
|
} |