Link
A clickable hyperlink field for directing users to external pages or resources.
The Link field renders a clickable hyperlink on the form canvas. Use it to point users to terms of service, external resources, related pages, or any URL that provides additional context within your form.
Configuration
| Property | Type | Default | Description |
|---|---|---|---|
| label | string | -- | Label text displayed above the link |
| width | LayoutWidth | "full" | Horizontal space the field occupies |
| text | string | -- | The visible link text the user clicks |
| href | string | -- | Destination URL |
| newTab | boolean | -- | Whether the link opens in a new browser tab |
| underline | boolean | -- | Whether the link text is underlined |
| target | string | -- | Link target attribute (e.g. "_blank", "_self") |
Example Usage
A link to terms of service that opens in a new tab:
{
"type": "link",
"text": "Read our Terms of Service",
"href": "https://example.com/terms",
"newTab": true,
"underline": true
}