From eb08b223b8b19a0b58ef6b68161faa2a1c7c0d97 Mon Sep 17 00:00:00 2001 From: sartography-automated-committer Date: Fri, 2 Feb 2024 04:48:40 +0000 Subject: [PATCH] User: muhammadnouman@nutech.edu.pk clicked save for playground/nutech/issue/STCl-schema.json --- playground/nutech/issue/STCl-schema.json | 103 +++++++++++++++++++++-- 1 file changed, 94 insertions(+), 9 deletions(-) diff --git a/playground/nutech/issue/STCl-schema.json b/playground/nutech/issue/STCl-schema.json index 42d10c07..11ebc7b5 100644 --- a/playground/nutech/issue/STCl-schema.json +++ b/playground/nutech/issue/STCl-schema.json @@ -1,19 +1,104 @@ { - "title": "Store Clearance Form", - "description": "A larger resizable area to enter longer text. (field name will be 'bio')", + "title": "Issue Voucher", + "description": "Issue Voucher form for adding details of demand.", "type": "object", "required": [ - "firstName" + "issuevoucherno", + "issuevoucherdate", + "commodity", + "consignee", + "demandno", + "demanddate", + "catpartno", + "nomenclatures", + "a/u", + "demandtype", + "na no", + "auth no", + "remarks", + "cond", + "locator", + "aerial no", + "issueqty", + "demandqty" ], "properties": { - "firstName": { + "issuevoucherno": { "type": "string", - "title": "First name", - "default": "Chuck" + "title": "Issue Voucher No " }, - "bio": { + "issuevoucherdate": { "type": "string", - "title": "Bio" + "title": "Issue Voucher Date", + "format": "date" + }, + "commodity": { + "type": "integer", + "title": "Commodity" + }, + "consignee": { + "type": "string", + "title": "Consignee" + }, + "demandno": { + "type": "string", + "title": "Demand No" + }, + "demanddate": { + "type": "string", + "title": "Demand Date", + "format": "date" + }, + "catpartno": { + "type": "integer", + "title": "Cat Part No" + }, + "nomenclatures": { + "type": "string", + "title": "Nomenclature" + }, + "a/u": { + "type": "integer", + "title": "A/U" + }, + "demandtype": { + "type": "string", + "enum": ["control", "uncontrol"], + "title": "Demand Type" + }, + "na no": { + "type": "string", + "title": "NA Number", + "default": "Sys Gen" + }, + "auth no": { + "type": "string", + "title": "Auth Number", + "default": "Sys Gen" + }, + "remarks": { + "type": "string", + "title": "Remarks" + }, + "cond": { + "type": "string", + "title": "Cond" + }, + "locator": { + "type": "string", + "title": "Locator" + }, + "aerial no": { + "type": "integer", + "title": "Aerial No" + }, + "issueqty": { + "type": "integer", + "title": "Issue Qty" + }, + "demandqty": { + "type": "integer", + "title": "Demand Qty" } } -} \ No newline at end of file +}