Pere Miquel Brull 34fbe5d64c
Docs - Prepare 1.7 docs and 1.8 snapshot (#20882)
* DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT

* DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT
2025-04-18 12:12:17 +05:30

5.1 KiB

title slug
testDefinition /main-concepts/metadata-standard/schemas/tests/testdefinition

TestDefinition

Test Definition is a type of test using which test cases are created to capture data quality tests against data entities.

Properties

Definitions

  • testPlatform (string): This schema defines the platform where tests are defined and ran. Must be one of: ["OpenMetadata", "GreatExpectations", "DBT", "Deequ", "Soda", "Other"].
  • testDataType (string): This enum defines the type of data stored in a column. Must be one of: ["NUMBER", "INT", "FLOAT", "DOUBLE", "DECIMAL", "TIMESTAMP", "TIME", "DATE", "DATETIME", "ARRAY", "MAP", "SET", "STRING", "BOOLEAN"].
  • entityType (string): This enum defines the type for which this test definition applies to. Must be one of: ["TABLE", "COLUMN"].
  • testCaseParameterDefinition (object): This schema defines the parameters that can be passed for a Test Case.
    • name (string): name of the parameter.
    • displayName (string): Display Name that identifies this parameter name.
    • dataType: Data type of the parameter (int, date etc.). Refer to #/definitions/testDataType.
    • description: Description of the parameter. Refer to ../type/basic.json#/definitions/markdown.
    • required (boolean): Is this parameter required. Default: false.
    • optionValues (array): List of values that can be passed for this parameter. Default: [].
    • validationRule (object): Validation for the test parameter value.
      • parameterField (string): Name of the parameter to validate against.
      • rule (string): This enum defines the type to use for a parameter validation rule. Must be one of: ["EQUALS", "NOT_EQUALS", "GREATER_THAN_OR_EQUALS", "LESS_THAN_OR_EQUALS"].
  • dataQualityDimensions (string): This enum defines the dimension a test case belongs to. Must be one of: ["Completeness", "Accuracy", "Consistency", "Validity", "Uniqueness", "Integrity", "SQL"].

Documentation file automatically generated at 2025-01-15 09:05:41.923720+00:00.