Add Enum
Adding a new Enum involves creating a new Enum type and defining its predefined values. This process helps standardize data entries by restricting them to a specific list of valid options.
Steps to Add an Enum
Navigate to the Enum Section
Click the Data icon in the Primary Left Panel to expand the menu.
Select Enums from the menu. The Secondary Left Panel will display the list of existing Enums.
Initiate the Creation Process
Click the + icon at the top of the Enums list in the Secondary Panel.
Enter Enum Details
A New Enum Drawer will open to enter the Enum details:
Name
This should be a unique identifier for the Enum.
Validation Rules:
The name must be unique.
The name length should be between 2 and 100 characters.
The name cannot be empty.
The name cannot include special characters.
The name cannot include spaces.
The name cannot start with a numeric character.
Description (optional)
Descriptions should be between 0 and 400 characters long, explaining the purpose of the Enum.
Validation Rules:
The description length should be between 0 and 400 characters.
Enum Values
These values should be at least 1 character long and must not include spaces. They represent the valid options for the Enum property.
Validation Rules:
Each value must be unique within the Enum.
Each value must be between 1 and 4000 characters long.
Values cannot be empty.
Values cannot include spaces.
Submit the Enum
Click the Submit button to create the Enum.
The new Enum will appear under the Enums list in the Secondary Left Panel.
Last updated