36 lines
642 B
JSON
36 lines
642 B
JSON
{
|
|
"definitions": {
|
|
"currencyEnum": {
|
|
"title": "Currency",
|
|
"type": "string",
|
|
"anyOf": [
|
|
"options_from_task_data_var:enumerations_list"
|
|
]
|
|
}
|
|
},
|
|
"title": "Submit Invoice",
|
|
"description": "Information for submitting an invoice.",
|
|
"type": "object",
|
|
"required": [
|
|
],
|
|
"properties": {
|
|
"invoice": {
|
|
"type": "object",
|
|
"required": [
|
|
"invoiceCurrency"
|
|
],
|
|
"title": "",
|
|
"properties": {
|
|
"invoiceCurrency": {
|
|
"$ref": "#/definitions/currencyEnum",
|
|
"title": "Select Currency"
|
|
}
|
|
}
|
|
},
|
|
"filesAccept": {
|
|
"type": "string",
|
|
"format": "data-url",
|
|
"title": "Upload Invoice PDF"
|
|
}
|
|
}
|
|
} |