shankerhrm commited on
Commit
5ef1068
·
verified ·
1 Parent(s): 5a3d998

Upload train_data4gpt.json

Browse files
Files changed (1) hide show
  1. train_data4gpt.json +270 -0
train_data4gpt.json ADDED
@@ -0,0 +1,270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.",
4
+ "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}"
5
+ },
6
+ {
7
+ "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.",
8
+ "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}"
9
+ },
10
+ {
11
+ "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.",
12
+ "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}"
13
+ },
14
+ {
15
+ "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.",
16
+ "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}"
17
+ },
18
+ {
19
+ "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.",
20
+ "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}"
21
+ },
22
+ {
23
+ "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.",
24
+ "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}"
25
+ },
26
+ {
27
+ "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.",
28
+ "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}"
29
+ },
30
+ {
31
+ "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.",
32
+ "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}"
33
+ },
34
+ {
35
+ "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.",
36
+ "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}"
37
+ },
38
+ {
39
+ "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.",
40
+ "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}"
41
+ },
42
+ {
43
+ "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.",
44
+ "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}"
45
+ },
46
+ {
47
+ "input": "Create a form for account group with fields like group_code, group_name, description.",
48
+ "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}"
49
+ },
50
+ {
51
+ "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.",
52
+ "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}"
53
+ },
54
+ {
55
+ "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.",
56
+ "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}"
57
+ },
58
+ {
59
+ "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.",
60
+ "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}"
61
+ },
62
+ {
63
+ "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.",
64
+ "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}"
65
+ },
66
+ {
67
+ "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.",
68
+ "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}"
69
+ },
70
+ {
71
+ "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.",
72
+ "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}"
73
+ },
74
+ {
75
+ "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.",
76
+ "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}"
77
+ },
78
+ {
79
+ "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.",
80
+ "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}"
81
+ },
82
+ {
83
+ "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.",
84
+ "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}"
85
+ },
86
+ {
87
+ "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.",
88
+ "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}"
89
+ },
90
+ {
91
+ "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.",
92
+ "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}"
93
+ },
94
+ {
95
+ "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.",
96
+ "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}"
97
+ },
98
+ {
99
+ "input": "Create a form for account group with fields like group_code, group_name, description.",
100
+ "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}"
101
+ },
102
+ {
103
+ "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.",
104
+ "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}"
105
+ },
106
+ {
107
+ "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.",
108
+ "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}"
109
+ },
110
+ {
111
+ "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.",
112
+ "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}"
113
+ },
114
+ {
115
+ "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.",
116
+ "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}"
117
+ },
118
+ {
119
+ "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.",
120
+ "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}"
121
+ },
122
+ {
123
+ "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.",
124
+ "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}"
125
+ },
126
+ {
127
+ "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.",
128
+ "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}"
129
+ },
130
+ {
131
+ "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.",
132
+ "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}"
133
+ },
134
+ {
135
+ "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.",
136
+ "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}"
137
+ },
138
+ {
139
+ "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.",
140
+ "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}"
141
+ },
142
+ {
143
+ "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.",
144
+ "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}"
145
+ },
146
+ {
147
+ "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.",
148
+ "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}"
149
+ },
150
+ {
151
+ "input": "Create a form for account group with fields like group_code, group_name, description.",
152
+ "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}"
153
+ },
154
+ {
155
+ "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.",
156
+ "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}"
157
+ },
158
+ {
159
+ "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.",
160
+ "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}"
161
+ },
162
+ {
163
+ "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.",
164
+ "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}"
165
+ },
166
+ {
167
+ "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.",
168
+ "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}"
169
+ },
170
+ {
171
+ "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.",
172
+ "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}"
173
+ },
174
+ {
175
+ "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.",
176
+ "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}"
177
+ },
178
+ {
179
+ "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.",
180
+ "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}"
181
+ },
182
+ {
183
+ "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.",
184
+ "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}"
185
+ },
186
+ {
187
+ "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.",
188
+ "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}"
189
+ },
190
+ {
191
+ "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.",
192
+ "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}"
193
+ },
194
+ {
195
+ "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.",
196
+ "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}"
197
+ },
198
+ {
199
+ "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.",
200
+ "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}"
201
+ },
202
+ {
203
+ "input": "Create a form for account group with fields like group_code, group_name, description.",
204
+ "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}"
205
+ },
206
+ {
207
+ "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.",
208
+ "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}"
209
+ },
210
+ {
211
+ "input": "Create a form for general ledger with fields like account_number, account_name, debit, credit, date.",
212
+ "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}"
213
+ },
214
+ {
215
+ "input": "Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.",
216
+ "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}"
217
+ },
218
+ {
219
+ "input": "Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date.",
220
+ "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}"
221
+ },
222
+ {
223
+ "input": "Create a form for item master with fields like item_code, item_name, description, price, stock_quantity.",
224
+ "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}"
225
+ },
226
+ {
227
+ "input": "Create a form for tax master with fields like tax_code, tax_name, rate, description.",
228
+ "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}"
229
+ },
230
+ {
231
+ "input": "Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value.",
232
+ "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}"
233
+ },
234
+ {
235
+ "input": "Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name.",
236
+ "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}"
237
+ },
238
+ {
239
+ "input": "Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date.",
240
+ "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}"
241
+ },
242
+ {
243
+ "input": "Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date.",
244
+ "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}"
245
+ },
246
+ {
247
+ "input": "Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date.",
248
+ "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}"
249
+ },
250
+ {
251
+ "input": "Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary.",
252
+ "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}"
253
+ },
254
+ {
255
+ "input": "Create a form for account group with fields like group_code, group_name, description.",
256
+ "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}"
257
+ },
258
+ {
259
+ "input": "Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date.",
260
+ "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}"
261
+ },
262
+ {
263
+ "input": "Create a JSON schema for a sales invoice with fields like invoice_number, customer_name, item, quantity, price, date.",
264
+ "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}"
265
+ },
266
+ {
267
+ "input": "Create a JSON schema for a user registration form with fields like username, password, email, and birthdate.",
268
+ "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}"
269
+ }
270
+ ]