Text & Number
#
Text
Stores text values.
Common use-cases: names, emails, descriptions, or single-line strings.
Add Field → Select Text Input
#
Number
Stores numeric values, supporting both integers and decimals.
Common use-cases: prices, quantities, percentages, durations, or scores. Supports integers and decimals.
Add Field → Select Number
// Example JSON
{
"key": "order_id",
"label": "Order ID",
"placeholder": "DJ8765",
"type": "string",
"required": true
}Common properties - key, label, placeholder, help, defaultValue, visibilityCondition and required. Read
#
Additional Properties
list — Converts the field into a list, allowing users to enter multiple values. The values are stored as an array.
Example:
Email 1 Email 2 Email 3limit — Sets the maximum number of values that can be entered.
Was this helpful?