Date Min¶
Check: date-min-check
Purpose: Validates that values in date columns are not earlier than a defined minimum date. A row fails if any selected column contains a date before min_value.
Use the inclusive parameter to control boundary behavior:
inclusive: false(default) —value > min_valueinclusive: true—value >= min_value
Typical Use Cases¶
- Ensure that event or transaction dates are not earlier than the defined operational start date.
- Reject legacy or historically stale records outside the valid business period.
- Validate that data entries are aligned with a system go-live or migration cutover date.