User: ciuser1 clicked save for execute-procure-to-pay/cc-invoice-approval-process/Submit-the-invoice_JSONSchema.json

This commit is contained in:
staging 2022-10-11 13:21:09 +00:00
parent e97bc270bc
commit 2e3fee3124

View File

@ -1,50 +1,50 @@
{
"definitions": {
"currencyEnum": {
"title":"Currency"
"type": "string",
"anyOf": [{
"options_from_task_data_var:currency_enum_options"
]
}
},
"title": "Submit Invoice",
"description": "Information for submitting an invoice.",
"type": "object",
"required": [
"invoice.contributorName",
"invoice.contributorId",
"invoice.invoiceId",
"invoice.invoiceAmount",
"invoice.invoiceCurrency",
"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": "number",
"title": "Invoice Amount"
},
"invoice.invoiceCurrency": {
"$ref": "#/definitions/currencyEnum",
"title": "Select Currency"
},
"invoice.dueDate": {
"type": "string",
"title": "Due Date"
}
}
"definitions": {
"currencyEnum": {
"title": "Currency",
"type": "string",
"anyOf": [
"options_from_task_data_var:currency_enum_options"
]
}
},
"title": "Submit Invoice",
"description": "Information for submitting an invoice.",
"type": "object",
"required": [
"invoice.contributorName",
"invoice.contributorId",
"invoice.invoiceId",
"invoice.invoiceAmount",
"invoice.invoiceCurrency",
"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": "number",
"title": "Invoice Amount"
},
"invoice.invoiceCurrency": {
"$ref": "#/definitions/currencyEnum",
"title": "Select Currency"
},
"invoice.dueDate": {
"type": "string",
"title": "Due Date"
}
}
}