JSON Schema 介绍
如何描述 JSON ?
{
"name": "George Washington",
"birthday": "February 22, 1732",
"address": "Mount Vernon, Virginia, United States"
}
object
;name
、birthday
、address
这三个字段name
、address
的字段值是一个字符串 String
,birthday
的值是一个日期。 {
"type": "object",
"properties": {
"name": { "type": "string" },
"birthday": { "type": "string", "format": "date" },
"address": { "type": "string" }
}
}
{
"type": "object",
"properties": {
"first_name": { "type": "string" },
"last_name": { "type": "string" },
"birthday": { "type": "string", "format": "date-time" },
"address": {
"type": "object",
"properties": {
"street_address": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"country": { "type" : "string" }
}
}
}
}
JSON Schema 示例
1. 空 schema
{}
2. type 指定 JSON 数据类型
3. type 可以包含多个类型
4. string 限定长度
5. string 模式匹配
6. string 值的枚举
7. integer
8. multipleOf 数字倍数
9. number 限定范围
exclusiveMaximum
为 true
表示不包含边界值 maximum
,类似的还有 exclusiveMinimum
字段.10. object 不允许有额外的字段
direction
,而 schema 规定了不允许额外的字段 "additionalProperties": false
11. object 允许有额外的字段,并限定类型
12. object 必填字段
13. object 指定属性个数
14. Dependencies 依赖
15. Object 属性的模式匹配
16. array 数组
17. array 指定数组成员类型
18. array 指定数组成员类型,逐个指定
19. array 指定数组成员类型,逐个指定,严格限定
20. array 数组长度限制
21. array element uniqueness 数组元素的唯一性
22. boolean
23. null
24. schema 的合并
25. allOf、oneOf
26. oneOf
27. not
修改于 2025-01-07 08:56:35