sample-process-models/misc/shared/currency/which-currency_JSONSchema.json

28 lines
515 B
JSON

{
"definitions": {
"currencyEnum": {
"title": "Currency",
"type": "string",
"anyOf": [
"options_from_task_data_var:enumerations_list"
]
}
},
"title": "Currency Formatting",
"description": "Formats a number based on the curreny code",
"type": "object",
"required": [
"curAmount",
"curCode"
],
"properties": {
"curAmount": {
"type": "integer",
"title": "Amount to be Formatted"
},
"curCode": {
"$ref": "#/definitions/currencyEnum",
"title": "Select Currency"
}
}
}