Json.NET supports the JSON Schema standard via the JsonSchema and JsonValidatingReader classes. It sits under the Newtonsoft.Json.Schema namespace. Json.NET通过JsonSchema和JsonValidatingReader类,支持JSON Schema标准.这两个类位于Newtonsoft.Json.Schema命名空间. JSON Sche…
JSON Schema 简介 JSON Schema is a vocabulary that allows you to annotate and validate JSON documents. JSON Schema官网 JSON Schema 是一个可以对json格式数据进行校验和进行内容描述的文档,它本身也是基于json格式的. 主要有以下作用: 对现有的json数据格式进行描述(字段类型.内容长度.是否必须存在.取值示例等): 是一个描述清晰.人机可读的文档: 自动测试.验证客户端提…