📄️ Fields
Each field in the manifest is represented as an object under data → fields. The object's name corresponds to the name of the input field, and ideally, the field object's name is used. However, in some cases, it may need to be overridden using the inputName property within the object.
📄️ Validation Inputs
validators is an array of objects, each representing a specific validation rule. These rules are processed sequentially, and any false value will break the chain.
📄️ Hooks
Hooks can be run before handling the form (pre hooks) or after handling the form (post hooks).
📄️ Sample Manifest Structure
Below is a sample manifest structure that demonstrates how to define form fields, set up pre and post hooks, and configure validation rules within Tilda. This example provides a comprehensive template for managing form data efficiently.