Disallowing Null Property Values
{
"primaryKey": "orderNumber",
"type": "object",
"properties": {
"orderNumber": {
"type": "number",
"minLength": 3
},
"customerName": {
"type": "string",
"minLength": 1
},
"orderNote": {
"type": [
"string",
"null"
]
}
},
"required": [
"orderNumber",
"customerName"
],
"additionalProperties: false
}Last updated
Was this helpful?