...
Field Config | Description | ||||
---|---|---|---|---|---|
Name | The identifier for the field within the schema. This is the name that will be used to reference the field in the data structure. | ||||
Type | It specifies the data type of the field.
| ||||
Required | It indicates whether the field is mandatory. | ||||
Minimum Length | It defines the minimum number of characters or elements that the field must contain. | ||||
Maximum Length | It defines the maximum number of characters or elements that the field must contain. | ||||
Pattern | It is a regular expression that the field’s value must match. This is typically used for validating formats like email addresses, phone numbers, etc. | ||||
Help Text | It provides additional information or guidance on what the field represents and how it should be used. This is often displayed in the UI to assist users. | ||||
Default Value | It is a predefined value that the field will take if no other value is provided. This helps in setting initial values. |
...