Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from this space and version 7.4.0

...

The following constraint types are currently available:


TypeDescriptionAdditional

Enumeration

Create a list of selectable child enum types for the user to select fromitems

Children typeValid child enum types are: =, !=, ﹥, ﹤, ﹥=, ﹤=, regex, allow, oneof, allof, ip, ipv4, ipv6, email, url, hostname, fqdn, mac, phone, lenmax, lenmin, section_entry

Section EntryA section entry typeCreates an enumeration based on all entries that belong to a given section.
Equals toChecks to ensure a value is exactly equal to a provided valuee.g. (X == Y) is true
Not Equal toChecks to ensure a value is not equal to a provided value, e.g. (X != Y) is true
Greater ThanVerifies whether Checks if the input is greater value (left operand) is greater than a provided valuegiven value (right operand). e.g. (X ﹥ Y) is true
Less ThanVerifies whether Checks if the input value (left operand) is less than a provided valuegiven value (right operand). e.g. (X ﹤ Y) is true
Greater Than or Equal toVerifies whether Checks if the input value (left operand) is greater than or equal equals to a provided valuegiven value (right operand). e.g. (X ﹥= Y) is true
Less Than or Equal toVerifies whether Checks if the input value (left operand) is less than or equal equals to a provided valuegiven value (right operand). e.g. (X ﹤= Y) is true
One ofChecks whether the input is one of a provided Create a list of values or additional constraint typeschild constraint items. It will be true if one of child constraints is true. Its children must be previously configured.
All ofChecks whether the input contains all of a provided Create a list of values or additional constraint typeschild constraint items. It will be true if all of the child constraints are true. Its children must be previously configured.
Length MaxChecks to ensure a string has, at most, the specified number of characters
Length MinChecks to ensure a string has, at minimum, the specified number of characters
Regular ExpressionCompares the input format to a provided Regular Expression
IPv4Sets the required format for the input to an IPv4 address
IPv6Sets the required format for the input to an IPv6 address
EmailSets the required format for the input to an email address (uses an "@" symbol)
HostnameSets the required format for the input to a hostname. Hostnames may not have underscore or dash characters.
FQDNSets the required format for the input to a FQDN

MAC Address

Sets the required format for the input to a MAC address
URLSets the required format for the input to a url
Phone NumberSets the required format for the input to a phone number

...