Could you give an examples of attribute values for...
# give-feedback
c
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
?
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
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
right now is easier to use just STRING type and regexp
f
ya, I think you might be better off string matching if you need that kind of flexibility