sample-process-models/misc/category_number_one/pdf-to-aws/schema.json

41 lines
837 B
JSON
Raw Normal View History

2022-10-14 02:03:02 +00:00
{
"title": "Submit Invoice",
"description": "Information for submitting an invoice.",
"type": "object",
"required": [
"invoice.contributorName",
"invoice.contributorId",
"invoice.invoiceId",
"invoice.invoiceAmount",
"invoice.dueDate"
],
"properties": {
"invoice.contributorName": {
"type": "string",
"title": "Contributor Name"
},
"invoice.contributorId": {
"type": "integer",
"title": "Contributor Id",
"minLength": 2
},
"invoice.invoiceId": {
"type": "integer",
"title": "Invoice Id",
"minLength": 4
},
"invoice.invoiceAmount": {
"type": "string",
"title": "Invoice Amount"
},
"invoice.dueDate": {
"type": "string",
"title": "Due Date"
},
"filesAccept": {
"type": "string",
"format": "data-url",
"title": "Upload Invoice PDF"
}
}
}