可以引用JSON整数属性吗?

时间:2017-07-18 16:04:58

标签: json jsonschema

我有以下要验证的JSON模式和Python unittest。

{
    "properties": {

        "traffic_parameters" {

            "capacity": {

                "oneOf": [
                    {
                        "max_percentage": {

                            "type": "integer",
                            "minimum" : 1,
                            "maximum" : 150
                        },

                        "min_percentage": {

                            "type": "integer",
                            "minimum" : 1,
                            "maximum" : {

                                "$ref": "#/properties/traffic_parameters/capacity/oneOf/max_percentage/minimum"
                            }
                        }
                    },

                    {
                        "percentage_range": {

                            "type": "array",
                            "minItems": 1,
                            "maxItems": 10,
                            "items": {

                                "type": "integer"
                            }
                        }
                    }
                ]
            }
        }
    }
}

使用jsonschema我验证整个模式文件。 但是,在编写单元测试时,我得到以下错误;

capacity = {'oneOf': [{'max_percentage': {'type': 'integer', 'minimum': 1, 'maximum': 150}, 'min_percentage': {'type': 'integer', 'minimum': 1, 'maximum': {'$ref': '#/properties/traffic_parameters/capacity/oneOf/max_percentage/minimum'}}}, {'percentage_range': {'type': 'array', 'minItems': 1, 'maxItems': 10, 'items': {'type': 'integer'}}}]}
-----------------------------------------
index0 = {'max_percentage': {'type': 'integer', 'minimum': 1, 'maximum': 150}, 'min_percentage': {'type': 'integer', 'minimum': 1, 'maximum': {'$ref': '#/properties/traffic_parameters/capacity/oneOf/max_percentage/minimum'}}}
-----------------------------------------
min_percentage = {'type': 'integer', 'minimum': 1, 'maximum': {'$ref': '#/properties/traffic_parameters/capacity/oneOf/max_percentage/minimum'}}
E.........
======================================================================
ERROR: test_invalid_minimum__traffic_parameters__capacity__min_percentage (__main__.SchemaTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "test_test-variables_schema.py", line 160, in test_invalid_minimum__traffic_parameters__capacity__min_percentage
    validate(0, min_percentage)
  File "/local/tools/PACKAGES/python3/lib/python3.6/site-packages/jsonschema/validators.py", line 540, in validate
    cls.check_schema(schema)
  File "/local/tools/PACKAGES/python3/lib/python3.6/site-packages/jsonschema/validators.py", line 83, in check_schema
    raise SchemaError.create_from(error)
jsonschema.exceptions.SchemaError: {'$ref': '#/properties/traffic_parameters/capacity/oneOf/max_percentage/minimum'} is not of type 'number'

Failed validating 'type' in schema['properties']['maximum']:
    {'type': 'number'}

On instance['maximum']:
{'$ref': '#/properties/traffic_parameters/capacity/oneOf/max_percentage/minimum'}


    FAILED (errors=1)

我的测试是Python单元测试,用于测试属性的最小值和最大值。最大值是对上面直接定义的另一个属性的引用。

显示的测试测试最小值,但它是出错的最大值。如果我测试最大值,错误就会一样,这就是我正在做的工作。

我尝试为“最大”重新指定类型为“整数”,但错误仍然存​​在。

如何在不更改属性类型的情况下解决此错误?引用很重要,因为我希望此属性的最大值与前一个属性的最小值直接相关。

此外,还有另一种(更简单的)方法在单元测试中引用这些变量吗?

这是函数

def test_invalid_minimum__traffic_parameters__capacity__min_percentage(self):
    global test_schema

    capacity = test_schema["traffic_parameters"]["capacity"]
    print ("capacity = " + str(capacity))
    print ("-----------------------------------------")

    index0 = capacity["oneOf"][0]
    print ("index0 = " + str(index0))
    print ("-----------------------------------------")

    min_percentage = index0["min_percentage"]
    print ("min_percentage = " + str(min_percentage))

    with self.assertRaises(ValidationError ):
        validate(0, min_percentage)

感谢。

2 个答案:

答案 0 :(得分:1)

JSON参考规范对$ref'd的限制没有任何限制,但实际上,我见过的任何验证器都只支持$ref指向JSON模式的。我不确定为什么没有人支持这个功能,但我还没有看到一个案例,我认为做这样的事情是个好主意。

在最近发布的JSON Schema draft-06中,仅支持JSON Schema的常见做法成为规则。因此,即使您确实找到了支持$ref整数的验证器,我也不建议使用它,因为它将来会更难升级。

答案 1 :(得分:1)

这不会这样。 $ref引用必须始终指向模式。所以它可以是一个对象或一个布尔值,但不是一个数字。