Skip to main content

text

A rich-text textarea input. Use it for longer content like descriptions, paragraphs, or HTML-formatted text.

When to use

Use text for multi-line or rich content. For short single-line values use string instead.

Properties

PropertyTypeRequiredDescription
type"text"YesField type identifier
labelstringYesLabel shown in the builder
defaultstringNoDefault value (empty string if omitted)

Usage

{
"body": {
"type": "text",
"label": "Description",
"default": ""
}
}

Interactive Preview

Interactive Preview
Live Output
{
  "body": "This is a longer description text..."
}