Today, we can't use `allOf` for defining check constraints: ```json "properties": { "NAME": { "type": "string", "extendedType": "string", "maxLength": 100, "allOf": [ { "minLength": 3 } ], "minLength": "3", "description": "Product name (max length: 100)", "title": "Name" }, ``` It would be great if it was supported.