You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -668,20 +668,25 @@ You can also apply filters to check values. Filter can be applied with `:` char
668
668
Here is the list of possible filters:
669
669
670
670
*`integer:>{val}` - checks that integer is greater than {val} (works with float and string types too).
671
+
*`integer:>={val}` - checks that integer is greater or equal than {val} (works with float and string types too).
671
672
*`integer:<{val}` - checks that integer is lower than {val} (works with float and string types too).
673
+
*`integer:<={val}` - checks that integer is lower or equal than {val} (works with float and string types too).
672
674
*`string:url` - checks that value is valid url.
673
675
*`string:date` - checks that value is date in JavaScript format: https://weblog.west-wind.com/posts/2014/Jan/06/JavaScript-JSON-Date-Parsing-and-real-Dates
674
676
*`string:email` - checks that value is a valid email according to http://emailregex.com/
675
677
*`string:regex({val})` - checks that string matches a regex provided with {val}
0 commit comments