in src/main/java/com/epam/digital/data/platform/generator/constraints/impl/CustomTypeConstraintProvider.java [36:43]
public List<Constraint> getConstraintForProperty(Column column, String propertyClassName) {
var isPropertyOfCustomType = propertyClassName.startsWith(CUSTOM_TYPE_PREFIX);
if (isPropertyOfCustomType) {
return Collections.singletonList(VALID_CONSTRAINT);
} else {
return Collections.emptyList();
}
}