input
stringlengths 84
117
| output
stringlengths 298
507
|
---|---|
Create a form for general ledger with fields like account_number, account_name, debit, credit, date. | {
"title": "General Ledger",
"type": "object",
"properties": {
"account_number": {
"type": "string"
},
"account_name": {
"type": "string"
},
"debit": {
"type": "number"
},
"credit": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"account_number",
"account_name",
"debit",
"credit",
"date"
]
} |
Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date. | {
"title": "Sales Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"customer_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date. | {
"title": "Purchase Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"supplier_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for item master with fields like item_code, item_name, description, price, stock_quantity. | {
"title": "Item Master",
"type": "object",
"properties": {
"item_code": {
"type": "string"
},
"item_name": {
"type": "string"
},
"description": {
"type": "string"
},
"price": {
"type": "number"
},
"stock_quantity": {
"type": "number"
}
},
"required": [
"item_code",
"item_name",
"description",
"price",
"stock_quantity"
]
} |
Create a form for tax master with fields like tax_code, tax_name, rate, description. | {
"title": "Tax Master",
"type": "object",
"properties": {
"tax_code": {
"type": "string"
},
"tax_name": {
"type": "string"
},
"rate": {
"type": "number"
},
"description": {
"type": "string"
}
},
"required": [
"tax_code",
"tax_name",
"rate",
"description"
]
} |
Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value. | {
"title": "Assets Master",
"type": "object",
"properties": {
"asset_code": {
"type": "string"
},
"asset_name": {
"type": "string"
},
"description": {
"type": "string"
},
"purchase_date": {
"type": "string",
"format": "date"
},
"value": {
"type": "number"
}
},
"required": [
"asset_code",
"asset_name",
"description",
"purchase_date",
"value"
]
} |
Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name. | {
"title": "Item Inward",
"type": "object",
"properties": {
"inward_number": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
},
"supplier_name": {
"type": "string"
}
},
"required": [
"inward_number",
"item_code",
"quantity",
"date",
"supplier_name"
]
} |
Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date. | {
"title": "Sale Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"customer_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date. | {
"title": "Purchase Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"supplier_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date. | {
"title": "Purchase",
"type": "object",
"properties": {
"purchase_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"purchase_number",
"supplier_name",
"item_code",
"quantity",
"price",
"date"
]
} |
Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary. | {
"title": "Employee Master",
"type": "object",
"properties": {
"employee_id": {
"type": "string"
},
"employee_name": {
"type": "string"
},
"designation": {
"type": "string"
},
"date_of_joining": {
"type": "string",
"format": "date"
},
"salary": {
"type": "number"
}
},
"required": [
"employee_id",
"employee_name",
"designation",
"date_of_joining",
"salary"
]
} |
Create a form for account group with fields like group_code, group_name, description. | {
"title": "Account Group",
"type": "object",
"properties": {
"group_code": {
"type": "string"
},
"group_name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"group_code",
"group_name",
"description"
]
} |
Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date. | {
"title": "Maintenance Check List",
"type": "object",
"properties": {
"checklist_id": {
"type": "string"
},
"checklist_name": {
"type": "string"
},
"description": {
"type": "string"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"checklist_id",
"checklist_name",
"description",
"date"
]
} |
Create a form for general ledger with fields like account_number, account_name, debit, credit, date. | {
"title": "General Ledger",
"type": "object",
"properties": {
"account_number": {
"type": "string"
},
"account_name": {
"type": "string"
},
"debit": {
"type": "number"
},
"credit": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"account_number",
"account_name",
"debit",
"credit",
"date"
]
} |
Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date. | {
"title": "Sales Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"customer_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date. | {
"title": "Purchase Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"supplier_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for item master with fields like item_code, item_name, description, price, stock_quantity. | {
"title": "Item Master",
"type": "object",
"properties": {
"item_code": {
"type": "string"
},
"item_name": {
"type": "string"
},
"description": {
"type": "string"
},
"price": {
"type": "number"
},
"stock_quantity": {
"type": "number"
}
},
"required": [
"item_code",
"item_name",
"description",
"price",
"stock_quantity"
]
} |
Create a form for tax master with fields like tax_code, tax_name, rate, description. | {
"title": "Tax Master",
"type": "object",
"properties": {
"tax_code": {
"type": "string"
},
"tax_name": {
"type": "string"
},
"rate": {
"type": "number"
},
"description": {
"type": "string"
}
},
"required": [
"tax_code",
"tax_name",
"rate",
"description"
]
} |
Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value. | {
"title": "Assets Master",
"type": "object",
"properties": {
"asset_code": {
"type": "string"
},
"asset_name": {
"type": "string"
},
"description": {
"type": "string"
},
"purchase_date": {
"type": "string",
"format": "date"
},
"value": {
"type": "number"
}
},
"required": [
"asset_code",
"asset_name",
"description",
"purchase_date",
"value"
]
} |
Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name. | {
"title": "Item Inward",
"type": "object",
"properties": {
"inward_number": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
},
"supplier_name": {
"type": "string"
}
},
"required": [
"inward_number",
"item_code",
"quantity",
"date",
"supplier_name"
]
} |
Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date. | {
"title": "Sale Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"customer_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date. | {
"title": "Purchase Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"supplier_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date. | {
"title": "Purchase",
"type": "object",
"properties": {
"purchase_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"purchase_number",
"supplier_name",
"item_code",
"quantity",
"price",
"date"
]
} |
Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary. | {
"title": "Employee Master",
"type": "object",
"properties": {
"employee_id": {
"type": "string"
},
"employee_name": {
"type": "string"
},
"designation": {
"type": "string"
},
"date_of_joining": {
"type": "string",
"format": "date"
},
"salary": {
"type": "number"
}
},
"required": [
"employee_id",
"employee_name",
"designation",
"date_of_joining",
"salary"
]
} |
Create a form for account group with fields like group_code, group_name, description. | {
"title": "Account Group",
"type": "object",
"properties": {
"group_code": {
"type": "string"
},
"group_name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"group_code",
"group_name",
"description"
]
} |
Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date. | {
"title": "Maintenance Check List",
"type": "object",
"properties": {
"checklist_id": {
"type": "string"
},
"checklist_name": {
"type": "string"
},
"description": {
"type": "string"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"checklist_id",
"checklist_name",
"description",
"date"
]
} |
Create a form for general ledger with fields like account_number, account_name, debit, credit, date. | {
"title": "General Ledger",
"type": "object",
"properties": {
"account_number": {
"type": "string"
},
"account_name": {
"type": "string"
},
"debit": {
"type": "number"
},
"credit": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"account_number",
"account_name",
"debit",
"credit",
"date"
]
} |
Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date. | {
"title": "Sales Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"customer_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date. | {
"title": "Purchase Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"supplier_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for item master with fields like item_code, item_name, description, price, stock_quantity. | {
"title": "Item Master",
"type": "object",
"properties": {
"item_code": {
"type": "string"
},
"item_name": {
"type": "string"
},
"description": {
"type": "string"
},
"price": {
"type": "number"
},
"stock_quantity": {
"type": "number"
}
},
"required": [
"item_code",
"item_name",
"description",
"price",
"stock_quantity"
]
} |
Create a form for tax master with fields like tax_code, tax_name, rate, description. | {
"title": "Tax Master",
"type": "object",
"properties": {
"tax_code": {
"type": "string"
},
"tax_name": {
"type": "string"
},
"rate": {
"type": "number"
},
"description": {
"type": "string"
}
},
"required": [
"tax_code",
"tax_name",
"rate",
"description"
]
} |
Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value. | {
"title": "Assets Master",
"type": "object",
"properties": {
"asset_code": {
"type": "string"
},
"asset_name": {
"type": "string"
},
"description": {
"type": "string"
},
"purchase_date": {
"type": "string",
"format": "date"
},
"value": {
"type": "number"
}
},
"required": [
"asset_code",
"asset_name",
"description",
"purchase_date",
"value"
]
} |
Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name. | {
"title": "Item Inward",
"type": "object",
"properties": {
"inward_number": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
},
"supplier_name": {
"type": "string"
}
},
"required": [
"inward_number",
"item_code",
"quantity",
"date",
"supplier_name"
]
} |
Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date. | {
"title": "Sale Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"customer_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date. | {
"title": "Purchase Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"supplier_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date. | {
"title": "Purchase",
"type": "object",
"properties": {
"purchase_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"purchase_number",
"supplier_name",
"item_code",
"quantity",
"price",
"date"
]
} |
Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary. | {
"title": "Employee Master",
"type": "object",
"properties": {
"employee_id": {
"type": "string"
},
"employee_name": {
"type": "string"
},
"designation": {
"type": "string"
},
"date_of_joining": {
"type": "string",
"format": "date"
},
"salary": {
"type": "number"
}
},
"required": [
"employee_id",
"employee_name",
"designation",
"date_of_joining",
"salary"
]
} |
Create a form for account group with fields like group_code, group_name, description. | {
"title": "Account Group",
"type": "object",
"properties": {
"group_code": {
"type": "string"
},
"group_name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"group_code",
"group_name",
"description"
]
} |
Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date. | {
"title": "Maintenance Check List",
"type": "object",
"properties": {
"checklist_id": {
"type": "string"
},
"checklist_name": {
"type": "string"
},
"description": {
"type": "string"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"checklist_id",
"checklist_name",
"description",
"date"
]
} |
Create a form for general ledger with fields like account_number, account_name, debit, credit, date. | {
"title": "General Ledger",
"type": "object",
"properties": {
"account_number": {
"type": "string"
},
"account_name": {
"type": "string"
},
"debit": {
"type": "number"
},
"credit": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"account_number",
"account_name",
"debit",
"credit",
"date"
]
} |
Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date. | {
"title": "Sales Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"customer_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date. | {
"title": "Purchase Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"supplier_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for item master with fields like item_code, item_name, description, price, stock_quantity. | {
"title": "Item Master",
"type": "object",
"properties": {
"item_code": {
"type": "string"
},
"item_name": {
"type": "string"
},
"description": {
"type": "string"
},
"price": {
"type": "number"
},
"stock_quantity": {
"type": "number"
}
},
"required": [
"item_code",
"item_name",
"description",
"price",
"stock_quantity"
]
} |
Create a form for tax master with fields like tax_code, tax_name, rate, description. | {
"title": "Tax Master",
"type": "object",
"properties": {
"tax_code": {
"type": "string"
},
"tax_name": {
"type": "string"
},
"rate": {
"type": "number"
},
"description": {
"type": "string"
}
},
"required": [
"tax_code",
"tax_name",
"rate",
"description"
]
} |
Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value. | {
"title": "Assets Master",
"type": "object",
"properties": {
"asset_code": {
"type": "string"
},
"asset_name": {
"type": "string"
},
"description": {
"type": "string"
},
"purchase_date": {
"type": "string",
"format": "date"
},
"value": {
"type": "number"
}
},
"required": [
"asset_code",
"asset_name",
"description",
"purchase_date",
"value"
]
} |
Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name. | {
"title": "Item Inward",
"type": "object",
"properties": {
"inward_number": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
},
"supplier_name": {
"type": "string"
}
},
"required": [
"inward_number",
"item_code",
"quantity",
"date",
"supplier_name"
]
} |
Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date. | {
"title": "Sale Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"customer_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date. | {
"title": "Purchase Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"supplier_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date. | {
"title": "Purchase",
"type": "object",
"properties": {
"purchase_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"purchase_number",
"supplier_name",
"item_code",
"quantity",
"price",
"date"
]
} |
Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary. | {
"title": "Employee Master",
"type": "object",
"properties": {
"employee_id": {
"type": "string"
},
"employee_name": {
"type": "string"
},
"designation": {
"type": "string"
},
"date_of_joining": {
"type": "string",
"format": "date"
},
"salary": {
"type": "number"
}
},
"required": [
"employee_id",
"employee_name",
"designation",
"date_of_joining",
"salary"
]
} |
Create a form for account group with fields like group_code, group_name, description. | {
"title": "Account Group",
"type": "object",
"properties": {
"group_code": {
"type": "string"
},
"group_name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"group_code",
"group_name",
"description"
]
} |
Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date. | {
"title": "Maintenance Check List",
"type": "object",
"properties": {
"checklist_id": {
"type": "string"
},
"checklist_name": {
"type": "string"
},
"description": {
"type": "string"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"checklist_id",
"checklist_name",
"description",
"date"
]
} |
Create a form for general ledger with fields like account_number, account_name, debit, credit, date. | {
"title": "General Ledger",
"type": "object",
"properties": {
"account_number": {
"type": "string"
},
"account_name": {
"type": "string"
},
"debit": {
"type": "number"
},
"credit": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"account_number",
"account_name",
"debit",
"credit",
"date"
]
} |
Create a form for sales invoice with fields like invoice_number, customer_name, item, quantity, price, date. | {
"title": "Sales Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"customer_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for purchase invoice with fields like invoice_number, supplier_name, item, quantity, price, date. | {
"title": "Purchase Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"supplier_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a form for item master with fields like item_code, item_name, description, price, stock_quantity. | {
"title": "Item Master",
"type": "object",
"properties": {
"item_code": {
"type": "string"
},
"item_name": {
"type": "string"
},
"description": {
"type": "string"
},
"price": {
"type": "number"
},
"stock_quantity": {
"type": "number"
}
},
"required": [
"item_code",
"item_name",
"description",
"price",
"stock_quantity"
]
} |
Create a form for tax master with fields like tax_code, tax_name, rate, description. | {
"title": "Tax Master",
"type": "object",
"properties": {
"tax_code": {
"type": "string"
},
"tax_name": {
"type": "string"
},
"rate": {
"type": "number"
},
"description": {
"type": "string"
}
},
"required": [
"tax_code",
"tax_name",
"rate",
"description"
]
} |
Create a form for assets master with fields like asset_code, asset_name, description, purchase_date, value. | {
"title": "Assets Master",
"type": "object",
"properties": {
"asset_code": {
"type": "string"
},
"asset_name": {
"type": "string"
},
"description": {
"type": "string"
},
"purchase_date": {
"type": "string",
"format": "date"
},
"value": {
"type": "number"
}
},
"required": [
"asset_code",
"asset_name",
"description",
"purchase_date",
"value"
]
} |
Create a form for item inward with fields like inward_number, item_code, quantity, date, supplier_name. | {
"title": "Item Inward",
"type": "object",
"properties": {
"inward_number": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
},
"supplier_name": {
"type": "string"
}
},
"required": [
"inward_number",
"item_code",
"quantity",
"date",
"supplier_name"
]
} |
Create a form for sale order with fields like order_number, customer_name, item_code, quantity, date. | {
"title": "Sale Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"customer_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase order with fields like order_number, supplier_name, item_code, quantity, date. | {
"title": "Purchase Order",
"type": "object",
"properties": {
"order_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"order_number",
"supplier_name",
"item_code",
"quantity",
"date"
]
} |
Create a form for purchase with fields like purchase_number, supplier_name, item_code, quantity, price, date. | {
"title": "Purchase",
"type": "object",
"properties": {
"purchase_number": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"item_code": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"purchase_number",
"supplier_name",
"item_code",
"quantity",
"price",
"date"
]
} |
Create a form for employee master with fields like employee_id, employee_name, designation, date_of_joining, salary. | {
"title": "Employee Master",
"type": "object",
"properties": {
"employee_id": {
"type": "string"
},
"employee_name": {
"type": "string"
},
"designation": {
"type": "string"
},
"date_of_joining": {
"type": "string",
"format": "date"
},
"salary": {
"type": "number"
}
},
"required": [
"employee_id",
"employee_name",
"designation",
"date_of_joining",
"salary"
]
} |
Create a form for account group with fields like group_code, group_name, description. | {
"title": "Account Group",
"type": "object",
"properties": {
"group_code": {
"type": "string"
},
"group_name": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"group_code",
"group_name",
"description"
]
} |
Create a form for maintenance check list with fields like checklist_id, checklist_name, description, date. | {
"title": "Maintenance Check List",
"type": "object",
"properties": {
"checklist_id": {
"type": "string"
},
"checklist_name": {
"type": "string"
},
"description": {
"type": "string"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"checklist_id",
"checklist_name",
"description",
"date"
]
} |
Create a JSON schema for a sales invoice with fields like invoice_number, customer_name, item, quantity, price, date. | {
"title": "Sales Invoice",
"type": "object",
"properties": {
"invoice_number": {
"type": "string"
},
"customer_name": {
"type": "string"
},
"item": {
"type": "string"
},
"quantity": {
"type": "number"
},
"price": {
"type": "number"
},
"date": {
"type": "string",
"format": "date"
}
},
"required": [
"invoice_number",
"customer_name",
"item",
"quantity",
"price",
"date"
]
} |
Create a JSON schema for a user registration form with fields like username, password, email, and birthdate. | {
"title": "User Registration",
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string"
},
"email": {
"type": "string",
"format": "email"
},
"birthdate": {
"type": "string",
"format": "date"
}
},
"required": [
"username",
"password",
"email",
"birthdate"
]
} |
Dataset Card for Dataset Name
This dataset card aims to be a base template for new datasets. It has been generated using this raw template.
Dataset Details
Dataset Description
- Curated by: [More Information Needed]
- Funded by [optional]: [More Information Needed]
- Shared by [optional]: [More Information Needed]
- Language(s) (NLP): [More Information Needed]
- License: [More Information Needed]
Dataset Sources [optional]
- Repository: [More Information Needed]
- Paper [optional]: [More Information Needed]
- Demo [optional]: [More Information Needed]
Uses
Direct Use
[More Information Needed]
Out-of-Scope Use
[More Information Needed]
Dataset Structure
[More Information Needed]
Dataset Creation
Curation Rationale
[More Information Needed]
Source Data
Data Collection and Processing
[More Information Needed]
Who are the source data producers?
[More Information Needed]
Annotations [optional]
Annotation process
[More Information Needed]
Who are the annotators?
[More Information Needed]
Personal and Sensitive Information
[More Information Needed]
Bias, Risks, and Limitations
[More Information Needed]
Recommendations
Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
Citation [optional]
BibTeX:
[More Information Needed]
APA:
[More Information Needed]
Glossary [optional]
[More Information Needed]
More Information [optional]
[More Information Needed]
Dataset Card Authors [optional]
[More Information Needed]
Dataset Card Contact
[More Information Needed]
- Downloads last month
- 31