|
450 | 450 | "collect_metrics": { |
451 | 451 | "description": "Collects metrics for the specified column or table. The test will always pass." |
452 | 452 | }, |
| 453 | + "not_null_with_context": { |
| 454 | + "quality_dimension": "completeness", |
| 455 | + "failed_row_count_calc": "count(*)", |
| 456 | + "description": "Validates that there are no null values in a column, returning additional context columns alongside failing rows. If no context_columns are specified, all columns are returned.", |
| 457 | + }, |
| 458 | + "accepted_range_with_context": { |
| 459 | + "quality_dimension": "validity", |
| 460 | + "failed_row_count_calc": "count(*)", |
| 461 | + "description": "Validates that column values fall within an accepted range, returning additional context columns alongside failing rows. If no context_columns are specified, all columns are returned.", |
| 462 | + }, |
| 463 | + "expect_column_values_to_not_be_null_with_context": { |
| 464 | + "quality_dimension": "completeness", |
| 465 | + "failed_row_count_calc": "count(*)", |
| 466 | + "description": "Expects column values to not be null, returning additional context columns alongside failing rows. If no context_columns are specified, all columns are returned.", |
| 467 | + }, |
| 468 | + "expect_column_values_to_be_unique_with_context": { |
| 469 | + "quality_dimension": "uniqueness", |
| 470 | + "failed_row_count_calc": "count(*)", |
| 471 | + "description": "Expects column values to be unique, returning all duplicate rows with additional context columns. If no context_columns are specified, all columns are returned.", |
| 472 | + }, |
| 473 | + "expect_column_values_to_match_regex_with_context": { |
| 474 | + "quality_dimension": "validity", |
| 475 | + "failed_row_count_calc": "count(*)", |
| 476 | + "description": "Expects column values to match a given regular expression, returning additional context columns alongside failing rows. If no context_columns are specified, all columns are returned.", |
| 477 | + }, |
| 478 | + "relationships_with_context": { |
| 479 | + "quality_dimension": "consistency", |
| 480 | + "failed_row_count_calc": "count(*)", |
| 481 | + "description": "Validates referential integrity between a child and parent table, returning additional context columns alongside failing rows. If no context_columns are specified, all columns are returned.", |
| 482 | + }, |
453 | 483 | }, |
454 | 484 | } %} |
455 | 485 | {% do return(common_tests_configs_mapping) %} |
|
0 commit comments