demo-process-models/playground/nutech/issue/Check box-schema.json

105 lines
2.0 KiB
JSON

{
"title": "Issue Voucher",
"description": "Issue Voucher form for adding details of demand.",
"type": "object",
"required": [
"issuevoucherno",
"issuevoucherdate",
"commodity",
"consignee",
"demandno",
"demanddate",
"catpartno",
"nomenclatures",
"a/u",
"demandtype",
"na no",
"auth no",
"remarks",
"cond",
"locator",
"aerial no",
"issueqty",
"demandqty"
],
"properties": {
"issuevoucherno": {
"type": "string",
"title": "Issue Voucher No "
},
"issuevoucherdate": {
"type": "string",
"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"
}
}
}