Is After - smbc-digital/form-builder GitHub Wiki
This condition checks the date is after. So if the user enters a date after some dome date in the future it returns true, The Unit can be either day, month or year
Example
The below returns true if the date is after 43 days from today.
{
"conditionType": "IsAfter",
"questionID": "testDate",
"comparisonValue": 43,
"comparisonDate": "Today",
"unit": "day"
}
Legacy Syntax
{
"questionID": "testDate",
"isAfter": 43,
"comparisonDate": "Today",
"unit": "day"
}