InputField
Definition of a single input field in an app's input schema. Each field maps to a column in the underlying workflow's input action.
Properties
referencestringSnake_case identifier for this input field (derived from `name`) — use it as the key in `input_data` when running the app
namestringHuman-readable field name displayed in the app UI
descriptionstringHelp text describing what value to provide for this field
typestringField type: text, number, email, url, etc.
requiredbooleanWhether this field must be provided when running the app
defaultValueDefault value used when the field is not provided
Example
InputField example
{
"reference": "linkedin_url",
"name": "LinkedIn URL",
"description": "Full LinkedIn company profile URL",
"type": "text",
"required": true,
"defaultValue": null
}