| [ | |
| { | |
| "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.", | |
| "output": "{\n \"title\": \"General Ledger\",\n \"type\": \"object\",\n \"properties\": {\n \"account_number\": {\n \"type\": \"string\"\n },\n \"account_name\": {\n \"type\": \"string\"\n },\n \"debit\": {\n \"type\": \"number\"\n },\n \"credit\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"account_number\",\n \"account_name\",\n \"debit\",\n \"credit\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Sales Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"customer_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"supplier_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.", | |
| "output": "{\n \"title\": \"Item Master\",\n \"type\": \"object\",\n \"properties\": {\n \"item_code\": {\n \"type\": \"string\"\n },\n \"item_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"stock_quantity\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"item_code\",\n \"item_name\",\n \"description\",\n \"price\",\n \"stock_quantity\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.", | |
| "output": "{\n \"title\": \"Tax Master\",\n \"type\": \"object\",\n \"properties\": {\n \"tax_code\": {\n \"type\": \"string\"\n },\n \"tax_name\": {\n \"type\": \"string\"\n },\n \"rate\": {\n \"type\": \"number\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"tax_code\",\n \"tax_name\",\n \"rate\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.", | |
| "output": "{\n \"title\": \"Assets Master\",\n \"type\": \"object\",\n \"properties\": {\n \"asset_code\": {\n \"type\": \"string\"\n },\n \"asset_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"purchase_date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"asset_code\",\n \"asset_name\",\n \"description\",\n \"purchase_date\",\n \"value\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.", | |
| "output": "{\n \"title\": \"Item Inward\",\n \"type\": \"object\",\n \"properties\": {\n \"inward_number\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"inward_number\",\n \"item_code\",\n \"quantity\",\n \"date\",\n \"supplier_name\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Sale Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"customer_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Purchase Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase\",\n \"type\": \"object\",\n \"properties\": {\n \"purchase_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"purchase_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.", | |
| "output": "{\n \"title\": \"Employee Master\",\n \"type\": \"object\",\n \"properties\": {\n \"employee_id\": {\n \"type\": \"string\"\n },\n \"employee_name\": {\n \"type\": \"string\"\n },\n \"designation\": {\n \"type\": \"string\"\n },\n \"date_of_joining\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"salary\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"employee_id\",\n \"employee_name\",\n \"designation\",\n \"date_of_joining\",\n \"salary\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for account group with fields like group_code, group_name, description.", | |
| "output": "{\n \"title\": \"Account Group\",\n \"type\": \"object\",\n \"properties\": {\n \"group_code\": {\n \"type\": \"string\"\n },\n \"group_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group_code\",\n \"group_name\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.", | |
| "output": "{\n \"title\": \"Maintenance Check List\",\n \"type\": \"object\",\n \"properties\": {\n \"checklist_id\": {\n \"type\": \"string\"\n },\n \"checklist_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"checklist_id\",\n \"checklist_name\",\n \"description\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.", | |
| "output": "{\n \"title\": \"General Ledger\",\n \"type\": \"object\",\n \"properties\": {\n \"account_number\": {\n \"type\": \"string\"\n },\n \"account_name\": {\n \"type\": \"string\"\n },\n \"debit\": {\n \"type\": \"number\"\n },\n \"credit\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"account_number\",\n \"account_name\",\n \"debit\",\n \"credit\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Sales Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"customer_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"supplier_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.", | |
| "output": "{\n \"title\": \"Item Master\",\n \"type\": \"object\",\n \"properties\": {\n \"item_code\": {\n \"type\": \"string\"\n },\n \"item_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"stock_quantity\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"item_code\",\n \"item_name\",\n \"description\",\n \"price\",\n \"stock_quantity\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.", | |
| "output": "{\n \"title\": \"Tax Master\",\n \"type\": \"object\",\n \"properties\": {\n \"tax_code\": {\n \"type\": \"string\"\n },\n \"tax_name\": {\n \"type\": \"string\"\n },\n \"rate\": {\n \"type\": \"number\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"tax_code\",\n \"tax_name\",\n \"rate\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.", | |
| "output": "{\n \"title\": \"Assets Master\",\n \"type\": \"object\",\n \"properties\": {\n \"asset_code\": {\n \"type\": \"string\"\n },\n \"asset_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"purchase_date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"asset_code\",\n \"asset_name\",\n \"description\",\n \"purchase_date\",\n \"value\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.", | |
| "output": "{\n \"title\": \"Item Inward\",\n \"type\": \"object\",\n \"properties\": {\n \"inward_number\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"inward_number\",\n \"item_code\",\n \"quantity\",\n \"date\",\n \"supplier_name\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Sale Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"customer_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Purchase Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase\",\n \"type\": \"object\",\n \"properties\": {\n \"purchase_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"purchase_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.", | |
| "output": "{\n \"title\": \"Employee Master\",\n \"type\": \"object\",\n \"properties\": {\n \"employee_id\": {\n \"type\": \"string\"\n },\n \"employee_name\": {\n \"type\": \"string\"\n },\n \"designation\": {\n \"type\": \"string\"\n },\n \"date_of_joining\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"salary\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"employee_id\",\n \"employee_name\",\n \"designation\",\n \"date_of_joining\",\n \"salary\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for account group with fields like group_code, group_name, description.", | |
| "output": "{\n \"title\": \"Account Group\",\n \"type\": \"object\",\n \"properties\": {\n \"group_code\": {\n \"type\": \"string\"\n },\n \"group_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group_code\",\n \"group_name\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.", | |
| "output": "{\n \"title\": \"Maintenance Check List\",\n \"type\": \"object\",\n \"properties\": {\n \"checklist_id\": {\n \"type\": \"string\"\n },\n \"checklist_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"checklist_id\",\n \"checklist_name\",\n \"description\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.", | |
| "output": "{\n \"title\": \"General Ledger\",\n \"type\": \"object\",\n \"properties\": {\n \"account_number\": {\n \"type\": \"string\"\n },\n \"account_name\": {\n \"type\": \"string\"\n },\n \"debit\": {\n \"type\": \"number\"\n },\n \"credit\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"account_number\",\n \"account_name\",\n \"debit\",\n \"credit\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Sales Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"customer_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"supplier_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.", | |
| "output": "{\n \"title\": \"Item Master\",\n \"type\": \"object\",\n \"properties\": {\n \"item_code\": {\n \"type\": \"string\"\n },\n \"item_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"stock_quantity\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"item_code\",\n \"item_name\",\n \"description\",\n \"price\",\n \"stock_quantity\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.", | |
| "output": "{\n \"title\": \"Tax Master\",\n \"type\": \"object\",\n \"properties\": {\n \"tax_code\": {\n \"type\": \"string\"\n },\n \"tax_name\": {\n \"type\": \"string\"\n },\n \"rate\": {\n \"type\": \"number\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"tax_code\",\n \"tax_name\",\n \"rate\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.", | |
| "output": "{\n \"title\": \"Assets Master\",\n \"type\": \"object\",\n \"properties\": {\n \"asset_code\": {\n \"type\": \"string\"\n },\n \"asset_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"purchase_date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"asset_code\",\n \"asset_name\",\n \"description\",\n \"purchase_date\",\n \"value\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.", | |
| "output": "{\n \"title\": \"Item Inward\",\n \"type\": \"object\",\n \"properties\": {\n \"inward_number\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"inward_number\",\n \"item_code\",\n \"quantity\",\n \"date\",\n \"supplier_name\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Sale Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"customer_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Purchase Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase\",\n \"type\": \"object\",\n \"properties\": {\n \"purchase_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"purchase_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.", | |
| "output": "{\n \"title\": \"Employee Master\",\n \"type\": \"object\",\n \"properties\": {\n \"employee_id\": {\n \"type\": \"string\"\n },\n \"employee_name\": {\n \"type\": \"string\"\n },\n \"designation\": {\n \"type\": \"string\"\n },\n \"date_of_joining\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"salary\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"employee_id\",\n \"employee_name\",\n \"designation\",\n \"date_of_joining\",\n \"salary\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for account group with fields like group_code, group_name, description.", | |
| "output": "{\n \"title\": \"Account Group\",\n \"type\": \"object\",\n \"properties\": {\n \"group_code\": {\n \"type\": \"string\"\n },\n \"group_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group_code\",\n \"group_name\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.", | |
| "output": "{\n \"title\": \"Maintenance Check List\",\n \"type\": \"object\",\n \"properties\": {\n \"checklist_id\": {\n \"type\": \"string\"\n },\n \"checklist_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"checklist_id\",\n \"checklist_name\",\n \"description\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.", | |
| "output": "{\n \"title\": \"General Ledger\",\n \"type\": \"object\",\n \"properties\": {\n \"account_number\": {\n \"type\": \"string\"\n },\n \"account_name\": {\n \"type\": \"string\"\n },\n \"debit\": {\n \"type\": \"number\"\n },\n \"credit\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"account_number\",\n \"account_name\",\n \"debit\",\n \"credit\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Sales Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"customer_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"supplier_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.", | |
| "output": "{\n \"title\": \"Item Master\",\n \"type\": \"object\",\n \"properties\": {\n \"item_code\": {\n \"type\": \"string\"\n },\n \"item_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"stock_quantity\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"item_code\",\n \"item_name\",\n \"description\",\n \"price\",\n \"stock_quantity\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.", | |
| "output": "{\n \"title\": \"Tax Master\",\n \"type\": \"object\",\n \"properties\": {\n \"tax_code\": {\n \"type\": \"string\"\n },\n \"tax_name\": {\n \"type\": \"string\"\n },\n \"rate\": {\n \"type\": \"number\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"tax_code\",\n \"tax_name\",\n \"rate\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.", | |
| "output": "{\n \"title\": \"Assets Master\",\n \"type\": \"object\",\n \"properties\": {\n \"asset_code\": {\n \"type\": \"string\"\n },\n \"asset_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"purchase_date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"asset_code\",\n \"asset_name\",\n \"description\",\n \"purchase_date\",\n \"value\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.", | |
| "output": "{\n \"title\": \"Item Inward\",\n \"type\": \"object\",\n \"properties\": {\n \"inward_number\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"inward_number\",\n \"item_code\",\n \"quantity\",\n \"date\",\n \"supplier_name\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Sale Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"customer_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Purchase Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase\",\n \"type\": \"object\",\n \"properties\": {\n \"purchase_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"purchase_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.", | |
| "output": "{\n \"title\": \"Employee Master\",\n \"type\": \"object\",\n \"properties\": {\n \"employee_id\": {\n \"type\": \"string\"\n },\n \"employee_name\": {\n \"type\": \"string\"\n },\n \"designation\": {\n \"type\": \"string\"\n },\n \"date_of_joining\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"salary\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"employee_id\",\n \"employee_name\",\n \"designation\",\n \"date_of_joining\",\n \"salary\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for account group with fields like group_code, group_name, description.", | |
| "output": "{\n \"title\": \"Account Group\",\n \"type\": \"object\",\n \"properties\": {\n \"group_code\": {\n \"type\": \"string\"\n },\n \"group_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group_code\",\n \"group_name\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.", | |
| "output": "{\n \"title\": \"Maintenance Check List\",\n \"type\": \"object\",\n \"properties\": {\n \"checklist_id\": {\n \"type\": \"string\"\n },\n \"checklist_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"checklist_id\",\n \"checklist_name\",\n \"description\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.", | |
| "output": "{\n \"title\": \"General Ledger\",\n \"type\": \"object\",\n \"properties\": {\n \"account_number\": {\n \"type\": \"string\"\n },\n \"account_name\": {\n \"type\": \"string\"\n },\n \"debit\": {\n \"type\": \"number\"\n },\n \"credit\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"account_number\",\n \"account_name\",\n \"debit\",\n \"credit\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Sales Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"customer_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"supplier_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.", | |
| "output": "{\n \"title\": \"Item Master\",\n \"type\": \"object\",\n \"properties\": {\n \"item_code\": {\n \"type\": \"string\"\n },\n \"item_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"stock_quantity\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"item_code\",\n \"item_name\",\n \"description\",\n \"price\",\n \"stock_quantity\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.", | |
| "output": "{\n \"title\": \"Tax Master\",\n \"type\": \"object\",\n \"properties\": {\n \"tax_code\": {\n \"type\": \"string\"\n },\n \"tax_name\": {\n \"type\": \"string\"\n },\n \"rate\": {\n \"type\": \"number\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"tax_code\",\n \"tax_name\",\n \"rate\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.", | |
| "output": "{\n \"title\": \"Assets Master\",\n \"type\": \"object\",\n \"properties\": {\n \"asset_code\": {\n \"type\": \"string\"\n },\n \"asset_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"purchase_date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"value\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"asset_code\",\n \"asset_name\",\n \"description\",\n \"purchase_date\",\n \"value\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.", | |
| "output": "{\n \"title\": \"Item Inward\",\n \"type\": \"object\",\n \"properties\": {\n \"inward_number\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"inward_number\",\n \"item_code\",\n \"quantity\",\n \"date\",\n \"supplier_name\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Sale Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"customer_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.", | |
| "output": "{\n \"title\": \"Purchase Order\",\n \"type\": \"object\",\n \"properties\": {\n \"order_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"order_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.", | |
| "output": "{\n \"title\": \"Purchase\",\n \"type\": \"object\",\n \"properties\": {\n \"purchase_number\": {\n \"type\": \"string\"\n },\n \"supplier_name\": {\n \"type\": \"string\"\n },\n \"item_code\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"purchase_number\",\n \"supplier_name\",\n \"item_code\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.", | |
| "output": "{\n \"title\": \"Employee Master\",\n \"type\": \"object\",\n \"properties\": {\n \"employee_id\": {\n \"type\": \"string\"\n },\n \"employee_name\": {\n \"type\": \"string\"\n },\n \"designation\": {\n \"type\": \"string\"\n },\n \"date_of_joining\": {\n \"type\": \"string\",\n \"format\": \"date\"\n },\n \"salary\": {\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"employee_id\",\n \"employee_name\",\n \"designation\",\n \"date_of_joining\",\n \"salary\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for account group with fields like group_code, group_name, description.", | |
| "output": "{\n \"title\": \"Account Group\",\n \"type\": \"object\",\n \"properties\": {\n \"group_code\": {\n \"type\": \"string\"\n },\n \"group_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group_code\",\n \"group_name\",\n \"description\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.", | |
| "output": "{\n \"title\": \"Maintenance Check List\",\n \"type\": \"object\",\n \"properties\": {\n \"checklist_id\": {\n \"type\": \"string\"\n },\n \"checklist_name\": {\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"checklist_id\",\n \"checklist_name\",\n \"description\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a JSON schema for a sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.", | |
| "output": "{\n \"title\": \"Sales Invoice\",\n \"type\": \"object\",\n \"properties\": {\n \"invoice_number\": {\n \"type\": \"string\"\n },\n \"customer_name\": {\n \"type\": \"string\"\n },\n \"item\": {\n \"type\": \"string\"\n },\n \"quantity\": {\n \"type\": \"number\"\n },\n \"price\": {\n \"type\": \"number\"\n },\n \"date\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"invoice_number\",\n \"customer_name\",\n \"item\",\n \"quantity\",\n \"price\",\n \"date\"\n ]\n}" | |
| }, | |
| { | |
| "input": "Create a JSON schema for a user registration form with fields like username, password, email, and birthdate.", | |
| "output": "{\n \"title\": \"User Registration\",\n \"type\": \"object\",\n \"properties\": {\n \"username\": {\n \"type\": \"string\"\n },\n \"password\": {\n \"type\": \"string\"\n },\n \"email\": {\n \"type\": \"string\",\n \"format\": \"email\"\n },\n \"birthdate\": {\n \"type\": \"string\",\n \"format\": \"date\"\n }\n },\n \"required\": [\n \"username\",\n \"password\",\n \"email\",\n \"birthdate\"\n ]\n}" | |
| } | |
| ] |