我有一个包含对象数组的 JSON 模式。我希望这些对象中的一个字段依赖于数组外部的属性。
我创建了以下架构:
{
type: "object",
properties: {
showNotes: {
title: "Add notes field",
type: "boolean",
},
choices: {
type: "array",
title: "Choices",
items: {
type: "object",
properties: {
itemName: {
type: "string",
title: "Item"
},
isRequired: {
type: "boolean",
title: "Required?",
default: false
},
note: {}
}
},
default: [
{
content: "Thing 1",
correct: false
}
]
}
},
dependencies: {
showNotes: {
oneOf: [
{
properties: {
showNotes: {
enum: [
false
]
}
}
},
{
properties: {
showNotes: {
enum: [
true
]
},
note: {
title: "Note",
type: "string"
}
}
}
]
}
}
}
我希望新字段note
会更新 at 的那个items/note
,但它没有,而是note
在底部生成了一个新字段。这可以在这里看到:
https://codepen.io/samfentr/pen/ZEQpeyg
我认为该解决方案与添加$ref
参考有关,但我无法解决。