I have a form, and on the form it requires a date. The date must be on YYYY-MM-DD format and be on or after 2022-04-01. I am using XFDL and XForms. The only ref I can find in the source code for date is,
<xforms:bind nodeset="instance('INSTANCE')/CertificatonDt" constraint=".='' or substring(., 1, 4) = '2020'" required="true()">
Do I just change the 2020 to 2022?