Skip to content

Is After

Dr Simon Estill edited this page Jul 6, 2020 · 1 revision

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"
}
Clone this wiki locally