jsonschema 验证使用 allof 和 complex if else

jsonschema validation using allof and complex if else

enter image description here我有一个如下所示的 json 模式,我想根据 B 和 C 的值将定义加载到 D 和 E 中,因为我已经编写了 allOf 条件。 我正在使用 json-schema-validator 在应用程序中进行 json 模式验证。

i) 下面的模式总是作为有效传递,因为 allOf 条件从未评估过,它不是 从定义中加载 maxLenth、multipleOf 等验证器属性。

ii) 我怀疑我在错误的地方(根模式或子模式)进行了调节,我试过了 将此 allof 逻辑移动到 subschema 级别(在 B、C 和 D、E 内)

iii) 我已经尝试执行 https://json-schema.org/understanding-json-schema/reference/conditionals.html it is also passing as valid. for this I did verified on a online josn schema validator http://json-schema-validator.herokuapp.com/ 中提到的 allOf 示例,它也使用相同的库 json-schema -验证器。

iv) JsonSchemaFactory 是否需要任何 ValidationConfiguration 来验证 Draft7 jsonSchema 条件,因为此 json-schema-validator[= 上的 Defaultlibrary 是 DRAFT-4 37=].

{
      "$schema": "http://json-schema.org/draft-07/schema#",
      "type": "object",
      "required": [
        "A",
        "B",
        "C",
        "D",
        "E"
      ],
      "properties": {
        "A": {
          "type": "string"
        },
        "B": {
          "type": "string",
          "enum": ["TEST1","TEST2"]
        },
        "C": {
          "type": "string",
          "enum": ["TEST3","TEST4"]
        },
        "D": {
          "type": "object"
        },
        "E": {
          "type": "object"
        }
      },
      "allOf": [
        {
          "if": {
            "properties": { "B": { "const": "TEST1" } }
          },
          "then": {
            "properties": { "D": {  "$ref": "#/definitions/test" } }
          }
        },
        {
          "if": {
            "properties": { "B": { "const": "TEST2" } }
          },
          "then": {
            "properties": { "D": {  "$ref": "#/definitions/testTwo" } }
          }
        },
        {
          "if": {
            "properties": { "C": { "const": "TEST3" } }
          },
          "then": {
            "properties": { "E": {  "$ref": "#/definitions/testThree" } }
          }
        },
        {
          "if": {
            "properties": { "C": { "const": "TEST4" } }
          },
          "then": {
            "properties": { "E": {  "$ref": "#/definitions/test4" } }
          }
        }
      ],

      "definitions": {
       "testOne":{"type":"object"},
       "testTwo":{"type":"object"},
       "testThree":{"type":"object"},
       "testFour":{"type":"object"}
        }
    }

javaCode 看起来像

@PostMapping("/sendMessage")
    public ProcessingReport sendMessage(@RequestBody SampleRequest request) throws IOException, ProcessingException {

        //step-1 writing request object into String
        String requestJson = objectMapper.writeValueAsString(request);

        //Step-2 getting jsonNode for requested json
        JsonNode dataNode = JsonLoader.fromString(requestJson);

        //step -3 creating jsonSchema factory(default)
        JsonSchemaFactory factory = JsonSchemaFactory.byDefault();
        //validating requested jsonNode(dataNode) against SchemaNode(schema of request json,which is loaded from resources)
        ProcessingReport report = factory.getJsonSchema(schemaNode).validate(dataNode);


        //Processing report resulting the given json validation is successful or not
        if(!report.isSuccess()) {
            System.out.println(report);
        }
        return report;
    }

json-schema-validator 仅支持 draft-03 和 draft-04。 if/then/const 是在后来的草稿中添加的。这些关键字将被忽略,从而导致您遇到无操作行为。

你有两个选择

  1. 选择一个不同的 implementation 支持 draft-07
  2. 改用。它有点冗长,但结果是一样的。