有时,我注意到以下 JSON 模式:
{
"type": "object",
"properties": {
"address": {
"type": "string",
"required": true
}
}
}
对比
{
"type": "object",
"properties": {
"address": {
"type": "string",
"optional": false
}
}
}
那么上面例子中的required
vs有什么区别呢?optional