Date Max¶
Check: date-max-check
Purpose: Validates that values in date columns do not exceed a defined maximum date. A row fails if any selected column contains a date after max_value.
Use the inclusive parameter to control boundary behavior:
inclusive: false(default) —value < max_valueinclusive: true—value <= max_value
Typical Use Cases¶
- Ensure that event or transaction dates do not lie in the future.
- Enforce a cutoff date for a reporting period or fiscal year end.
- Detect future-dated records caused by data entry errors or timezone misconfiguration.