create_form
Create custom form templates for structured data entry in research workflows, defining reusable templates with configurable fields for experiments, protocols, and reports.
Instructions
Creates a new custom form template for structured data entry
Usage: Define reusable templates for experiments, protocols, reports Fields structure: [ { "name": "Field Name", "type": "String|Text|Number|Radio|Date|Choice", "mandatory": True/False, "defaultValue": "optional default" } ] Returns: Created form information (form will be in NEW state)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | ||
name | Yes | ||
tags | No |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"default": null,
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Fields",
"type": "array"
},
"name": {
"title": "Name",
"type": "string"
},
"tags": {
"default": null,
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}