模式草案4中有哪些功能不在IETF生成的JSON模式草案3中?
答案 0 :(得分:28)
来自更改日志:
新关键字
移除:
功能改变:
之前
{
"type": [ "string", { "other": "schema" } ]
}
立即强>
{
"anyOf": [
{ "type": "string" },
{ "other": "schema" }
]
}
之前
{
"properties": {
"p": {
"type": "string",
"required": true
},
"q": {
"type": "string",
"required": true
}
}
}
立即强>
{
"properties": {
"p": { "type": "string" },
"q": { "type": "string" }
},
"required": [ "p", "q" ]
}
之前
{
"dependencies": { "a": "b" }
}
立即强>
{
"dependencies": { "a": [ "b" ] }
}
答案 1 :(得分:6)
如果您对深度潜水感兴趣,可以review a diff between the two drafts on the IETF site。
但是,如果您正在寻找更简单的更改摘要,Geraint Luff和Francis Galiegue在项目的github wiki上创建了一个changelog page,列出了更改,添加和删除。