23

我的 JSON 字符串将被格式化为:

{
    "count":3,
    "data":[
        {
            "a":{"ax":1}
        },
        {
            "b":{"bx":2}
        },
        {
            "c":{"cx":4}
        }
    ]
}

data数组包含许多aandbc。并且没有其他种类的物体。

如果count==0data应该是一个空数组[]

我正在使用https://github.com/hoxworth/json-schema来验证 Ruby 中的此类 JSON 对象。

require 'rubygems'
require 'json-schema'

p JSON::Validator.fully_validate('schema.json',"test.json")

schema.json

{
  "type":"object",
  "$schema": "http://json-schema.org/draft-03/schema",
  "required":true,
  "properties":{
     "count": { "type":"number", "id": "count", "required":true },
     "data": { "type":"array", "id": "data", "required":true,
       "items":[
           { "type":"object", "required":false, "properties":{ "a": { "type":"object", "id": "a", "required":true, "properties":{ "ax": { "type":"number", "id": "ax", "required":true } } } } },
           { "type":"object",  "required":false, "properties":{ "b": { "type":"object", "id": "b", "required":true, "properties":{ "bx": { "type":"number", "id": "bx", "required":true } } } } },
           { "type":"object",  "required":false, "properties":{ "c": { "type":"object", "id": "c", "required":true, "properties":{ "cx": { "type":"number", "id": "cx", "required":true } } } } }
       ]
     }
  }
}

但这 fortest.json将通过验证,而我认为它应该失败:

{
  "count":3,
  "data":[
      {
          "a":{"ax":1}
      },
      {
          "b":{"bx":2}
      },
      {
          "c":{"cx":2}
      },
      {
          "c": {"z":"aa"}
      }
   ]
}

test.json将失败,而我认为它应该通过:

{
  "count":3,
  "data":[
      {
          "a":{"ax":1}
      },
      {
          "b":{"bx":2}
      }
   ]
}

似乎错误的模式正在验证data数组包含a,b,c一次。

正确的架构应该是什么?

4

1 回答 1

30

来自JSON 模式规范,第 5.5 节。项目:

当这个属性值是一个模式数组并且实例
值是一个数组时,实例数组中的每个位置必须符合
这个数组对应位置的模式。这
称为元组类型。

您的架构定义要求数组的前三个元素恰好是“a”、“b”和“c”元素。如果items留空,则允许任何数组元素。同样,如果additionalItems留空,则允许任何其他数组元素。

为了得到你想要的,你需要为 指定"additionalItems": falseitems,我认为以下(从你的定义中有所缩短)应该可以工作:

"items": {
  "type": [
     {"type":"object", "properties": {"a": {"type": "object", "properties": {"ax": { "type":"number"}}}}},
     {"type":"object", "properties": {"b": {"type": "object", "properties": {"bx": { "type":"number"}}}}},
     {"type":"object", "properties": {"c": {"type": "object", "properties": {"cx": { "type":"number"}}}}}
  ]
}
于 2012-05-30T08:03:58.117 回答