Timestamp Min¶
Check: timestamp-min-check
Purpose: Validates that values in timestamp columns are not earlier than a defined minimum. A row fails if any selected column contains a timestamp 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 log timestamps are not older than the defined operational start time.
- Validate that data collection began after a system go-live or migration cutover point.
- Reject historically stale records outside the defined processing window.