Disallowing Undefined Properties
{
"primaryKey": "orderNumber",
"type": "object",
"properties": {
"orderNumber": {
"type": "number",
"minLength": 3
},
"customerName": {
"type": "string",
"minLength": 1
},
"beverage": {
"type": "string",
"enum": [
"coffee",
"tea",
"juice",
"soda"
]
},
"food": {
"type": "string",
"enum": [
"bagel",
"donut",
"pastry",
"muffin"
]
}
},
"required": [
"orderNumber",
"customerName"
],
"additionalProperties: false
}Last updated
Was this helpful?