json.schema.tests.column.columnValuesSumToBeBetween.json Maven / Gradle / Ivy
The newest version!
{
"$id": "https://open-metadata.org/schema/tests/column/columnValuesSumToBeBetween.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "columnValuesSumToBeBetween",
"description": "This schema defines the test ColumnValuesSumToBeBetween. Test the sum of the values of a col is within a range.",
"type": "object",
"javaType": "org.openmetadata.catalog.tests.column.ColumnValuesSumToBeBetween",
"properties": {
"minValueForColSum": {
"description": "Expected sum of values in the column to be greater or equal than",
"type": "integer"
},
"maxValueForColSum": {
"description": "Expected sum values in the column to be lower or equal than",
"type": "integer"
}
},
"anyOf": [{ "required": ["minValueForColSum"] }, { "required": ["maxValueForColSum"] }],
"additionalProperties": false
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy