JSON模式 - 如何创建依赖于枚举的字段?

时间:2017-03-29 05:13:55

标签: jsonschema json-schema-validator react-jsonschema-forms

我有一个JSON架构(v7.0),我需要确保完全列出的属性出现在最终的formData中。

对于大多数情况,这可以使用"additionalProperties": false"minProperties": X来解决,其中X表示对象中的#properties(this solution的恭维)

但是,在某些情况下,属性的数量是可变的。

以下示例中的情况是选择"手动更新" (枚举2)" sync"可以导致字段" manual_date"被添加。当"同步"设置为"手动更新"," manual_date"需要财产 - 但不应该要求它。

我尝试通过" required"依赖项下的语句,但我认为这是错误的,因为我在通过validator进行测试时会得到一些非常广泛的错误消息。

简而言之:我正在寻找在JSON模式中使用依赖于enum的字段的正确方法。

我的架构:

{
  "type": "object",
  "properties": {
    "rtc": {
      "title": "REAL-TIME-CLOCK (RTC)",
      "type": "object",
      "properties": {
        "sync": {
          "title": "Time synchronization method",
          "type": "integer",
          "default": 1,
          "anyOf": [
            {
              "type": "integer",
              "title": "Retain current time",
              "enum": [
                1
              ]
            },
            {
              "type": "integer",
              "title": "Manual update",
              "enum": [
                2
              ]
            },
            {
              "type": "integer",
              "title": "Automatic update (requires WiFi)",
              "enum": [
                3
              ]
            }
          ]
        },
        "timezone": {
          "title": "Time zone (UTC−12 to UTC+14)",
          "type": "number",
          "default": 0,
          "minimum": -12,
          "maximum": 14
        },
        "adjustment": {
          "title": "Adjustment (-129600 to 129600 seconds)",
          "type": "number",
          "default": 0,
          "minimum": -129600,
          "maximum": 129600
        }
      },
      "dependencies": {
        "sync": {
          "oneOf": [
            {
              "properties": {
                "sync": {
                  "enum": [
                    1
                  ]
                }
              }
            },
            {
              "properties": {
                "sync": {
                  "enum": [
                    2
                  ]
                },
                "manual_date": {
                  "title": "Time (UTC) ",
                  "type": "string",
                  "format": "date-time"
                }
              },
              "required": [
                "manual_date"
              ]
            },
            {
              "properties": {
                "sync": {
                  "enum": [
                    3
                  ]
                }
              }
            }
          ]
        }
      },
      "additionalProperties": false,
      "patternProperties": {
        "manual_date": {}
      },
      "minProperties": 3
    }
  }
}

1 个答案:

答案 0 :(得分:0)

更新:我没有找到直接的解决方案。但是,可以通过结合使用AdditionalProperties:false和minProperties:X来实现部分解决方案。这有助于确保正确数量的字段-仅包含正确的字段。