Можно ли проверить нулевое значение в схеме, как [если свойство A равно нулю, тогда будет какое-то обязательное поле]
Например:
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "college.json#",
"title": "student",
"description": "syidentdetails",
"type": "object",
"properties": {
"colleges": {
"type": "array"
},
"school": {
"type": "array"
},
"if":{
"properties":{
"college":["type":null]
}
},"then":{["required":"school"]}
}