34

我有一个无序的 JSON 项目数组。根据规范https://datatracker.ietf.org/doc/html/draft-zyp-json-schema-03#section-5.5,下面的 json 模式将仅验证数组中的对象是否按该顺序出现。我不想指定顺序,只需验证数组中的对象,无论对象的顺序或数量如何。从规范来看,我似乎无法理解这是如何完成的。

"transactions" : {
    "type" : "array",
    "items" : [
        {
            "type" : "object",
            "properties" : {
                "type" : {
                    "type" : "string",
                    "enum" : ["BUILD", "REASSIGN"]
                }
            }
        },
        {
            "type" : "object",
            "properties" : {
                "type" : {
                    "type" : "string",
                    "enum" : ["BREAK"]
                }
            }
        }
    ]
}
4

5 回答 5

61

我在 JSON schema google group 上问了同样的问题,很快就得到了回答。用户 fge 要求我在此处发布他的回复:

你好,

当前的规范是草案 v4,而不是草案 v3。更具体地说,验证规范在这里:

https://datatracker.ietf.org/doc/html/draft-fge-json-schema-validation-00

该网站不是最新的,我不知道为什么...我将提交一个拉取请求。

使用草稿 v4,您可以使用:

{
    "type": "array",
    "items": {
        "oneOf": [
            {"first": [ "schema", "here" ] }, 
            {"other": [ "schema": "here" ] }
        ]
    }  
}

例如,这是一个数组的模式,其中项目可以是字符串或整数(尽管它可以用更简单的方式编写):

{
    "type": "array",
    "items": {
        "oneOf": [
            {"type": "string"},
            {"type": "integer"}
        ]
    }
}

这是正确的答案。我更正的架构现在包括:

"transactions" : {
    "type" : "array",
    "items" : {
        "oneOf" : [
            {
                "type" : "object",
                "properties" : {
                    "type" : {
                        "type" : "string",
                        "enum" : ["BUILD", "REASSIGN"]
                    }
                }
            },
            {
               "type" : "object",
               "properties" : {
                 "type" : {
                   "type" : "string",
                   "enum" : ["BREAK"]
                  }
               }
            }
        ]
    }
}
于 2013-03-28T02:38:29.903 回答
4

我也已经研究了很长时间。但一直未能找到可行的解决方案。如果您只有一个架构,例如,它可以正常工作。

"transactions" : {
          "type" : "array",
          "items" : 
          {
            "type" : "object",
            "properties" : {
              "type" : {
                "type" : "string",
                "enum" : ["BREAK"]
              },
          }
}

然后你只需跳过数组括号,并使用一个对象。但是,如果你想做你正在做的事情,似乎没有可靠的答案。这是迄今为止我发现的唯一东西:http: //the-long-dark-tech-time.blogspot.se/2012/12/using-json-schema-with-array-of-mixed.html

于 2013-03-27T21:24:15.387 回答
4

对于任何坚持草案 3 模式的人。有一个“Type”关键字相当于草案 4 中的“anyOf”:

所以你可以使用

{
    "fooBar" : {
        "type" : "array",
        "items" : {
            "type" : [{
                    "type" : "object",
                    "properties" : {
                        "foo" : {                           
                            "type" : "string"
                        }
                    }
                }, {
                    "type" : "object",
                    "properties" : {
                        "bar" : {
                            "type" : "string"
                        }
                    }
                }
            ]
        }
    }
}
于 2015-02-18T11:09:29.370 回答
3

作为对用户 Vdex 的回应:这不等效,您所写的意思是数组元素在数组中以这种特定顺序出现。

如果您使用此模式验证器,则需要正确实现。

使用此架构:

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "array",
  "items": [
    {
      "type": "boolean"
    },
    {
      "type": "number"
    },
    {
      "type": "string"
    }
  ]
}

此 JSON 将被验证:

[
  true,
  5,
  "a",
  "6",
  "a",
  5.2
]

但不是这个:

[
  5,
  true,
  "a",
  "6",
  "a",
  5.2
]

因此,目标与“oneOf”等关键字完全不同。

于 2018-01-18T13:42:06.123 回答
1

就我而言,我希望数组中的第一个元素具有特定格式,其余元素具有另一种格式。这是我的解决方案:

my_schema = {
    "type": "object",
    "properties": {
        "token": {"type": "string"},
        "service_id": {"type": "string"},
        "promo_code": {"type": "string"},
        "path": {
            "type": "array",
            "items": [
                {
                    "type": "object",
                    "properties": {
                        "address": {"type": "string"},
                        "lat": {"type": "number"},
                        "lng": {"type": "number"}
                    },
                    "required": ["address", "lat", "lng"]
                },
                {
                    "type": "object",
                    "properties": {
                        "address": {"type": "string"},
                        "lat": {"type": "number"},
                        "lng": {"type": "number"},
                        "district_id": {"type": "number"},
                        "ward_code": {"type": "number"},
                        "weight": {"type": "number"}
                    },
                    "required": ["address","lat", "lng","ward_code", 
                                 "district_id", "weight"]
                }
            ]
        }
    },
    "required": ["token", "service_id", "path"]
}

上面的模式意味着从路径的第二个元素开始,我需要 District_id、ward_code、权重

于 2019-12-03T08:12:41.187 回答