📄️ Any Variables
The any variables value model describes a list that contains variables of any type. For example you can allow the user to select a string variable and a number variable and add to the list.
📄️ Boolean
The boolean value model defines a boolean value. The value can be either true or false.
📄️ Choice
The choice value model describes a choice. A user can select one of the choices. If you want to allow a user to not select any choice, then you need to add empty choice (''). The null value is not supported here.
📄️ Dynamic
The dynamic value model is used to create a property with a dynamic value. The dynamic value means here that a user can select a value from a list of choices. For example, a user can select a number value and set a value to the input or can choose a number variable from a list of variables.
📄️ Generated String
The generated string value model defines a string value that is generated during editing. The value is not editable by the user. The main use case is to generate a name for a step based on the other properties.
📄️ Nullable Any Variable
The nullable any variable value model describes a single variable that the user may pick from the list of variables. The variable can be of any type.
📄️ Nullable Variable Definition
The value model describes an optional definition of a variable.
📄️ Nullable Variable
The value model describes an optional variable. This is not a definition of a variable, but this is a choice of an existing variable. You can specify the type of the variable.
📄️ Number
The number value model describes a number value. The value is always number. If the value is empty then it's 0 or NaN.
📄️ String Dictionary
The string dictionary value model describes a dictionary of string values. The keys are always strings, never null or undefined.
📄️ String
The string value model describes a string value. The value is always a string, never null or undefined. So if the value is empty, then it's an empty string ('').
📄️ Variable Definitions
The value model describes a list of variable definitions. It is used to define the variables of a workflow.
📄️ Dependent
The dependent value model describes a dependent value. A dependent value is a value that depends on other values. The dependent value is calculated based on the specified formula.
📄️ External
The external value mode allows you to define a value that is created by the external editor not included in Sequential Workflow Editor.
📄️ Key Variable Dictionary
The key variable dictionary value model defines a key variable dictionary value. The main use case is to define a dictionary that maps a key to a variable.
📄️ Password
The password value model defines a password value. The value in the definition is encrypted. The editor uses the AES-GCM algorithm to encrypt the value. The encryption key is stored in the editor configuration. The main use case is to define a password.
📄️ Rich Variable Definitions
The rich variable definitions value model defines almost the same value as the variable definitions value model but allows add more information to the variable definition like "is required", description and default value.
📄️ Strings
The string value model defines a string collection value. The main use case is to define a list of strings.