Email Attribute

How to use in JSON metadata in form builder:
{
"id": "email",
"is_standard": true,
"editable": true,
"display_order": 2,
"label": "Email field",
"show_label": true,
"data_type": "String",
"input_type": "EMAIL",
"keyboard_type": "email-address",
"placeholder_text": "Placeholder",
"max_length": 1024,
"min_length": 2,
"initial_value": "",
"validation_rules": {}
}
Properties of date attribute:
| # | Attribute | Default | Description |
|---|---|---|---|
| 1 | id | Base attribute which specifies "text" input field. | |
| 2 | is_standard | true | No need to change (by default: TRUE) |
| 3 | editable | true | Allows user to edit the input field |
| 4 | display_order | 1 | Allows user to define the order of the fields |
| 5 | label | Email field | Used to specify the label of the field |
| 6 | show_label | String | When set to true it makes label Visible |
| 7 | input_type | Base attribute which specifies input types no need to change | |
| 8 | keyboard_type | email-address | It is used to specify the type of keyboard |
| 9 | placeholder_text | Placeholder | Placeholder temporarily takes the place of the final data |
| 10 | max_length | 1024 | Defines the max input length |
| 11 | min_length | 2 | Defines the min input length |
| 12 | initial_value | " " | It defines the initial value in the input field |