2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00
books/schemas/core/CustomForm.json
2023-07-31 12:38:32 +05:30

23 lines
422 B
JSON

{
"name": "CustomForm",
"label": "Custom Form",
"naming": "manual",
"fields": [
{
"fieldname": "name",
"fieldtype": "AutoComplete",
"label": "Form Type",
"options": [],
"required": true
},
{
"fieldname": "customFields",
"label": "Custom Fields",
"fieldtype": "Table",
"target": "CustomField",
"required": true,
"edit": true
}
]
}