Define dynamic input fields for user-controlled automation with validation, structure, and reusability.
Field | Description | Type | Required? |
---|---|---|---|
post_topic | The main subject of the content | string | ✅ |
goal | Purpose of the post | select | ✅ |
audience_type | Who you’re targeting | select | ✅ |
tone | Desired tone (e.g., formal, fun) | select | ✅ |
string
, select
) for easy validation.
string
– Plain text input.number
– Numeric input.boolean
– True/False switches.select
– Dropdown menu with predefined values.object
– JSON-like structure for complex data (advanced).array
– Lists of items (coming soon).Field | Value |
---|---|
post_topic | “AI Tools for Founders” |
goal | “Engagement” |
audience_type | “Startup Founders” |
tone | “Professional” |
Field | Value |
---|---|
post_topic | “Productivity App for Teams” |
goal | “Lead Generation” |
audience_type | “Remote Managers” |
tone | “Energetic” |
/post_topic
, /goal
, etc.Use select for controlled vocabularies
(like tone or goal).