json schema
Posted 坚守一辈子的幸福
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json schema相关的知识,希望对你有一定的参考价值。
一、简介
我们先看下面的json数据
{ "id": 1, "name": "g2",
"desc":"b2"
}
假设, 我们要求id为long型, id、name非空。desc可空。如何衡量json数据是有效的呢?现在流行的json schema 是用来校验json数据是否合法。
详情请移至 https://github.com/daveclayton/json-schema-validator
二、参考文献
http://json-schema.org/example1.html
以上是关于json schema的主要内容,如果未能解决你的问题,请参考以下文章