我一直在编写简单的JSON模式,但我遇到了一个更复杂的API输入调用。我有一个宁静的结束路线,可以采用3种非常不同类型的JSON:
本地主机/富
可以采取:
{“type”:“ice_cream”,“cone”:“waffle”......}
或
{“type”:“hot_dog”,“bun”:“wheat”......}
如果“type”键包含“ice_cream”,我只想看到键“cone”而不是键“bun”。同样,如果“type”包含“hot_dog”,我只想看“bun”而不是“cone”。我知道我可以模式匹配,以确保我只看到类型“ice_cream”或键入“hot_dog”,但我不知道如果该键设置为该值,如何强制某些其他字段的要求。我看到有一个名为“依赖”的json架构字段,但我没有找到关于如何使用它的任何好例子。
顺便说一句,我不确定这个输入JSON是否是一个好的形式(有效地重载了它所采用的JSON结构的类型),但我没有选择更改api。答案 0 :(得分:3)
我终于得到了一些关于此的信息 - 事实证明你可以组合几个有效的不同对象:
{
"description" : "Food",
"type" : [
{
"type" : "object",
"additionalProperties" : false,
"properties" : {
"type" : {
"type" : "string",
"required" : true,
"enum": [
"hot_dog"
]
},
"bun" : {
"type" : "string",
"required" : true
},
"ketchup" : {
"type" : "string",
"required" : true
}
}
},
{
"type" : "object",
"additionalProperties" : false,
"properties" : {
"type" : {
"type" : "string",
"required" : true,
"enum": [
"ice_cream"
]
},
"cone" : {
"type" : "string",
"required" : true
},
"chocolate_sauce" : {
"type" : "string",
"required" : true
}
}
}
]
}
我仍然不确定这是否是有效的JSON,因为我的Schemavalidator因某些无效输入而死,但它接受了有效的输入。