使用jsonschema验证密钥在对象数组中是否具有唯一值?

时间:2018-04-17 20:21:39

标签: json jsonschema

如何使用jsonschema验证JSON,在对象数组中,每个对象中的特定键必须是唯一的?例如,验证每个Name k-v对的唯一性应该失败:

"test_array": [
    {
        "Name": "name1",
        "Description": "unique_desc_1"
    },
    {
        "Name": "name1",
        "Description": "unique_desc_2"
    }
]

在test_array上使用uniqueItems因为唯一的Description键而无法正常工作。

1 个答案:

答案 0 :(得分:0)

我发现了使用允许任意属性的架构的另一种方法。唯一的警告是JSON允许重复的对象键,但是重复将覆盖其先前的实例。可以将具有“名称”键的对象数组转换为具有任意属性的对象:

例如,以下JSON:

"test_object": {
    "name1": {
        "Desc": "Description 1"
    },
    "name2": {
        "Desc": "Description 2"
    }
}

将具有以下架构:

{
    "type": "object",
    "properties": {
        "test_object": {
            "type": "object",
            "patternProperties": {
                "^.*$": {
                    "type": "object",
                    "properties": {
                        "Desc": {"type" : "string"}
                    },
                    "required": ["Desc"]
                }
            },
            "minProperties": 1,
            "additionalProperties": false
        }
    },
    "required": ["test_object"]
}