JSON Schema验证:验证对象数组

时间:2015-08-02 09:42:04

标签: php json validation schema jsonschema

我得到了JSON并希望验证它。

[
    {
        "remindAt": "2015-08-23T18:53:00+02:00",
        "comment": "Postman Comment"
    },
    {
        "remindAt": "2015-08-24T18:53:00+02:00",
        "comment": "Postman Comment"
    }
]

我的架构目前看起来如下

{
    "type": "array",
    "required": true,
    "properties": {
        "type": "object",
        "required": false,
        "additionalProperties": false,
        "properties": {
            "remindAt": {
                "required": true,
                "type": "string",
                "format": "date-time"
            },
            "comment": {
                "required": true,
                "type": "string"
            }
        }
    }
}

这不起作用。即使我从JSON ddata中删除注释,它也会验证为true。我猜我的架构文件的结构是错误的。

为验证我使用以下库 https://packagist.org/packages/justinrainbow/json-schema

可以请有人向我解释我做错了什么以及如何正确验证给定的JSON数据?

提前致谢

1 个答案:

答案 0 :(得分:4)

架构中存在一些错误。首先,您正在使用属性作为数组对象。 properties 是对象的子句,而不是数组,因此将被忽略。

json-schema v4开始,必需是一个数组。

以下架构将需要数组中所有项目的remindAt和comment属性:

{
    "type": "array",
    "items": {
        "additionalProperties": false,
        "properties": {
            "remindAt": {
                "type": "string",
                "format": "date-time"
            },
            "comment": {
                "type": "string"
            }
        },
        "required": ["remindAt", "comment"]
    }
}