33 lines
671 B
JSON

{
"definitions": {
"currency": {
"title": "Currency",
"type": "string",
"anyOf": [
"options_from_task_data_var:currency_enum_list"
]
}
},
"title": "Demand Request Items",
"description": "Itemized list of all items included in this demand request.",
"properties": {
"item": {
"type": "string",
"title": "Item",
"maxLength": 100
},
"qty": {
"type": "integer",
"title": "Qty"
},
"unit_price": {
"type": "number",
"title": "Unit Price"
},
"currency": {
"$ref": "#/definitions/currency",
"title": "Currency"
}
},
"required": ["item","qty","unit_price","currency"]
}