2
0
mirror of https://github.com/frappe/books.git synced 2024-12-23 03:19:01 +00:00
books/schemas/core/CustomForm.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
422 B
JSON
Raw Normal View History

{
"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
}
]
}