ときどき、次の JSON スキーマに気付きました。
{
"type": "object",
"properties": {
"address": {
"type": "string",
"required": true
}
}
}
対
{
"type": "object",
"properties": {
"address": {
"type": "string",
"optional": false
}
}
}
では、上記の例のrequired
vsの違いは何ですか?optional