json.schema.tests.column.columnValuesLengthsToBeBetween.json Maven / Gradle / Ivy
The newest version!
{
"$id": "https://open-metadata.org/schema/tests/column/columnValueLengthsToBeBetween.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "columnValueLengthsToBeBetween",
"description": "This schema defines the test ColumnValueLengthsToBeBetween. Test the value lengths in a column to be between minimum and maximum value. ",
"type": "object",
"javaType": "org.openmetadata.catalog.tests.column.ColumnValueLengthsToBeBetween",
"properties": {
"minLength": {
"description": "The {minLength} for the column length. If minLength is not included, maxLength is treated as upperBound and there will be no minimum number of rows",
"type": "integer"
},
"maxLength": {
"description": "The {maxLength} for the column length. if maxLength is not included, minLength is treated as lowerBound and there will eb no maximum number of rows",
"type": "integer"
}
},
"anyOf": [
{
"required": ["minLength"]
},
{
"required": ["maxLength"]
}
],
"additionalProperties": false
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy