是否可以jsonschema
只拥有两个字段之一。
例如,如果我想同时拥有JSON
以太start_dt
或end_dt
但不能同时拥有两者的图像。像这样:
好的
{
"name": "foo",
"start_dt": "2012-10-10"
}
好的
{
"name": "foo",
"end_dt": "2012-10-10"
}
不好
{
"name": "foo",
"start_dt": "2012-10-10"
"end_dt": "2013-11-11"
}
我应该在架构中添加什么:
{
"title": "Request Schema",
"type": "object",
"properties": {
"name":
{
"type": "string"
},
"start_dt":
{
"type": "string",
"format": "date"
},
"end_dt":
{
"type": "string",
"format": "date"
}
}
}