In draft IETF json schema 02, it specifies that one property can depend on another property.
For example:
{
"state":
{
"optional":true
},
"town":
{
"requires":"state",
"optional":true
}
}
Wonder if above scenario is supported. Thank you for your time.