将anyOf重写为数组

时间:2019-04-24 08:12:22

标签: json jsonschema

我正在一个项目中,在该项目中,我向PostgreSQL发送一个JSON模式到插件,在我的模式中有anyOf的实例,但是我要使用的插件不支持此功能。有没有一种方法可以不用使用anyOf来重写它?

private_data

我已经尝试了以下方法

 "date": {
      "inclusion": "automatic",
      "anyOf": [
        {
          "type": [
            "string"
          ],
          "format": "date-time"
        },
        {
          "type": [
            "string"
          ]
        }
      ]
    }

这不是我所知道的,但我不知道如何在不使用日期时间格式的情况下添加字符串

出现以下错误

"date": {
     "inclusion": "automatic",
     "format": "date-time",
     "type": [
              "string"
             ]
         }

0 个答案:

没有答案