Date Validation
ColumnMatchDateFormat
Check if the values in a column match the date format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
column
|
str
|
Column to validate. |
required |
date_format
|
str
|
Date format to check. |
required |
threshold
|
float
|
Threshold for validation. Defaults to 0.0. |
required |
impact
|
Literal['low', 'medium', 'high']
|
Impact level of validation. Defaults to "low". |
required |
kwargs
|
KwargsType
|
KwargsType (dict): Additional keyword arguments. |
{}
|
Source code in validoopsie/validation_catalogue/DateValidation/column_match_date_format.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
DateToBeBetween
Check if the column date is between min-max range.
If the min_date
or max_date
is not provided then other will be used as the
threshold.
If neither min_date
nor max_date
is provided, then the validation will result
in failure.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
column
|
str
|
Column to validate. |
required |
min_date
|
int | None
|
Minimum date for a column entry length. |
None
|
max_date
|
int | None
|
Maximum date for a column entry length. |
None
|
threshold
|
float
|
Threshold for validation. Defaults to 0.0. |
required |
impact
|
Literal['low', 'medium', 'high']
|
Impact level of validation. Defaults to "low". |
required |
kwargs
|
KwargsType (dict): Additional keyword arguments. |
{}
|
Source code in validoopsie/validation_catalogue/DateValidation/date_to_be_between.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|