JSON模式是否/然后需要嵌套对象

时间:2019-02-05 13:26:55

标签: json jsonschema json-schema-validator

我有一个JSON:

{
    "i0": {
        "j0": {
            "a0": true
        }
    },
    "i1": {
        "j1": {
            "a1": "stuff"
        }
    }
}

我要验证:  如果a0为真,则需要a1

我的模式当前为:

{
    "$schema": "http://json-schema.org/draft-07/schema",
    "id": "id",
    "type": "object",
    "required": [
        "i0",
        "i1"
    ],
    "allOf": [
        {
            "if": {
                "properties": {
                    "i0": {
                        "j0": {
                            "a0": true
                        }
                    }
                }
            },
            "then": {
                "properties": {
                    "i1": {
                        "j1": {
                            "required": [
                                "a1"
                            ]
                        }
                    }
                }
            }
        }
    ]
}

似乎没有实际运行此条件。另外,如果我尝试将required设置为与我要检查的值相同的级别,则可以看到有非常相似的条件可以工作。如:

"allOf": [
    {
        "if": {
            "a0": true
        },
        "then": {
            "required": [
                "a1"
            ]
        }
    }
]

,但这将要求a1j0一起位于a1之内。 如何根据j1下的值要求j0下的对象?

1 个答案:

答案 0 :(得分:2)

尝试一下:

{
  "if":{
    "type":"object",
    "properties":{
      "i0":{
        "type":"object",
        "properties":{
          "j0":{
            "type":"object",
            "required":["a0"]
          }
        },
        "required":["j0"]
      }
    },
    "required":["i0"]
  },
  "then":{
    "type":"object",
    "properties":{
      "i1":{
        "type":"object",
        "properties":{
          "j1":{
            "type":"object",
            "required":["a1"]
          }
        },
        "required":["j1"]
      }
    },
    "required":["i1"]
  }
}

您必须使用if / then关键字中的整体结构,从它们具有的通用根开始。在这种情况下,它们的路径开始在i0 / i1属性处发散,因此您必须从该点开始包括整个结构。

type关键字可确保您拥有一个对象,否则当使用其他类型(如stringboolean)时,架构可以通过验证。

required关键字可确保if / then子方案仅在实际上分别包含i0.j0.a0 / i1.j1.a1属性路径的对象上匹配。 / p>

另外,required /`a1属性的a0关键字仅指定它们存在。如果需要,可以向该子模式添加更多验证。