## Properties

`name` string required

Input field identifier (the template's `payloadStructureId`, lowercased).

`type` string required

Field type (e.g. `string`, `url`, `email`, `number`, `boolean`, `promptField`, `stepDownSearch`).

`required` boolean required

Whether this field must be configured before the action can run.

`description` string

Human-readable description of what this field accepts.

## Example

ActionInput example COPY

```
{
  "name": "linkedin_url",
  "type": "url",
  "required": false,
  "description": "LinkedIn profile URL of the person"
}
```
