如何在JSON模式验证器中使用if else条件

时间:2019-07-03 13:01:34

标签: node.js json jsonschema

我想使用JSON模式验证程序进行验证,同时使用如下代码获取错误gCode未定义

我尝试过以下代码

properties: {
        oemId: {
          'type': ['integer'],
          'minLength': 1,
          'required': true
        },
        gCode:{
          'type': ['string'],
          'minLength': 1
        },
        problemCategoryId: {
          'type': ['integer'],
          'minLength': 1
        }
      },
      if :{
        properties:{
          oemId: 1
        }
      },
      then:{
        required:[gCode]
      },
      else:{
        required: [problemCategoryId]
      }

我希望当oemId = 1时需要gCode = true,否则issueCategoryId必须为true

1 个答案:

答案 0 :(得分:1)

有问题的JSON模式的if-then-else语句不正确。这是正确的:

{
  "type": "object",
  "properties": {
        oemId: {
          'type': ['integer'],
          'minLength': 1,
          'required': true
        },
        gCode:{
          'type': ['string'],
          'minLength': 1
        },
        problemCategoryId: {
          'type': ['integer'],
          'minLength': 1
        }
  },
  "if": {
    "properties": {
      "oemId": { "const": 1 }
    },
    "required": ["oemId"]
  },
  "then": { "required": ["gCode"] },
  "else": { "required": ["problemCategoryId"] }
}

请注意,此if-then-else语法只是添加到draft-07中的JSON模式中,此处是json-schema.org中的文档:https://json-schema.org/understanding-json-schema/reference/conditionals.html