乐趣区

JSON格式校验

json-schema

{
    "$schema":"http://json-schema.org/draft-04/schema",
    "type":"object",
    "properties":{
        "a":{
            "type":"array",
            "items":{
                "type":"object",
                "properties":{
                    "b":{"type":"integer"}
                }
            }
        }
    },
    "required":["a"]
}

以上规则可以校验以下的 json 数据

{
    "a":[
        {"b":9}
    ]
}
退出移动版