File size: 44,872 Bytes
5ef1068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
[
  {
    "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}"
  }
]