Today, we can't use allOf for defining check constraints:
"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.
Today, we can't use
allOffor defining check constraints:It would be great if it was supported.