对于这个问题jsonschema attribute conditionally required,我可以应用条件必需的属性。但是,它只能取决于同一对象级别的属性。在某些情况下,我想要一个属性取决于它的父对象属性,这可能吗?对于以下示例:
{
type: 'object',
properties: {
{
os: { type: 'string', enum: ['macOs', 'windows'] },
specs: {
macModel: {
type: 'string',
enum: ['macbook air', 'macbook pro', 'macbook']
},
memory: { type: 'number' }
}
}
}
}
是否可以满足此要求:仅当 / os 等于 macOs 时才需要 / spec / macModel ?
答案 0 :(得分:3)
是的,适用相同的方法。您只需要将模式嵌套得更深。
{
"type": "object",
"properties": {
"os": { "enum": ["macOs", "windows"] },
"specs": {
"macModel": { "enum": ["macbook air", "macbook pro", "macbook"] },
"memory": { "type": "number" }
}
},
"allOf": [{ "$ref": "#/definitions/os-macOs-requires-macModel" }],
"definitions": {
"os-macOs-requires-macModel": {
"anyOf": [
{ "not": { "$ref": "#/definitions/os-macOs" } },
{ "$ref": "#/definitions/requires-macModel" }
]
},
"os-macOs": {
"properties": {
"os": { "const": "macOs" }
},
"required": ["os"]
},
"requires-macModel": {
"properties": {
"specs": {
"required": ["macModel"]
}
}
}
}
}
请注意,在/definitions/requires-macModel
模式中,它必须挖掘“ specs”属性并将required
放置在此处,而不是像平常情况一样放在顶层。
在此示例中,我使用了隐含模式,但是如果您更喜欢if
-then
并可以访问-07草稿验证器,则可以采用相同的方法。