我想使用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"]
    }
}

10-08 06:23