Create a Rootr form
rootr_create_formCreate a fillable intake form in a Rootr workspace, optionally seeding fields and mirroring responses to a database.
Instructions
Create a new FORM node (fillable intake) in a Rootr (루터) workspace, optionally seeded with field definitions. Use FORM for surveys/request queues collected from people outside the tree — set targetDatabaseId to also mirror each response into a DATABASE's rows. Fields are typed inputs shown to respondents: text | textarea | number | select | multi_select | checkbox | date; select/multi_select need options ({name,color}[]). Read the form first (rootr_read_form) before updating so you keep each field's id stable — response values are keyed by field id, so renaming/dropping an id orphans past responses' answers for that field.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| icon | No | Emoji icon for the node | |
| name | No | Form name/title | |
| config | No | Free-form form config object (e.g. publicSubmit mode) | |
| fields | No | Initial field definitions; defaults to an empty form | |
| parentId | No | Parent folder/node id to create it under | |
| workspace | No | Workspace id; defaults to ROOTR_WORKSPACE/config if omitted | |
| targetDatabaseId | No | DATABASE node id whose rows should mirror this form's responses |