我想使用oneOf
模式,仅xyType
属性的值不同。我想有两个:一个将xyType
设置为"1"
,第二个将xyType
设置为其他值。可以使用json模式完成此操作吗?
"oneOf": [
{
"properties": {
"xyType": "enum": ["1"],
"whatever" : "string"
},
"type": "object"
},
{
"properties": {
"xyType": "enum": [], /// NOT "1"?
"whatever" : "string"
},
"type": "object"
}
]
最佳答案
有一个not
运算符和enum
关键字,您可以将它们一起使用,例如
{
"not": {
"enum": ["1"]
}
}