Search K
Appearance
Appearance
Task configuration fields support a variety of input components to match different data requirements. Below is a reference for each input type, its purpose, and basic usage.
Scope: Available in Text, Textarea, Dictionary keys & values, SearchCondition values, List items, EditablePicklist, AdvancedForm inputs, and DateTime Variable Mode.
Usage: Type { { to open the variable picker sourced from the JSON Viewer on the left.
Component: Single-line input.
Use Case: Enter simple strings or expressions (e.g., filenames, URLs).
Features:
Component: Boolean toggle.
Use Case: Enable/disable flags or binary options (e.g., true/false).
Features:
Component: Multi-line input.
Use Case: Enter longer text blocks, JSON snippets, or Markdown content.
Features:
Component: Dynamic list of key/value pairs.
Use Case: Capture objects or maps (e.g., HTTP headers, metadata fields).
Key Uniqueness: Each key must be unique; duplicate keys are not allowed.
Features:
options are provided.Component: Condition builder with rows for each predicate.
Use Case: Define filters or query conditions in workflows.
Features:
Component: File picker control.
Use Case: Upload files or select from storage locations.
Storage Behavior: Uploaded files are stored on the MinuteView server; original source no longer required. Files can be retrieved and used later in the workflow.
Features:
accept.Component: Dynamic list of single-line inputs.
Use Case: Collect arrays of values (e.g., tags, recipients).
Features:
Component: Static dropdown select.
Use Case: Choose one option from a predefined set.
Features:
options as <option> elements.-- Select -- default placeholder.Component: Custom picklist allowing free-text entries.
Use Case: Select from common options or enter custom values.
Features:
Component: Button to open an external code editor.
Use Case: Edit scripts or code snippets (e.g., PowerShell).
Features:
Component: Button to launch a modal with custom form layout for advanced configurations.
Use Case: Complex structured input requiring specialized controls, available only for nodes with very detailed configuration needs.
Features:
advancedForm metadata.The CronEditor component provides a visual interface for creating cron schedules (automated task timings) without needing to write complex cron expressions manually.
CronEditor gives you a user-friendly way to set up recurring schedules.
Instead of typing cryptic cron syntax like 0 9 * * 1-5, you can simply select options such as:
“Every weekday at 9:00 AM.”
This makes it easy to schedule workflows, automation triggers, or maintenance tasks in a clear and intuitive way.
When displayed, the CronEditor provides interactive controls that let you specify:
The editor instantly shows a preview of the underlying cron expression and the human-readable description of your schedule.
| Schedule Type | Configuration Example | Resulting Expression |
|---|---|---|
| Daily at 9 AM | Hour: 9, Minute: 0, Every day | 0 9 * * * |
| Every Monday at 8 AM | Day: Monday, Hour: 8, Minute: 0 | 0 8 * * 1 |
| Every 15 minutes | Interval mode, 15-minute frequency | */15 * * * * |
| First day of every month | Mode: Monthly, Day: 1 | 0 0 1 * * |
The component uses the react-js-cron library under the hood.
For reference and advanced understanding of cron expressions:
The library handles all the complexity of cron expressions, so you can focus on selecting when your task should run, not how to write the expression.
Component: Dual-mode date/time input.
Use Case: Capture timestamps either via picker or variable.
Features:
datetime-local input with toggle.Component: Grid-style icon selection control.
Use Case: Choose an icon class for UI elements.
Features:
Use this reference to match each input component to your task’s data requirements when configuring nodes.