JSON格式校驗

json-schemajson

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

以上規則能夠校驗如下的json數據ui

{
    "a":[
        {
            "b":9
        }
    ]
}
相關文章
相關標籤/搜索