Could you give an examples of attribute values for:
• Enum - When there are only a small list of pre-defined values it could take
• Array of Strings - useful for things like "tags"
• Array of Numbers - useful anytime you have multiple numeric values
?
Is it something like
Copy code
["string1","string2","string3"] - array of string
[3, 43, 65] - array of numbers
?
clean-city-48510
07/11/2024, 8:32 PM
How to achieve a rule:
array of string
includes any of
and as a value I want to set few values and if any exist in this array then rule as TRUE
clean-city-48510
07/11/2024, 8:39 PM
Array of numbers should also have a possibility to use a rule like:
• includes less than
• includes greater than
• includes one of
• includes all of
clean-city-48510
07/11/2024, 8:40 PM
right now is easier to use just STRING type and regexp
f
fresh-football-47124
07/12/2024, 7:14 AM
ya, I think you might be better off string matching if you need that kind of flexibility