From ef5de2bbfce635e4c3707e23e13cd5b5bc0b569d Mon Sep 17 00:00:00 2001 From: sartography-automated-committer Date: Mon, 16 Jan 2023 18:58:04 +0000 Subject: [PATCH] User: alex@sartography.com added process model file manage-procurement/procurement/requisition-order-management/new-demand-request-procurement/demand-request-items-schema.json --- .../demand-request-items-schema.json | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 manage-procurement/procurement/requisition-order-management/new-demand-request-procurement/demand-request-items-schema.json diff --git a/manage-procurement/procurement/requisition-order-management/new-demand-request-procurement/demand-request-items-schema.json b/manage-procurement/procurement/requisition-order-management/new-demand-request-procurement/demand-request-items-schema.json new file mode 100644 index 00000000..28ce7081 --- /dev/null +++ b/manage-procurement/procurement/requisition-order-management/new-demand-request-procurement/demand-request-items-schema.json @@ -0,0 +1,33 @@ +{ + "title": "Demand Request Items", + "description": "Itemized list of all items included in this demand request.", + "type": "object", + "tasks": { + "type": "array", + "title": "Items", + "items": { + "type": "object", + "required": [ + "item", + "qty", + "unit-price" + ], + "properties": { + "item": { + "type": "string", + "title": "Item", + "description": "Name of item to be purchased" + }, + "qty": { + "type": "number", + "title": "Qty", + "description": "Number of items" + }, + "unit-price": { + "type": "number", + "title": "Unit Price" + } + } + } + } +} \ No newline at end of file